Searched defs:sqlite3_mem_methods (Results 1 – 1 of 1) sorted by relevance
1765 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1766 struct sqlite3_mem_methods { struct1767 void *(*xMalloc)(int); /* Memory allocation function */1768 void (*xFree)(void*); /* Free a prior allocation */1769 void *(*xRealloc)(void*,int); /* Resize an allocation */1770 int (*xSize)(void*); /* Return the size of an allocation */1771 int (*xRoundup)(int); /* Round up request size to allocation size */1772 int (*xInit)(void*); /* Initialize the memory allocator */1773 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1774 void *pAppData; /* Argument to xInit() and xShutdown() */