HomeSort by relevance Sort by last modified time
    Searched refs:sqlite3_malloc (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/third_party/sqlite/src/src/
test_hexio.c 116 zBuf = sqlite3_malloc( amt*2+1 );
167 aOut = sqlite3_malloc( nIn/2 );
212 aOut = sqlite3_malloc( nIn/2 );
308 z = sqlite3_malloc( n+3 );
test_intarray.c 88 intarray_vtab *pVtab = sqlite3_malloc(sizeof(intarray_vtab));
105 pCur = sqlite3_malloc(sizeof(intarray_cursor));
228 *ppReturn = p = sqlite3_malloc( sizeof(*p) );
343 a = sqlite3_malloc( sizeof(a[0])*n );
table.c 93 z = sqlite3_malloc( n );
139 res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc );
test_func.c 23 ** Allocate nByte bytes of space using sqlite3_malloc(). If the
28 char *z = sqlite3_malloc(nByte);
246 pCounter = sqlite3_malloc( sizeof(*pCounter) );
361 zOut = sqlite3_malloc( n/2 );
388 zOut = sqlite3_malloc( n/2 );
415 zOut = sqlite3_malloc( n/2 );
loadext.c 204 sqlite3_malloc,
424 *pzErrMsg = zErrmsg = sqlite3_malloc(nMsg);
437 *pzErrMsg = zErrmsg = sqlite3_malloc(nMsg);
test9.c 80 p = sqlite3_malloc(5);
82 zErrFunction = "sqlite3_malloc";
test_stat.c 150 pTab = (StatTable *)sqlite3_malloc(sizeof(StatTable));
203 pCsr = (StatCursor *)sqlite3_malloc(sizeof(StatCursor));
309 p->aCell = sqlite3_malloc((p->nCell+1) * sizeof(StatCell));
340 pCell->aOvfl = sqlite3_malloc(sizeof(u32)*nOvfl);
bitvec.c 343 pV = sqlite3_malloc( (sz+7)/8 + 1 );
344 pTmpSpace = sqlite3_malloc(BITVEC_SZ);
test_rtree.c 74 pCircle = (Circle *)(p->pUser = sqlite3_malloc(sizeof(Circle)));
204 pCube = (Cube *)sqlite3_malloc(sizeof(Cube));
test_schema.c 91 schema_vtab *pVtab = sqlite3_malloc(sizeof(schema_vtab));
109 pCur = sqlite3_malloc(sizeof(schema_cursor));
test_wholenumber.c 49 pNew = *ppVtab = sqlite3_malloc( sizeof(*pNew) );
70 pCur = sqlite3_malloc( sizeof(*pCur) );
memjournal.c 140 FileChunk *pNew = sqlite3_malloc(sizeof(FileChunk));
test5.c 165 z = sqlite3_malloc(len);
test_fuzzer.c 201 pNew = sqlite3_malloc( sizeof(*pNew) + n );
266 pCur = sqlite3_malloc( sizeof(*pCur) );
577 pNew = sqlite3_malloc( sizeof(*pNew) + strlen(zWord) + 1 );
842 pRule = sqlite3_malloc( sizeof(*pRule) + nFrom + nTo );
recover.c 475 zNew = sqlite3_malloc(n+1);
668 sqlite3_malloc(sizeof(RecoverInteriorCursor));
912 pOverflow = sqlite3_malloc(sizeof(RecoverOverflow));
    [all...]
test_pcache.c 57 testpcacheGlobal.pDummy = sqlite3_malloc(10);
140 p = sqlite3_malloc( nMem );
test_journal.c 365 aData = sqlite3_malloc(pMain->nPagesize);
367 pMain->aCksum = sqlite3_malloc(sizeof(u32) * (pMain->nPage + 1));
439 aPage = sqlite3_malloc(pMain->nPagesize);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_icu.c 65 p = (IcuTokenizer *)sqlite3_malloc(sizeof(IcuTokenizer)+n);
119 pCsr = (IcuCursor *)sqlite3_malloc(
fts2_tokenizer1.c 67 t = (simple_tokenizer *) sqlite3_malloc(sizeof(*t));
121 c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
fts2_porter.c 68 t = (porter_tokenizer *) sqlite3_malloc(sizeof(*t));
96 c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_icu.c 65 p = (IcuTokenizer *)sqlite3_malloc(sizeof(IcuTokenizer)+n);
119 pCsr = (IcuCursor *)sqlite3_malloc(
fts3_tokenizer1.c 68 t = (simple_tokenizer *) sqlite3_malloc(sizeof(*t));
123 c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c));
fts3.c 705 ** The pointer returned points to memory obtained from sqlite3_malloc(). It
713 zRet = sqlite3_malloc(nRet);
743 ** The pointer returned points to a buffer allocated by sqlite3_malloc(). It
782 ** The pointer returned points to a buffer allocated by sqlite3_malloc(). It
856 aCol = (const char **)sqlite3_malloc(sizeof(const char *) * (argc-2) );
939 p = (Fts3Table*)sqlite3_malloc(nByte);
    [all...]
fts3_write.c 427 p = sqlite3_malloc(sizeof(*p) + 100);
833 ** NULL, then a buffer is allocated using sqlite3_malloc() and populated
879 char *aByte = sqlite3_malloc(nByte + FTS3_NODE_PADDING);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 448 pNode = (RtreeNode *)sqlite3_malloc(sizeof(RtreeNode) + pRtree->iNodeSize);
493 pNode = (RtreeNode *)sqlite3_malloc(sizeof(RtreeNode)+pRtree->iNodeSize);
806 pCsr = (RtreeCursor *)sqlite3_malloc(sizeof(RtreeCursor));
    [all...]

Completed in 198 milliseconds

1 2 3