Searched defs:zBuffer (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_icu.c46 char *zBuffer; member in struct:IcuCursor
168 sqlite3_free(pCsr->zBuffer);
214 char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte);
218 pCsr->zBuffer = zNew;
223 pCsr->zBuffer, pCsr->nBuffer, &nByte, /* Output vars */
229 *ppToken = pCsr->zBuffer;
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_icu.c46 char *zBuffer; member in struct:IcuCursor
168 sqlite3_free(pCsr->zBuffer);
214 char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte);
218 pCsr->zBuffer = zNew;
223 pCsr->zBuffer, pCsr->nBuffer, &nByte, /* Output vars */
229 *ppToken = pCsr->zBuffer;
H A Dfts3.c1195 char *zBuffer = 0; /* Buffer to load terms into */ local
1225 /* Load the next term on the node into zBuffer. Use realloc() to expand
1226 ** the size of zBuffer if required. */
1246 zNew = (char *)sqlite3_realloc(zBuffer, nAlloc);
1251 zBuffer = zNew;
1253 memcpy(&zBuffer[nPrefix], zCsr, nSuffix);
1266 cmp = memcmp(zTerm, zBuffer, (nBuffer>nTerm ? nTerm : nBuffer));
1284 sqlite3_free(zBuffer);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c114245 char *zBuffer = 0; /* Buffer to load terms into */ local
128040 char *zBuffer; member in struct:IcuCursor
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c128570 char *zBuffer = 0; /* Buffer to load terms into */ local
148663 char *zBuffer; member in struct:IcuCursor
[all...]
/external/sqlite/dist/
H A Dsqlite3.c128590 char *zBuffer = 0; /* Buffer to load terms into */ local
148695 char *zBuffer; member in struct:IcuCursor
[all...]

Completed in 571 milliseconds