Lines Matching defs:sqlite3_mem_methods

1552 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
1553 struct sqlite3_mem_methods {
1622 ** instance of the [sqlite3_mem_methods] structure. The argument specifies
1625 ** its own private copy of the content of the [sqlite3_mem_methods] structure
1630 ** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
1845 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
1846 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
6333 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
12190 sqlite3_mem_methods m; /* Low-level memory allocation interface */
12413 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
12416 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
16141 ** sqlite3_mem_methods structure fails to allocate a block of memory
16260 static const sqlite3_mem_methods defaultMethods = {
16294 ** routines specified in the sqlite3_mem_methods object. The content of
16557 static const sqlite3_mem_methods defaultMethods = {
16593 ** routines specified in the sqlite3_mem_methods object.
16937 static const sqlite3_mem_methods defaultMethods = {
17775 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
17776 static const sqlite3_mem_methods mempoolMethods = {
18350 ** linkage. It returns a pointer to a static sqlite3_mem_methods
18353 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
18354 static const sqlite3_mem_methods memsys5Methods = {
32351 ** sqlite3_mem_methods implementation.
32400 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void);
33534 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){
33535 static const sqlite3_mem_methods winMemMethods = {
122551 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
122557 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;