Lines Matching defs:sqlite3_mem_methods
2079 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
2080 struct sqlite3_mem_methods {
2166 ** a pointer to an instance of the [sqlite3_mem_methods] structure.
2170 ** its own private copy of the content of the [sqlite3_mem_methods] structure
2175 ** is a pointer to an instance of the [sqlite3_mem_methods] structure.
2176 ** The [sqlite3_mem_methods]
2480 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
2481 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
8901 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
20199 sqlite3_mem_methods m; /* Low-level memory allocation interface */
20663 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
20667 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
26502 ** sqlite3_mem_methods structure fails to allocate a block of memory
26623 static const sqlite3_mem_methods defaultMethods = {
26657 ** routines specified in the sqlite3_mem_methods object. The content of
26917 static const sqlite3_mem_methods defaultMethods = {
26953 ** routines specified in the sqlite3_mem_methods object.
27298 static const sqlite3_mem_methods defaultMethods = {
28137 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
28138 static const sqlite3_mem_methods mempoolMethods = {
28722 ** linkage. It returns a pointer to a static sqlite3_mem_methods
28725 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
28726 static const sqlite3_mem_methods memsys5Methods = {
47068 ** sqlite3_mem_methods implementation.
47117 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void);
48303 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){
48304 static const sqlite3_mem_methods winMemMethods = {
180280 ** sqlite3_mem_methods structure. The argument specifies alternative
180283 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
180289 ** sqlite3_mem_methods structure. The sqlite3_mem_methods structure is
180292 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;