Home | History | Annotate | Download | only in dist

Lines Matching full:sqlite3_mem_methods

1568 typedef struct sqlite3_mem_methods sqlite3_mem_methods;
1569 struct sqlite3_mem_methods {
1638 ** instance of the [sqlite3_mem_methods] structure. The argument specifies
1641 ** its own private copy of the content of the [sqlite3_mem_methods] structure
1646 ** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
1773 #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
1774 #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
5519 ** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
9877 sqlite3_mem_methods m; /* Low-level memory allocation interface */
10038 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void);
10041 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void);
12360 ** sqlite3_mem_methods structure fails to allocate a block of memory
12479 static const sqlite3_mem_methods defaultMethods = {
12513 ** routines specified in the sqlite3_mem_methods object.
12632 static const sqlite3_mem_methods defaultMethods = {
12668 ** routines specified in the sqlite3_mem_methods object.
13007 static const sqlite3_mem_methods defaultMethods = {
13789 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){
13790 static const sqlite3_mem_methods mempoolMethods = {
14368 ** linkage. It returns a pointer to a static sqlite3_mem_methods
14371 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){
14372 static const sqlite3_mem_methods memsys5Methods = {
95746 sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*);
95752 *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m;