Lines Matching refs:sqlite3_mem_methods

1965 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
1966 struct sqlite3_mem_methods {
2035 ** instance of the [sqlite3_mem_methods] structure. The argument specifies
2038 ** its own private copy of the content of the [sqlite3_mem_methods] structure
2043 ** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
2251 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
2252 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
6623 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
11710 sqlite3_mem_methods m; /* Low-level memory allocation interface */
11890 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
11893 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
15488 ** sqlite3_mem_methods structure fails to allocate a block of memory
15607 static const sqlite3_mem_methods defaultMethods = {
15641 ** routines specified in the sqlite3_mem_methods object. The content of
15888 static const sqlite3_mem_methods defaultMethods = {
15924 ** routines specified in the sqlite3_mem_methods object.
16268 static const sqlite3_mem_methods defaultMethods = {
17106 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
17107 static const sqlite3_mem_methods mempoolMethods = {
17686 ** linkage. It returns a pointer to a static sqlite3_mem_methods
17689 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
17690 static const sqlite3_mem_methods memsys5Methods = {
30959 ** sqlite3_mem_methods implementation.
30997 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void);
31973 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){
31974 static const sqlite3_mem_methods winMemMethods = {
115151 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
115157 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;