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() */
1473 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1474 struct sqlite3_mem_methods { struct1475 void *(*xMalloc)(int); /* Memory allocation function */1476 void (*xFree)(void*); /* Free a prior allocation */1477 void *(*xRealloc)(void*,int); /* Resize an allocation */1478 int (*xSize)(void*); /* Return the size of an allocation */1479 int (*xRoundup)(int); /* Round up request size to allocation size */1480 int (*xInit)(void*); /* Initialize the memory allocator */1481 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1482 void *pAppData; /* Argument to xInit() and xShutdown() */
1687 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1688 struct sqlite3_mem_methods { struct1689 void *(*xMalloc)(int); /* Memory allocation function */1690 void (*xFree)(void*); /* Free a prior allocation */1691 void *(*xRealloc)(void*,int); /* Resize an allocation */1692 int (*xSize)(void*); /* Return the size of an allocation */1693 int (*xRoundup)(int); /* Round up request size to allocation size */1694 int (*xInit)(void*); /* Initialize the memory allocator */1695 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1696 void *pAppData; /* Argument to xInit() and xShutdown() */