Lines Matching defs:xFree
2032 ** The xMalloc, xRealloc, and xFree methods must work like the
2073 void (*xFree)(void*); /* Free a prior allocation */
25663 ** routines and redirected to xFree.
26141 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
26160 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
26182 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
29442 sqlite3GlobalConfig.m.xFree(p);
29445 sqlite3GlobalConfig.m.xFree(p);
79538 ** xFree argument when the memory allocation was made is invoked on the
79539 ** blob of allocated memory. The xFree function should not call sqlite3_free()
79542 SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)){
79547 pBt->xFreeSchema = xFree;
207430 static void xFree(void *p){
207752 sqlite3_result_text16(p, zOutput, nOut, xFree);