Home
last modified time | relevance | path

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

/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.h1463 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1464 struct sqlite3_mem_methods { struct
1465 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() */
H A Dsqlite3.c1670 typedef struct sqlite3_mem_methods sqlite3_mem_methods; typedef
1671 struct sqlite3_mem_methods { struct
1672 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 343 milliseconds