Lines Matching defs:sqlite3_mem_methods
1868 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
1869 struct sqlite3_mem_methods {
1938 ** instance of the [sqlite3_mem_methods] structure. The argument specifies
1941 ** its own private copy of the content of the [sqlite3_mem_methods] structure
1946 ** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
2108 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
2109 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
6387 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
11343 sqlite3_mem_methods m; /* Low-level memory allocation interface */
11513 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
11516 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
15042 ** sqlite3_mem_methods structure fails to allocate a block of memory
15161 static const sqlite3_mem_methods defaultMethods = {
15195 ** routines specified in the sqlite3_mem_methods object. The content of
15442 static const sqlite3_mem_methods defaultMethods = {
15478 ** routines specified in the sqlite3_mem_methods object.
15822 static const sqlite3_mem_methods defaultMethods = {
16660 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
16661 static const sqlite3_mem_methods mempoolMethods = {
17240 ** linkage. It returns a pointer to a static sqlite3_mem_methods
17243 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
17244 static const sqlite3_mem_methods memsys5Methods = {
32253 ** sqlite3_mem_methods implementation.
32291 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void);
33030 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){
33031 static const sqlite3_mem_methods winMemMethods = {
112814 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
112820 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;