Lines Matching refs:zTemp
16815 char *zTemp; in newTempFile() local
16818 zTemp = getenv("TEMP"); in newTempFile()
16819 if( zTemp==0 ) zTemp = getenv("TMP"); in newTempFile()
16820 if( zTemp==0 ){ in newTempFile()
16822 zTemp = "\\tmp"; in newTempFile()
16824 zTemp = "/tmp"; in newTempFile()
16827 p->zTempFile = sqlite3_mprintf("%s/temp%llx.%s", zTemp, r, zSuffix); in newTempFile()
17751 char zTemp[50]; in arCreateOrUpdateCommand() local
17757 zTemp[0] = 0; in arCreateOrUpdateCommand()
17763 sqlite3_snprintf(sizeof(zTemp),zTemp,"zip%016llx",r); in arCreateOrUpdateCommand()
17764 zTab = zTemp; in arCreateOrUpdateCommand()
17807 zSql = sqlite3_mprintf("DROP TABLE %s", zTemp); in arCreateOrUpdateCommand()