Lines Matching defs:xMalloc
2041 ** The xMalloc, xRealloc, and xFree methods must work like the
2047 ** previously obtained from xMalloc or xRealloc. The allocated size
2081 void *(*xMalloc)(int); /* Memory allocation function */
26501 ** malloc failures (when the xMalloc() or xRealloc() method of the
26813 ** Report the allocated size of a prior return from xMalloc()
26835 ** redirected to xMalloc. Similarly, we know that nByte>0 because
27482 ** are made and returned by the xMalloc() and xRealloc()
28172 ** are made and returned by the xMalloc() and xRealloc()
30376 if( sqlite3GlobalConfig.m.xMalloc==0 ){
30492 p = sqlite3GlobalConfig.m.xMalloc(nFull);
30496 p = sqlite3GlobalConfig.m.xMalloc(nFull);
30541 p = sqlite3GlobalConfig.m.xMalloc((int)n);
180291 if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault();