Lines Matching defs:xFree
2096 ** The xMalloc, xRealloc, and xFree methods must work like the
2137 void (*xFree)(void*); /* Free a prior allocation */
28089 ** routines and redirected to xFree.
28567 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
28586 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
28608 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){
31874 sqlite3GlobalConfig.m.xFree(p);
31877 sqlite3GlobalConfig.m.xFree(p);
84480 ** xFree argument when the memory allocation was made is invoked on the
84481 ** blob of allocated memory. The xFree function should not call sqlite3_free()
84484 SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)){
84490 pBt->xFreeSchema = xFree;
87046 SQLITE_PRIVATE int sqlite3ValueIsOfClass(const sqlite3_value *pVal, void(*xFree)(void*)){
87050 && pVal->xDel==xFree
224502 static void xFree(void *p){
224824 sqlite3_result_text16(p, zOutput, nOut, xFree);