Home
last modified time | relevance | path

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

/external/chromium_org/third_party/sqlite/src/ext/fts3/
Dfts3_expr.c224 char *zTemp = 0; in getNextString() local
238 zTemp = fts3ReallocOrFree(zTemp, nTemp + nToken); in getNextString()
239 if( !p || !zTemp ){ in getNextString()
250 memcpy(&zTemp[nTemp], zToken, nToken); in getNextString()
274 if( zTemp ){ in getNextString()
276 memcpy(zNew, zTemp, nTemp); in getNextString()
285 sqlite3_free(zTemp); in getNextString()
298 sqlite3_free(zTemp); in getNextString()
/external/chromium_org/third_party/sqlite/src/src/
Dos_win.c2010 char *zTemp = NULL; in getLastErrorMsg() local
2015 (LPSTR) &zTemp, in getLastErrorMsg()
2020 zOut = sqlite3_win32_mbcs_to_utf8(zTemp); in getLastErrorMsg()
2022 LocalFree(zTemp); in getLastErrorMsg()
2424 WCHAR *zTemp; in winFullPathname() local
2426 zTemp = malloc( nByte*sizeof(zTemp[0]) ); in winFullPathname()
2427 if( zTemp==0 ){ in winFullPathname()
2431 GetFullPathNameW((WCHAR*)zConverted, nByte, zTemp, 0); in winFullPathname()
2433 zOut = unicodeToUtf8(zTemp); in winFullPathname()
2434 free(zTemp); in winFullPathname()
[all …]
Dvdbeaux.c852 static char *displayP4(Op *pOp, char *zTemp, int nTemp){ in displayP4() argument
853 char *zP4 = zTemp; in displayP4()
860 sqlite3_snprintf(nTemp, zTemp, "keyinfo(%d", pKeyInfo->nField); in displayP4()
861 i = sqlite3Strlen30(zTemp); in displayP4()
867 memcpy(&zTemp[i],",...",4); in displayP4()
870 zTemp[i++] = ','; in displayP4()
872 zTemp[i++] = '-'; in displayP4()
874 memcpy(&zTemp[i], pColl->zName,n+1); in displayP4()
877 memcpy(&zTemp[i],",nil",4); in displayP4()
881 zTemp[i++] = ')'; in displayP4()
[all …]
Dtest8.c731 char *zTemp = zIn; in string_concat() local
733 sqlite3_free(zTemp); in string_concat()
/external/sqlite/dist/orig/
Dsqlite3.c33204 char *zTemp = NULL;
33211 (LPSTR) &zTemp,
33217 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
33220 osLocalFree(zTemp);
35520 LPWSTR zTemp;
35522 zTemp = sqlite3_malloc( nByte*sizeof(zTemp[0]) );
35523 if( zTemp==0 ){
35527 osGetFullPathNameW((LPCWSTR)zConverted, nByte, zTemp, 0);
35529 zOut = unicodeToUtf8(zTemp);
35530 sqlite3_free(zTemp);
[all …]
/external/sqlite/dist/
Dsqlite3.c33232 char *zTemp = NULL;
33239 (LPSTR) &zTemp,
33245 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
33248 osLocalFree(zTemp);
35548 LPWSTR zTemp;
35550 zTemp = sqlite3_malloc( nByte*sizeof(zTemp[0]) );
35551 if( zTemp==0 ){
35555 osGetFullPathNameW((LPCWSTR)zConverted, nByte, zTemp, 0);
35557 zOut = unicodeToUtf8(zTemp);
35558 sqlite3_free(zTemp);
[all …]
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c33144 char *zTemp = NULL;
33149 (LPSTR) &zTemp,
33154 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
33156 LocalFree(zTemp);
33558 WCHAR *zTemp;
33560 zTemp = malloc( nByte*sizeof(zTemp[0]) );
33561 if( zTemp==0 ){
33565 GetFullPathNameW((WCHAR*)zConverted, nByte, zTemp, 0);
33567 zOut = unicodeToUtf8(zTemp);
33568 free(zTemp);
[all …]