Searched refs:sqlite3_malloc (Results 26 - 50 of 66) sorted by relevance

123

/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_aux.c62 char **pzErr /* OUT: sqlite3_malloc'd error message */
91 p = (Fts3auxTable *)sqlite3_malloc(nByte);
195 pCsr = (Fts3auxCursor *)sqlite3_malloc(sizeof(Fts3auxCursor));
H A Dfts3_porter.c69 t = (porter_tokenizer *) sqlite3_malloc(sizeof(*t));
99 c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
H A Dfts3_expr.c110 ** 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 *));
H A Dfts3_hash.c39 void *p = sqlite3_malloc(n);
H A Dfts3_snippet.c479 sIter.aPhrase = (SnippetPhrase *)sqlite3_malloc(nByte);
1050 aIter = sqlite3_malloc(sizeof(LcsIterator) * pCsr->nPhrase);
1278 pCsr->aMatchinfo = (u32 *)sqlite3_malloc(sizeof(u32)*nMatchinfo + nArg + 1);
1475 sCtx.aTerm = (TermOffset *)sqlite3_malloc(sizeof(TermOffset)*nToken);
/external/chromium_org/third_party/sqlite/src/ext/icu/
H A Dicu.c348 zOutput = sqlite3_malloc(nOutput);
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_superlock.c193 pLock = sqlite3_malloc(sizeof(Superlock));
H A Dpcache1.c385 apNew = (PgHdr1 **)sqlite3_malloc(sizeof(PgHdr1 *)*nNew);
574 pCache = (PCache1 *)sqlite3_malloc(sz);
H A Dos.c237 void *p = sqlite3_malloc(10);
H A Dtest_demovfs.c98 ** buffer of SQLITE_DEMOVFS_BUFFERSZ using sqlite3_malloc() whenever a
423 aBuf = (char *)sqlite3_malloc(SQLITE_DEMOVFS_BUFFERSZ);
H A Dos_unix.c769 pNew = sqlite3_malloc( sizeof(*pNew) + (n+1) );
1166 pInode = sqlite3_malloc( sizeof(*pInode) );
3762 p = sqlite3_malloc( sizeof(*p) );
3791 pShmNode = sqlite3_malloc( sizeof(*pShmNode) + nShmFilename );
3966 pMem = sqlite3_malloc(szRegion);
4579 pNew->lockingContext = pCtx = sqlite3_malloc( sizeof(*pCtx) );
4608 zLockFile = (char *)sqlite3_malloc(nFilename);
4893 unusedFd = sqlite3_malloc(sizeof(*unusedFd));
5740 ** sqlite3_malloc) and open the file named "path" in the file descriptor.
5768 pUnused = sqlite3_malloc(sizeo
[all...]
H A Dtest_quota.c326 pFile = sqlite3_malloc( sizeof(*pFile) + nName + 1 );
686 pGroup = sqlite3_malloc( sizeof(*pGroup) + nPattern + 1 );
863 p = (TclQuotaCallback *)sqlite3_malloc(sizeof(TclQuotaCallback));
H A Dtest_multiplex.c327 pGroup = sqlite3_malloc( sz );
910 gMultiplex.zName = sqlite3_malloc(pOrigVfs->mxPathname);
H A Dtest_vfstrace.c500 sqlite3_io_methods *pNew = sqlite3_malloc( sizeof(*pNew) );
731 pNew = sqlite3_malloc( nByte );
H A Dbackup.c167 p = (sqlite3_backup *)sqlite3_malloc(sizeof(sqlite3_backup));
H A Dmalloc.c293 ** 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
H A Dmem3.c525 return sqlite3_malloc(nBytes);
H A Dsqlite3ext.h304 #define sqlite3_malloc sqlite3_api->malloc macro
H A Dtest_onefile.c26 ** from sqlite3_malloc(). Any attempt to create a temporary database file
620 pReal = (fs_real_file *)sqlite3_malloc(sizeof(*pReal)+pParent->szOsFile);
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_hash.c39 void *p = sqlite3_malloc(n);
H A Dfts2.c509 pBuffer->pData = nCapacity==0 ? NULL : sqlite3_malloc(nCapacity);
1161 DLCollector *pCollector = sqlite3_malloc(sizeof(DLCollector));
1792 char *str = sqlite3_malloc(n + 1);
1825 r = result = sqlite3_malloc(len);
2256 values = (const char **) sqlite3_malloc(v->nColumn * sizeof(const char *));
2681 Token *aToken = sqlite3_malloc( strlen(z) * sizeof(aToken[0]) );
2697 azToken = (char**)sqlite3_malloc( nToken*sizeof(char*) + totalSize );
2883 azArg = sqlite3_malloc( sizeof(char*)*argc + n );
2928 pSpec->azContentColumn = sqlite3_malloc( pSpec->nColumn * sizeof(char *) );
2997 v = (fulltext_vtab *) sqlite3_malloc(sizeo
[all...]
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c451 ** 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));
1057 z = sqlite3_malloc(nByte);
1097 pLock = (AsyncLock *)sqlite3_malloc(nByte);
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest3.c456 pErr->zErr = (char *)sqlite3_malloc(512);
573 pRet = sqlite3_malloc(sizeof(Statement));
738 p = (Thread *)sqlite3_malloc(sizeof(Thread));
/external/sqlite/dist/orig/
H A Dsqlite3ext.h342 #define sqlite3_malloc sqlite3_api->malloc macro
/external/sqlite/dist/
H A Dsqlite3ext.h342 #define sqlite3_malloc sqlite3_api->malloc macro

Completed in 381 milliseconds

123