Searched refs:xInit (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/ |
D | sqlite3.h | 1051 int (*xInit)(void*); /* Initialize the memory allocator */ member 5304 int (*xInit)(void*); member
|
D | sqlite3.h.orig | 1023 ** The xInit method initializes the memory allocator. (For example, 1027 ** by xInit. The pAppData pointer is used as the only parameter to 1028 ** xInit and xShutdown. 1031 ** the xInit method, so the xInit method need not be threadsafe. The 1041 ** SQLite will never invoke xInit() more than once without an intervening 1051 int (*xInit)(void*); /* Initialize the memory allocator */ 1053 void *pAppData; /* Argument to xInit() and xShutdown() */ 5194 ** ^The xInit() method is called once for each call to [sqlite3_initialize()] 5195 ** (usually only once during the lifetime of the process). ^(The xInit() 5197 ** ^The xInit() method can set up up global structures and/or any mutexes [all …]
|
D | sqlite3.c | 1575 int (*xInit)(void*); /* Initialize the memory allocator */ member 5828 int (*xInit)(void*); member 15759 return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit() 29797 if( sqlite3GlobalConfig.pcache.xInit==0 ){ 29800 return sqlite3GlobalConfig.pcache.xInit(sqlite3GlobalConfig.pcache.pArg); 76691 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*); 76729 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*)) 76731 if( xInit==0 ){ 76744 }else if( xInit(db, &zErrmsg, &sqlite3Apis) ){ 76855 SQLITE_API int sqlite3_auto_extension(void (*xInit)(void)){ [all …]
|
D | sqlite3.c.orig | 1547 ** The xInit method initializes the memory allocator. (For example, 1551 ** by xInit. The pAppData pointer is used as the only parameter to 1552 ** xInit and xShutdown. 1555 ** the xInit method, so the xInit method need not be threadsafe. The 1565 ** SQLite will never invoke xInit() more than once without an intervening 1575 int (*xInit)(void*); /* Initialize the memory allocator */ 1577 void *pAppData; /* Argument to xInit() and xShutdown() */ 5718 ** ^The xInit() method is called once for each call to [sqlite3_initialize()] 5719 ** (usually only once during the lifetime of the process). ^(The xInit() 5721 ** ^The xInit() method can set up up global structures and/or any mutexes [all …]
|