HomeSort by relevance Sort by last modified time
    Searched refs:xInit (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
loadext.c 397 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
433 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
435 if( xInit==0 ){
446 }else if( xInit(db, &zErrmsg, &sqlite3Apis) ){
557 int sqlite3_auto_extension(void (*xInit)(void)){
573 if( wsdAutoext.aExt[i]==xInit ) break;
583 wsdAutoext.aExt[wsdAutoext.nExt] = xInit;
621 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
635 xInit = 0;
638 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*)
    [all...]
test_init.c 50 rc = wrapped.mem.xInit(wrapped.mem.pAppData);
114 rc = wrapped.pcache.xInit(wrapped.pcache.pArg);
pcache.c 144 if( sqlite3GlobalConfig.pcache.xInit==0 ){
145 /* IMPLEMENTATION-OF: R-26801-64137 If the xInit() method is NULL, then the
150 return sqlite3GlobalConfig.pcache.xInit(sqlite3GlobalConfig.pcache.pArg);
sqlite.h.in     [all...]
malloc.c 192 return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData);
test_malloc.c 102 ** xInit
115 return memfault.m.xInit(memfault.m.pAppData);
191 faultsimInit, /* xInit */
    [all...]
main.c 178 ** to the xInit method, so the xInit method need not be threadsafe.
180 ** The following mutex is what serializes access to the appdef pcache xInit
181 ** methods. The sqlite3_pcache_methods.xInit() all is embedded in the
364 if( sqlite3GlobalConfig.pcache.xInit==0 ){
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h     [all...]
sqlite3.c     [all...]

Completed in 226 milliseconds