Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_mem_methods

1730 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
1731 struct sqlite3_mem_methods {
1799 ** instance of the [sqlite3_mem_methods] structure. The argument specifies
1802 ** its own private copy of the content of the [sqlite3_mem_methods] structure
1807 ** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
1950 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
1951 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
5929 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
10545 sqlite3_mem_methods m; /* Low-level memory allocation interface */
10714 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
10717 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
14053 ** sqlite3_mem_methods structure fails to allocate a block of memory
14172 static const sqlite3_mem_methods defaultMethods = {
14206 ** routines specified in the sqlite3_mem_methods object.
14324 static const sqlite3_mem_methods defaultMethods = {
14360 ** routines specified in the sqlite3_mem_methods object.
14703 static const sqlite3_mem_methods defaultMethods = {
15541 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
15542 static const sqlite3_mem_methods mempoolMethods = {
16120 ** linkage. It returns a pointer to a static sqlite3_mem_methods
16123 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
16124 static const sqlite3_mem_methods memsys5Methods = {
105142 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
105148 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;