• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching refs:xInit

1548 ** The xInit method initializes the memory allocator.  (For example,
1552 ** by xInit. The pAppData pointer is used as the only parameter to
1553 ** xInit and xShutdown.
1556 ** the xInit method, so the xInit method need not be threadsafe. The
1566 ** SQLite will never invoke xInit() more than once without an intervening
1576 int (*xInit)(void*); /* Initialize the memory allocator */
1578 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
5729 ** the xInit method, so the xInit method need not be threadsafe. ^The
5734 ** ^SQLite will never invoke xInit() more than once without an intervening
5828 int (*xInit)(void*);
15722 return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData);
29584 if( sqlite3GlobalConfig.pcache.xInit==0 ){
29587 return sqlite3GlobalConfig.pcache.xInit(sqlite3GlobalConfig.pcache.pArg);
30414 ** Implementation of the sqlite3_pcache.xInit method.
30429 ** Note that the static mutex allocated in xInit does
30733 pcache1Init, /* xInit */
76420 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
76458 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
76460 if( xInit==0 ){
76473 }else if( xInit(db, &zErrmsg, &sqlite3Apis) ){
76584 SQLITE_API int sqlite3_auto_extension(void (*xInit)(void)){
76600 if( wsdAutoext.aExt[i]==xInit ) break;
76610 wsdAutoext.aExt[wsdAutoext.nExt] = xInit;
76648 int (*xInit)(sqlite3*,char**,const sqlite3_api_routines*);
76662 xInit = 0;
76665 xInit = (int(*)(sqlite3*,char**,const sqlite3_api_routines*))
76670 if( xInit && xInit(db, &zErrmsg, &sqlite3Apis) ){
95546 if( sqlite3GlobalConfig.pcache.xInit==0 ){