Home | History | Annotate | Download | only in dist

Lines Matching defs:xMalloc

1830 ** The xMalloc, xRealloc, and xFree methods must work like the
1836 ** previously obtained from xMalloc or xRealloc. The allocated size
1870 void *(*xMalloc)(int); /* Memory allocation function */
15041 ** malloc failures (when the xMalloc() or xRealloc() method of the
15330 ** Report the allocated size of a prior return from xMalloc()
15351 ** redirected to xMalloc. Similarly, we know that nByte>0 becauses
15839 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
15858 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
15880 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
16006 ** are made and returned by the xMalloc() and xRealloc()
16695 ** are made and returned by the xMalloc() and xRealloc()
18743 if( sqlite3GlobalConfig.m.xMalloc==0 ){
18862 p = sqlite3GlobalConfig.m.xMalloc(nFull);
18866 p = sqlite3GlobalConfig.m.xMalloc(nFull);
18889 ** xMalloc(). Hence we limit the maximum size to 0x7fffff00, giving
18898 p = sqlite3GlobalConfig.m.xMalloc(n);
18955 p = sqlite3GlobalConfig.m.xMalloc(n);
112819 if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault();