Searched defs:sqlite3_mem_methods (Results 1 – 1 of 1) sorted by relevance
1760 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1761 struct sqlite3_mem_methods { struct1762 void *(*xMalloc)(int); /* Memory allocation function */1763 void (*xFree)(void*); /* Free a prior allocation */1764 void *(*xRealloc)(void*,int); /* Resize an allocation */1765 int (*xSize)(void*); /* Return the size of an allocation */1766 int (*xRoundup)(int); /* Round up request size to allocation size */1767 int (*xInit)(void*); /* Initialize the memory allocator */1768 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1769 void *pAppData; /* Argument to xInit() and xShutdown() */