Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.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() */
H A Dsqlite3.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() */
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.h1662 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1663 struct sqlite3_mem_methods { struct
1664 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() */
H A Dsqlite3.c2701 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
2702 struct sqlite3_mem_methods { struct
2703 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() */