Home
last modified time | relevance | path

Searched refs:xRealloc (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest_mem.c39 void *(*xRealloc)(void *, int); /* underlying realloc(3) function */ member
348 pGlobal->xRealloc = tmLsmRealloc; in testMallocInstall()
359 pGlobal->xSaveRealloc = pEnv->xRealloc; in testMallocInstall()
365 pEnv->xRealloc = tmLsmEnvRealloc; in testMallocInstall()
374 pEnv->xRealloc = p->xSaveRealloc; in testMallocUninstall()
/sqlite-3.40.0/src/
H A Dmalloc.c541 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); in sqlite3Realloc()
545 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); in sqlite3Realloc()
554 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); in sqlite3Realloc()
H A Dtest_init.c67 static void *wrMemRealloc(void *p, int n) {return wrapped.mem.xRealloc(p, n);} in wrMemRealloc()
H A Dtest_malloc.c110 p = memfault.m.xRealloc(pOld, n); in faultsimRealloc()
196 m.xRealloc = faultsimRealloc; in faultsimInstall()
H A Dsqlite.h.in1715 ** The xMalloc, xRealloc, and xFree methods must work like the
1718 ** xRealloc is always a value returned by a prior call to xRoundup.
1721 ** previously obtained from xMalloc or xRealloc. The allocated size
1757 void *(*xRealloc)(void*,int); /* Resize an allocation */ member
/sqlite-3.40.0/ext/misc/
H A Dmemtrace.c57 return memtraceBase.xRealloc(p, n); in memtraceRealloc()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_mem.c31 return pEnv->xRealloc(pEnv, p, N); in lsmRealloc()
H A Dlsm.h73 void *(*xRealloc)(lsm_env*, void *, size_t); /* realloc(3) function */ member
/sqlite-3.40.0/test/
H A Ddbfuzz2.c110 return memtraceBase.xRealloc(p, n); in memtraceRealloc()
/sqlite-3.40.0/tool/
H A Dfuzzershell.c126 return g.sOrigMem.xRealloc(pOld, nByte); in oomRealloc()
937 g.sOomMem.xRealloc = oomRealloc; in main()