Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.h1251 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1252 struct sqlite3_mem_methods { struct
1253 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() */
HDsqlite3.c1804 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1805 struct sqlite3_mem_methods { struct
1806 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() */
/NextBSD/contrib/sqlite3/
HDsqlite3.h1473 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1474 struct sqlite3_mem_methods { struct
1475 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() */
HDsqlite3.c1687 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1688 struct sqlite3_mem_methods { struct
1689 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() */