Lines Matching refs:zTemp
24589 char *zTemp; in newTempFile() local
24592 zTemp = getenv("TEMP"); in newTempFile()
24593 if( zTemp==0 ) zTemp = getenv("TMP"); in newTempFile()
24594 if( zTemp==0 ){ in newTempFile()
24596 zTemp = "\\tmp"; in newTempFile()
24598 zTemp = "/tmp"; in newTempFile()
24601 p->zTempFile = sqlite3_mprintf("%s/temp%llx.%s", zTemp, r, zSuffix); in newTempFile()
25510 char zTemp[50]; in arCreateOrUpdateCommand() local
25516 zTemp[0] = 0; in arCreateOrUpdateCommand()
25522 sqlite3_snprintf(sizeof(zTemp),zTemp,"zip%016llx",r); in arCreateOrUpdateCommand()
25523 zTab = zTemp; in arCreateOrUpdateCommand()
25566 zSql = sqlite3_mprintf("DROP TABLE %s", zTemp); in arCreateOrUpdateCommand()