Lines Matching defs:xMalloc
2032 ** The xMalloc, xRealloc, and xFree methods must work like the
2038 ** previously obtained from xMalloc or xRealloc. The allocated size
2072 void *(*xMalloc)(int); /* Memory allocation function */
25327 ** malloc failures (when the xMalloc() or xRealloc() method of the
25639 ** Report the allocated size of a prior return from xMalloc()
25661 ** redirected to xMalloc. Similarly, we know that nByte>0 because
26308 ** are made and returned by the xMalloc() and xRealloc()
26998 ** are made and returned by the xMalloc() and xRealloc()
29202 if( sqlite3GlobalConfig.m.xMalloc==0 ){
29299 p = sqlite3GlobalConfig.m.xMalloc(nFull);
29303 p = sqlite3GlobalConfig.m.xMalloc(nFull);
29348 p = sqlite3GlobalConfig.m.xMalloc((int)n);
173906 if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault();