Home
last modified time | relevance | path

Searched defs:sqlite3_mem_methods (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dsqlite.h.in1753 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1754 struct sqlite3_mem_methods { struct
1755 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() */