Lines Matching defs:xFree
2041 ** The xMalloc, xRealloc, and xFree methods must work like the
2082 void (*xFree)(void*); /* Free a prior allocation */
26837 ** routines and redirected to xFree.
27315 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
27334 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
27356 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
30635 sqlite3GlobalConfig.m.xFree(p);
30638 sqlite3GlobalConfig.m.xFree(p);
81804 ** xFree argument when the memory allocation was made is invoked on the
81805 ** blob of allocated memory. The xFree function should not call sqlite3_free()
81808 SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)){
81813 pBt->xFreeSchema = xFree;
84169 SQLITE_PRIVATE int sqlite3ValueIsOfClass(const sqlite3_value *pVal, void(*xFree)(void*)){
84173 && pVal->xDel==xFree
216706 static void xFree(void *p){
217028 sqlite3_result_text16(p, zOutput, nOut, xFree);