Lines Matching refs:zTemp
23325 char *zTemp; in newTempFile() local
23328 zTemp = getenv("TEMP"); in newTempFile()
23329 if( zTemp==0 ) zTemp = getenv("TMP"); in newTempFile()
23330 if( zTemp==0 ){ in newTempFile()
23332 zTemp = "\\tmp"; in newTempFile()
23334 zTemp = "/tmp"; in newTempFile()
23337 p->zTempFile = sqlite3_mprintf("%s/temp%llx.%s", zTemp, r, zSuffix); in newTempFile()
24246 char zTemp[50]; in arCreateOrUpdateCommand() local
24252 zTemp[0] = 0; in arCreateOrUpdateCommand()
24258 sqlite3_snprintf(sizeof(zTemp),zTemp,"zip%016llx",r); in arCreateOrUpdateCommand()
24259 zTab = zTemp; in arCreateOrUpdateCommand()
24302 zSql = sqlite3_mprintf("DROP TABLE %s", zTemp); in arCreateOrUpdateCommand()