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/
Dsqlite3.c33789 char *zTemp = NULL;
33796 (LPSTR) &zTemp,
33802 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
33805 osLocalFree(zTemp);
37158 LPWSTR zTemp;
37166 zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) );
37167 if( zTemp==0 ){
37171 nByte = osGetFullPathNameW((LPCWSTR)zConverted, nByte, zTemp, 0);
37174 sqlite3_free(zTemp);
37179 zOut = winUnicodeToUtf8(zTemp);
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c33769 char *zTemp = NULL;
33776 (LPSTR) &zTemp,
33782 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
33785 osLocalFree(zTemp);
37138 LPWSTR zTemp;
37146 zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) );
37147 if( zTemp==0 ){
37151 nByte = osGetFullPathNameW((LPCWSTR)zConverted, nByte, zTemp, 0);
37154 sqlite3_free(zTemp);
37159 zOut = winUnicodeToUtf8(zTemp);
[all …]
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c33129 char *zTemp = NULL;
33134 (LPSTR) &zTemp,
33139 zOut = sqlite3_win32_mbcs_to_utf8(zTemp);
33141 LocalFree(zTemp);
33543 WCHAR *zTemp;
33545 zTemp = malloc( nByte*sizeof(zTemp[0]) );
33546 if( zTemp==0 ){
33550 GetFullPathNameW((WCHAR*)zConverted, nByte, zTemp, 0);
33552 zOut = unicodeToUtf8(zTemp);
33553 free(zTemp);
[all …]