Home | History | Annotate | Download | only in dist

Lines Matching refs:xMalloc

1686 ** The xMalloc and xFree methods must work like the
1698 ** previously obtained from xMalloc or xRealloc. The allocated size
1732 void *(*xMalloc)(int); /* Memory allocation function */
14052 ** malloc failures (when the xMalloc() or xRealloc() method of the
14255 ** Report the allocated size of a prior return from xMalloc()
14272 ** redirected to xMalloc. Similarly, we know that nByte>0 becauses
14720 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
14739 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
14761 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){
14887 ** are made and returned by the xMalloc() and xRealloc()
15576 ** are made and returned by the xMalloc() and xRealloc()
17618 if( sqlite3GlobalConfig.m.xMalloc==0 ){
17737 p = sqlite3GlobalConfig.m.xMalloc(nFull);
17741 p = sqlite3GlobalConfig.m.xMalloc(nFull);
17764 ** xMalloc(). Hence we limit the maximum size to 0x7fffff00, giving
17773 p = sqlite3GlobalConfig.m.xMalloc(n);
17830 p = sqlite3GlobalConfig.m.xMalloc(n);
105147 if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault();