Searched refs:xDestroy (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_tokenizer.h45 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member in struct:sqlite3_tokenizer_module
H A Dtokenizer.h45 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member in struct:sqlite3_tokenizer_module
H A Dfulltext.c840 v->pTokenizer->pModule->xDestroy(v->pTokenizer);
H A Dfts1.c1080 ** of this structure and xDestroy and xDisconnect free that instance.
1516 v->pTokenizer->pModule->xDestroy(v->pTokenizer);
3314 /* xDestroy */ fulltextDestroy,
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.h86 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member in struct:sqlite3_tokenizer_module
H A Dfts2_tokenizer.c208 if( SQLITE_OK!=p->xDestroy(pTokenizer) ){
209 zErr = "error in xDestroy()";
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_tokenizer.h86 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member in struct:sqlite3_tokenizer_module
H A Dfts3_expr.c921 rc = pModule->xDestroy(pTokenizer);
H A Dfts3.c456 p->pTokenizer->pModule->xDestroy(p->pTokenizer);
490 ** The xDestroy() virtual table method.
1011 pTokenizer->pModule->xDestroy(pTokenizer);
3561 /* xDestroy */ fts3DestroyMethod,
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_quota.c80 void (*xDestroy)(void*); /* Optional destructor for pArg */ member in struct:quotaGroup
175 if( pGroup->xDestroy ) pGroup->xDestroy(pGroup->pArg);
672 void (*xDestroy)(void*) /* Optional destructor for pArg */
701 if( pGroup->xDestroy && pGroup->pArg!=pArg ){
702 pGroup->xDestroy(pGroup->pArg);
705 pGroup->xDestroy = xDestroy;
848 void (*xDestroy)(void*); /* Optional destructor for pArg */
872 xDestroy
[all...]
H A Dvtab.c27 void (*xDestroy)(void *) /* Module destructor function */
42 pMod->xDestroy = xDestroy;
44 if( pDel && pDel->xDestroy ){
45 pDel->xDestroy(pDel->pAux);
52 }else if( xDestroy ){
53 xDestroy(pAux);
81 void (*xDestroy)(void *) /* Module destructor function */
83 return createModule(db, zName, pModule, pAux, xDestroy);
695 ** This function is invoked by the vdbe to call the xDestroy metho
[all...]
H A Dtest8.c478 ** from within an xDestroy method call.
527 ** Echo virtual table module xDestroy method.
532 appendToEchoModule(((echo_vtab *)pVtab)->interp, "xDestroy");
H A Dsqlite.h.in3547 void(*xDestroy)(void*)
3954 ** with the addition that the xDestroy callback is invoked on pArg when
3960 ** ^The xDestroy callback is <u>not</u> called if the
3962 ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should
3984 void(*xDestroy)(void*)
4590 int (*xDestroy)(sqlite3_vtab *pVTab);
4740 void(*xDestroy)(void*) /* Module destructor function */
5835 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
5837 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5853 void (*xDestroy)(sqlite3_pcach
[all...]
H A Dmain.c669 pDestructor->xDestroy(pDestructor->pUserData);
690 /* Force xDestroy calls on all virtual tables */
769 if( pMod->xDestroy ){
770 pMod->xDestroy(pMod->pAux);
1132 void (*xDestroy)(void *)
1137 if( xDestroy ){
1140 xDestroy(p);
1143 pArg->xDestroy = xDestroy;
1149 xDestroy(
[all...]
H A Dpcache.c194 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
439 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
H A Dtest_init.c148 wrapped.pcache.xDestroy(p);
H A Dsqlite3ext.h157 int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *));
201 int (*create_function_v2)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*),void(*xDestroy)(void*));
H A DsqliteInt.h1005 void (*xDestroy)(void *); member in struct:FuncDestructor
1087 void (*xDestroy)(void *); /* Module destructor function */ member in struct:Module
/external/sqlite/dist/orig/
H A Dsqlite3.h4101 void(*xDestroy)(void*)
4535 ** with the addition that the xDestroy callback is invoked on pArg when
4541 ** ^The xDestroy callback is <u>not</u> called if the
4543 ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should
4565 void(*xDestroy)(void*)
5314 int (*xDestroy)(sqlite3_vtab *pVTab); member in struct:sqlite3_module
5483 void(*xDestroy)(void*) /* Module destructor function */
6665 ** [[the xDestroy() page cache method]]
6666 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6668 ** calling the xDestroy() metho
6692 void (*xDestroy)(sqlite3_pcache*); member in struct:sqlite3_pcache_methods2
6713 void (*xDestroy)(sqlite3_pcache*); member in struct:sqlite3_pcache_methods
[all...]
H A Dsqlite3ext.h171 void (*xDestroy)(void *));
222 void(*xDestroy)(void*));
H A Dsqlite3.c4216 void(*xDestroy)(void*)
4650 ** with the addition that the xDestroy callback is invoked on pArg when
4656 ** ^The xDestroy callback is <u>not</u> called if the
4658 ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should
4680 void(*xDestroy)(void*)
5429 int (*xDestroy)(sqlite3_vtab *pVTab); member in struct:sqlite3_module
5598 void(*xDestroy)(void*) /* Module destructor function */
6780 ** [[the xDestroy() page cache method]]
6781 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6783 ** calling the xDestroy() metho
6807 void (*xDestroy)(sqlite3_pcache*); member in struct:sqlite3_pcache_methods2
6828 void (*xDestroy)(sqlite3_pcache*); member in struct:sqlite3_pcache_methods
10668 void (*xDestroy)(void *); member in struct:FuncDestructor
10767 void (*xDestroy)(void *); /* Module destructor function */ member in struct:Module
[all...]
/external/sqlite/dist/
H A Dsqlite3.h4101 void(*xDestroy)(void*)
4535 ** with the addition that the xDestroy callback is invoked on pArg when
4541 ** ^The xDestroy callback is <u>not</u> called if the
4543 ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should
4565 void(*xDestroy)(void*)
5314 int (*xDestroy)(sqlite3_vtab *pVTab); member in struct:sqlite3_module
5483 void(*xDestroy)(void*) /* Module destructor function */
6665 ** [[the xDestroy() page cache method]]
6666 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6668 ** calling the xDestroy() metho
6692 void (*xDestroy)(sqlite3_pcache*); member in struct:sqlite3_pcache_methods2
6713 void (*xDestroy)(sqlite3_pcache*); member in struct:sqlite3_pcache_methods
[all...]
H A Dsqlite3ext.h171 void (*xDestroy)(void *));
222 void(*xDestroy)(void*));
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h3552 void(*xDestroy)(void*)
3959 ** with the addition that the xDestroy callback is invoked on pArg when
3965 ** ^The xDestroy callback is <u>not</u> called if the
3967 ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should
3989 void(*xDestroy)(void*)
4595 int (*xDestroy)(sqlite3_vtab *pVTab); member in struct:sqlite3_module
4745 void(*xDestroy)(void*) /* Module destructor function */
5840 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
5842 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5858 void (*xDestroy)(sqlite3_pcach member in struct:sqlite3_pcache_methods
[all...]
H A Dsqlite3.c4095 void(*xDestroy)(void*)
4502 ** with the addition that the xDestroy callback is invoked on pArg when
4508 ** ^The xDestroy callback is <u>not</u> called if the
4510 ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should
4532 void(*xDestroy)(void*)
5138 int (*xDestroy)(sqlite3_vtab *pVTab); member in struct:sqlite3_module
5288 void(*xDestroy)(void*) /* Module destructor function */
6383 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6385 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6401 void (*xDestroy)(sqlite3_pcach member in struct:sqlite3_pcache_methods
9350 void (*xDestroy)(void *); member in struct:FuncDestructor
9432 void (*xDestroy)(void *); /* Module destructor function */ member in struct:Module
[all...]

Completed in 8090 milliseconds

12