Searched defs:sqlite3_mem_methods (Results 1 – 1 of 1) sorted by relevance
1753 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1754 struct sqlite3_mem_methods { struct1755 void *(*xMalloc)(int); /* Memory allocation function */1756 void (*xFree)(void*); /* Free a prior allocation */1757 void *(*xRealloc)(void*,int); /* Resize an allocation */1758 int (*xSize)(void*); /* Return the size of an allocation */1759 int (*xRoundup)(int); /* Round up request size to allocation size */1760 int (*xInit)(void*); /* Initialize the memory allocator */1761 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1762 void *pAppData; /* Argument to xInit() and xShutdown() */