Searched refs:zTemp (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | shell.c | 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() [all …]
|
| H A D | sqlite3.c | 36243 char zTemp[22]; in sqlite3Int64ToText() local 36249 i = sizeof(zTemp)-2; in sqlite3Int64ToText() 36250 zTemp[sizeof(zTemp)-1] = 0; in sqlite3Int64ToText() 36252 zTemp[i] = (x%10) + '0'; in sqlite3Int64ToText() 36257 if( v<0 ) zTemp[--i] = '-'; in sqlite3Int64ToText() 36258 memcpy(zOut, &zTemp[i], sizeof(zTemp)-i); in sqlite3Int64ToText() 36259 return sizeof(zTemp)-1-i; in sqlite3Int64ToText() 49289 char *zTemp = NULL; in winGetLastErrorMsg() local 49296 (LPSTR) &zTemp, in winGetLastErrorMsg() 49302 zOut = winMbcsToUtf8(zTemp, osAreFileApisANSI()); in winGetLastErrorMsg() [all …]
|