Searched refs:xMalloc (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dft_hash.h37 void *(*xMalloc)(int); /* malloc() function to use */ member in struct:Hash
H A Dfts1_hash.h37 void *(*xMalloc)(int); /* malloc() function to use */ member in struct:fts1Hash
H A Dft_hash.c54 pNew->xMalloc = malloc_and_zero;
237 new_ht = (struct _ht *)pH->xMalloc( new_size*sizeof(struct _ht) );
373 new_elem = (HashElem*)pH->xMalloc( sizeof(HashElem) );
376 new_elem->pKey = pH->xMalloc( nKey );
H A Dfts1_hash.c61 pNew->xMalloc = malloc_and_zero;
195 new_ht = (struct _fts1ht *)pH->xMalloc( new_size*sizeof(struct _fts1ht) );
336 new_elem = (fts1HashElem*)pH->xMalloc( sizeof(fts1HashElem) );
339 new_elem->pKey = pH->xMalloc( nKey );
/external/chromium_org/third_party/sqlite/src/src/
H A Dmalloc.c157 if( sqlite3GlobalConfig.m.xMalloc==0 ){
276 p = sqlite3GlobalConfig.m.xMalloc(nFull);
280 p = sqlite3GlobalConfig.m.xMalloc(nFull);
303 ** xMalloc(). Hence we limit the maximum size to 0x7fffff00, giving
312 p = sqlite3GlobalConfig.m.xMalloc(n);
369 p = sqlite3GlobalConfig.m.xMalloc(n);
H A Dmem2.c382 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
401 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
423 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
H A Dtest_init.c61 static void *wrMemMalloc(int n) {return wrapped.mem.xMalloc(n);}
H A Dtest_malloc.c71 ** A version of sqlite3_mem_methods.xMalloc() that includes fault simulation
77 p = memfault.m.xMalloc(n);
186 faultsimMalloc, /* xMalloc */
206 assert(memfault.m.xMalloc);
215 assert(memfault.m.xMalloc);
H A Dsqlite.h.in1166 ** The xMalloc and xFree methods must work like the
1178 ** previously obtained from xMalloc or xRealloc. The allocated size
1212 void *(*xMalloc)(int); /* Memory allocation function */
H A Dmain.c333 if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault();
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h1171 ** The xMalloc and xFree methods must work like the
1183 ** previously obtained from xMalloc or xRealloc. The allocated size
1217 void *(*xMalloc)(int); /* Memory allocation function */ member in struct:sqlite3_mem_methods
H A Dsqlite3.c1714 ** The xMalloc and xFree methods must work like the
1726 ** previously obtained from xMalloc or xRealloc. The allocated size
1760 void *(*xMalloc)(int); /* Memory allocation function */ member in struct:sqlite3_mem_methods
14292 ** malloc failures (when the xMalloc() or xRealloc() method of the
14495 ** Report the allocated size of a prior return from xMalloc()
14512 ** redirected to xMalloc. Similarly, we know that nByte>0 becauses
14960 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
14979 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
15001 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
15127 ** are made and returned by the xMalloc() an
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h1399 ** The xMalloc, xRealloc, and xFree methods must work like the
1405 ** previously obtained from xMalloc or xRealloc. The allocated size
1439 void *(*xMalloc)(int); /* Memory allocation function */ member in struct:sqlite3_mem_methods
H A Dsqlite3.c1514 ** The xMalloc, xRealloc, and xFree methods must work like the
1520 ** previously obtained from xMalloc or xRealloc. The allocated size
1554 void *(*xMalloc)(int); /* Memory allocation function */ member in struct:sqlite3_mem_methods
16140 ** malloc failures (when the xMalloc() or xRealloc() method of the
16445 ** Report the allocated size of a prior return from xMalloc()
16466 ** redirected to xMalloc. Similarly, we know that nByte>0 becauses
16954 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
16973 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
16995 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
17121 ** are made and returned by the xMalloc() an
[all...]
/external/sqlite/dist/
H A Dsqlite3.h1399 ** The xMalloc, xRealloc, and xFree methods must work like the
1405 ** previously obtained from xMalloc or xRealloc. The allocated size
1439 void *(*xMalloc)(int); /* Memory allocation function */ member in struct:sqlite3_mem_methods
H A Dsqlite3.c1514 ** The xMalloc, xRealloc, and xFree methods must work like the
1520 ** previously obtained from xMalloc or xRealloc. The allocated size
1554 void *(*xMalloc)(int); /* Memory allocation function */ member in struct:sqlite3_mem_methods
16140 ** malloc failures (when the xMalloc() or xRealloc() method of the
16445 ** Report the allocated size of a prior return from xMalloc()
16466 ** redirected to xMalloc. Similarly, we know that nByte>0 becauses
16954 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
16973 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
16995 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
17121 ** are made and returned by the xMalloc() an
[all...]

Completed in 532 milliseconds