Lines Matching refs:zTemp
13949 char *zTemp; in newTempFile() local
13952 zTemp = getenv("TEMP"); in newTempFile()
13953 if( zTemp==0 ) zTemp = getenv("TMP"); in newTempFile()
13954 if( zTemp==0 ){ in newTempFile()
13956 zTemp = "\\tmp"; in newTempFile()
13958 zTemp = "/tmp"; in newTempFile()
13961 p->zTempFile = sqlite3_mprintf("%s/temp%llx.%s", zTemp, r, zSuffix); in newTempFile()
14832 char zTemp[50]; in arCreateOrUpdateCommand() local
14838 zTemp[0] = 0; in arCreateOrUpdateCommand()
14844 sqlite3_snprintf(sizeof(zTemp),zTemp,"zip%016llx",r); in arCreateOrUpdateCommand()
14845 zTab = zTemp; in arCreateOrUpdateCommand()
14888 zSql = sqlite3_mprintf("DROP TABLE %s", zTemp); in arCreateOrUpdateCommand()