HomeSort by relevance Sort by last modified time
    Searched refs:sqlite3_malloc (Results 26 - 50 of 58) sorted by null

12 3

  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_aux.c 62 char **pzErr /* OUT: sqlite3_malloc'd error message */
91 p = (Fts3auxTable *)sqlite3_malloc(nByte);
195 pCsr = (Fts3auxCursor *)sqlite3_malloc(sizeof(Fts3auxCursor));
fts3_porter.c 69 t = (porter_tokenizer *) sqlite3_malloc(sizeof(*t));
99 c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
fts3_expr.c 110 ** Allocate nByte bytes of memory using sqlite3_malloc(). If successful,
115 void *pRet = sqlite3_malloc(nByte);
790 ** sqlite3_malloc(). It is the responsibility of the caller to use
896 azCol = (char **)sqlite3_malloc(nCol*sizeof(char *));
fts3_hash.c 39 void *p = sqlite3_malloc(n);
fts3_snippet.c 479 sIter.aPhrase = (SnippetPhrase *)sqlite3_malloc(nByte);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/icu/
icu.c 348 zOutput = sqlite3_malloc(nOutput);
  /external/chromium_org/third_party/sqlite/src/src/
test_superlock.c 193 pLock = sqlite3_malloc(sizeof(Superlock));
pcache1.c 385 apNew = (PgHdr1 **)sqlite3_malloc(sizeof(PgHdr1 *)*nNew);
574 pCache = (PCache1 *)sqlite3_malloc(sz);
os.c 237 void *p = sqlite3_malloc(10);
test_demovfs.c 98 ** buffer of SQLITE_DEMOVFS_BUFFERSZ using sqlite3_malloc() whenever a
423 aBuf = (char *)sqlite3_malloc(SQLITE_DEMOVFS_BUFFERSZ);
os_unix.c 769 pNew = sqlite3_malloc( sizeof(*pNew) + (n+1) );
    [all...]
test_quota.c 326 pFile = sqlite3_malloc( sizeof(*pFile) + nName + 1 );
686 pGroup = sqlite3_malloc( sizeof(*pGroup) + nPattern + 1 );
863 p = (TclQuotaCallback *)sqlite3_malloc(sizeof(TclQuotaCallback));
test_multiplex.c 327 pGroup = sqlite3_malloc( sz );
910 gMultiplex.zName = sqlite3_malloc(pOrigVfs->mxPathname);
    [all...]
test_vfstrace.c 500 sqlite3_io_methods *pNew = sqlite3_malloc( sizeof(*pNew) );
731 pNew = sqlite3_malloc( nByte );
backup.c 167 p = (sqlite3_backup *)sqlite3_malloc(sizeof(sqlite3_backup));
malloc.c 293 ** Allocate memory. This routine is like sqlite3_malloc() except that it
305 ** this amount. The only way to reach the limit is with sqlite3_malloc() */
323 void *sqlite3_malloc(int n){ function
443 ** sqlite3Malloc() or sqlite3_malloc().
753 ** returning control to the user) that has called sqlite3_malloc or
mem3.c 525 return sqlite3_malloc(nBytes);
sqlite3ext.h 304 #define sqlite3_malloc sqlite3_api->malloc macro
test_onefile.c 26 ** from sqlite3_malloc(). Any attempt to create a temporary database file
620 pReal = (fs_real_file *)sqlite3_malloc(sizeof(*pReal)+pParent->szOsFile);
os_os2.c 24 ** the SQLite-wrappers sqlite3_malloc()/sqlite3_free(). Those wrappers
899 pLink = sqlite3_malloc( sizeof(*pLink) );
913 pNode = sqlite3_malloc( sizeof(*pNode) + cbShmName );
    [all...]
os_win.c 23 ** the SQLite-wrappers sqlite3_malloc()/sqlite3_free(). Those wrappers
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.c 39 void *p = sqlite3_malloc(n);
fts2.c 509 pBuffer->pData = nCapacity==0 ? NULL : sqlite3_malloc(nCapacity);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 451 ** This space is sqlite3_malloc()d along with the AsyncWrite structure in a
509 ** sqlite3OsOpen() using sqlite3_malloc(). The reason for this is that the
530 ** to an AsyncWrite structure allocated using sqlite3_malloc(). The writer
598 p = sqlite3_malloc(sizeof(AsyncWrite) + (zByte?nByte:0));
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
threadtest3.c 456 pErr->zErr = (char *)sqlite3_malloc(512);
573 pRet = sqlite3_malloc(sizeof(Statement));
738 p = (Thread *)sqlite3_malloc(sizeof(Thread));
    [all...]

Completed in 865 milliseconds

12 3