Lines Matching defs:sqlite3_mem_methods

1804 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
1805 struct sqlite3_mem_methods {
1874 ** instance of the [sqlite3_mem_methods] structure. The argument specifies
1877 ** its own private copy of the content of the [sqlite3_mem_methods] structure
1882 ** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
2039 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
2040 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
6211 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
11086 sqlite3_mem_methods m; /* Low-level memory allocation interface */
11256 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
11259 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
14683 ** sqlite3_mem_methods structure fails to allocate a block of memory
14802 static const sqlite3_mem_methods defaultMethods = {
14836 ** routines specified in the sqlite3_mem_methods object.
14954 static const sqlite3_mem_methods defaultMethods = {
14990 ** routines specified in the sqlite3_mem_methods object.
15334 static const sqlite3_mem_methods defaultMethods = {
16172 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
16173 static const sqlite3_mem_methods mempoolMethods = {
16752 ** linkage. It returns a pointer to a static sqlite3_mem_methods
16755 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
16756 static const sqlite3_mem_methods memsys5Methods = {
31712 ** sqlite3_mem_methods implementation.
31750 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void);
31967 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){
31968 static const sqlite3_mem_methods winMemMethods = {
110482 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
110488 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;