Home
last modified time | relevance | path

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

/external/sqlite/dist/
Dsqlite3.h1591 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1592 struct sqlite3_mem_methods { struct
1593 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() */
Dsqlite3.c2615 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
2616 struct sqlite3_mem_methods { struct
2617 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() */
/external/sqlite/dist/orig/
Dsqlite3.h1591 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1592 struct sqlite3_mem_methods { struct
1593 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() */
Dsqlite3.c2615 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
2616 struct sqlite3_mem_methods { struct
2617 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() */