Lines Matching refs:zTemp
27296 char *zTemp; in newTempFile() local
27299 zTemp = getenv("TEMP"); in newTempFile()
27300 if( zTemp==0 ) zTemp = getenv("TMP"); in newTempFile()
27301 if( zTemp==0 ){ in newTempFile()
27303 zTemp = "\\tmp"; in newTempFile()
27305 zTemp = "/tmp"; in newTempFile()
27308 p->zTempFile = sqlite3_mprintf("%s/temp%llx.%s", zTemp, r, zSuffix); in newTempFile()
28222 char zTemp[50]; in arCreateOrUpdateCommand() local
28228 zTemp[0] = 0; in arCreateOrUpdateCommand()
28234 sqlite3_snprintf(sizeof(zTemp),zTemp,"zip%016llx",r); in arCreateOrUpdateCommand()
28235 zTab = zTemp; in arCreateOrUpdateCommand()
28278 zSql = sqlite3_mprintf("DROP TABLE %s", zTemp); in arCreateOrUpdateCommand()