Searched defs:sqlite3_mem_methods (Results 1 – 4 of 4) sorted by relevance
1251 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1252 struct sqlite3_mem_methods { struct1253 void *(*xMalloc)(int); /* Memory allocation function */1254 void (*xFree)(void*); /* Free a prior allocation */1255 void *(*xRealloc)(void*,int); /* Resize an allocation */1256 int (*xSize)(void*); /* Return the size of an allocation */1257 int (*xRoundup)(int); /* Round up request size to allocation size */1258 int (*xInit)(void*); /* Initialize the memory allocator */1259 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1260 void *pAppData; /* Argument to xInit() and xShutdown() */
1804 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1805 struct sqlite3_mem_methods { struct1806 void *(*xMalloc)(int); /* Memory allocation function */1807 void (*xFree)(void*); /* Free a prior allocation */1808 void *(*xRealloc)(void*,int); /* Resize an allocation */1809 int (*xSize)(void*); /* Return the size of an allocation */1810 int (*xRoundup)(int); /* Round up request size to allocation size */1811 int (*xInit)(void*); /* Initialize the memory allocator */1812 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1813 void *pAppData; /* Argument to xInit() and xShutdown() */
1662 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1663 struct sqlite3_mem_methods { struct1664 void *(*xMalloc)(int); /* Memory allocation function */1665 void (*xFree)(void*); /* Free a prior allocation */1666 void *(*xRealloc)(void*,int); /* Resize an allocation */1667 int (*xSize)(void*); /* Return the size of an allocation */1668 int (*xRoundup)(int); /* Round up request size to allocation size */1669 int (*xInit)(void*); /* Initialize the memory allocator */1670 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1671 void *pAppData; /* Argument to xInit() and xShutdown() */
2701 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef2702 struct sqlite3_mem_methods { struct2703 void *(*xMalloc)(int); /* Memory allocation function */2704 void (*xFree)(void*); /* Free a prior allocation */2705 void *(*xRealloc)(void*,int); /* Resize an allocation */2706 int (*xSize)(void*); /* Return the size of an allocation */2707 int (*xRoundup)(int); /* Round up request size to allocation size */2708 int (*xInit)(void*); /* Initialize the memory allocator */2709 void (*xShutdown)(void*); /* Deinitialize the memory allocator */2710 void *pAppData; /* Argument to xInit() and xShutdown() */