Home
last modified time | relevance | path

Searched refs:zTemp (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c24589 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()
[all …]
H A Dsqlite3.c35655 char zTemp[22]; in sqlite3Int64ToText() local
35661 i = sizeof(zTemp)-2; in sqlite3Int64ToText()
35662 zTemp[sizeof(zTemp)-1] = 0; in sqlite3Int64ToText()
35664 zTemp[i] = (x%10) + '0'; in sqlite3Int64ToText()
35669 if( v<0 ) zTemp[--i] = '-'; in sqlite3Int64ToText()
35670 memcpy(zOut, &zTemp[i], sizeof(zTemp)-i); in sqlite3Int64ToText()
35671 return sizeof(zTemp)-1-i; in sqlite3Int64ToText()
48689 char *zTemp = NULL;
48696 (LPSTR) &zTemp,
48702 zOut = winMbcsToUtf8(zTemp, osAreFileApisANSI());
[all …]