Searched defs:sqlite3_mem_methods (Results 1 – 4 of 4) sorted by relevance
1591 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef1592 struct sqlite3_mem_methods { struct1593 void *(*xMalloc)(int); /* Memory allocation function */1594 void (*xFree)(void*); /* Free a prior allocation */1595 void *(*xRealloc)(void*,int); /* Resize an allocation */1596 int (*xSize)(void*); /* Return the size of an allocation */1597 int (*xRoundup)(int); /* Round up request size to allocation size */1598 int (*xInit)(void*); /* Initialize the memory allocator */1599 void (*xShutdown)(void*); /* Deinitialize the memory allocator */1600 void *pAppData; /* Argument to xInit() and xShutdown() */
2615 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef2616 struct sqlite3_mem_methods { struct2617 void *(*xMalloc)(int); /* Memory allocation function */2618 void (*xFree)(void*); /* Free a prior allocation */2619 void *(*xRealloc)(void*,int); /* Resize an allocation */2620 int (*xSize)(void*); /* Return the size of an allocation */2621 int (*xRoundup)(int); /* Round up request size to allocation size */2622 int (*xInit)(void*); /* Initialize the memory allocator */2623 void (*xShutdown)(void*); /* Deinitialize the memory allocator */2624 void *pAppData; /* Argument to xInit() and xShutdown() */