Lines Matching defs:sqlite3_mem_methods

2729 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
2730 struct sqlite3_mem_methods {
2799 ** a pointer to an instance of the [sqlite3_mem_methods] structure.
2803 ** its own private copy of the content of the [sqlite3_mem_methods] structure
2808 ** is a pointer to an instance of the [sqlite3_mem_methods] structure.
2809 ** The [sqlite3_mem_methods]
3097 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
3098 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
9080 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
19236 sqlite3_mem_methods m; /* Low-level memory allocation interface */
19659 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
19663 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
23701 ** sqlite3_mem_methods structure fails to allocate a block of memory
23822 static const sqlite3_mem_methods defaultMethods = {
23856 ** routines specified in the sqlite3_mem_methods object. The content of
24116 static const sqlite3_mem_methods defaultMethods = {
24152 ** routines specified in the sqlite3_mem_methods object.
24497 static const sqlite3_mem_methods defaultMethods = {
25336 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
25337 static const sqlite3_mem_methods mempoolMethods = {
25912 ** linkage. It returns a pointer to a static sqlite3_mem_methods
25915 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
25916 static const sqlite3_mem_methods memsys5Methods = {
42525 ** sqlite3_mem_methods implementation.
42574 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void);
43760 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){
43761 static const sqlite3_mem_methods winMemMethods = {
164544 ** sqlite3_mem_methods structure. The argument specifies alternative
164547 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
164553 ** sqlite3_mem_methods structure. The sqlite3_mem_methods structure is
164556 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;