Searched defs:sqlite3_mem_methods (Results 1 – 2 of 2) sorted by relevance
1463 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1464 struct sqlite3_mem_methods { struct1465 void *(*xMalloc)(int); /* Memory allocation function */1466 void (*xFree)(void*); /* Free a prior allocation */1467 void *(*xRealloc)(void*,int); /* Resize an allocation */1468 int (*xSize)(void*); /* Return the size of an allocation */1469 int (*xRoundup)(int); /* Round up request size to allocation size */1470 int (*xInit)(void*); /* Initialize the memory allocator */1471 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1472 void *pAppData; /* Argument to xInit() and xShutdown() */
1670 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1671 struct sqlite3_mem_methods { struct1672 void *(*xMalloc)(int); /* Memory allocation function */1673 void (*xFree)(void*); /* Free a prior allocation */1674 void *(*xRealloc)(void*,int); /* Resize an allocation */1675 int (*xSize)(void*); /* Return the size of an allocation */1676 int (*xRoundup)(int); /* Round up request size to allocation size */1677 int (*xInit)(void*); /* Initialize the memory allocator */1678 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1679 void *pAppData; /* Argument to xInit() and xShutdown() */
Completed in 331 milliseconds