/external/chromium_org/third_party/sqlite/src/src/ |
D | test_quota.c | 80 void (*xDestroy)(void*); /* Optional destructor for pArg */ member 175 if( pGroup->xDestroy ) pGroup->xDestroy(pGroup->pArg); in quotaGroupDeref() 672 void (*xDestroy)(void*) /* Optional destructor for pArg */ in sqlite3_quota_set() 701 if( pGroup->xDestroy && pGroup->pArg!=pArg ){ in sqlite3_quota_set() 702 pGroup->xDestroy(pGroup->pArg); in sqlite3_quota_set() 705 pGroup->xDestroy = xDestroy; in sqlite3_quota_set() 848 void (*xDestroy)(void*); /* Optional destructor for pArg */ in test_quota_set() local 872 xDestroy = tclCallbackDestructor; in test_quota_set() 876 xDestroy = 0; in test_quota_set() 881 rc = sqlite3_quota_set(zPattern, iLimit, xCallback, (void*)p, xDestroy); in test_quota_set()
|
D | vtab.c | 27 void (*xDestroy)(void *) /* Module destructor function */ in createModule() 42 pMod->xDestroy = xDestroy; in createModule() 44 if( pDel && pDel->xDestroy ){ in createModule() 45 pDel->xDestroy(pDel->pAux); in createModule() 52 }else if( xDestroy ){ in createModule() 53 xDestroy(pAux); in createModule() 81 void (*xDestroy)(void *) /* Module destructor function */ in sqlite3_create_module_v2() 83 return createModule(db, zName, pModule, pAux, xDestroy); in sqlite3_create_module_v2() 710 rc = p->pMod->pModule->xDestroy(p->pVtab); in sqlite3VtabCallDestroy()
|
D | main.c | 669 pDestructor->xDestroy(pDestructor->pUserData); in functionDestroy() 769 if( pMod->xDestroy ){ in sqlite3_close() 770 pMod->xDestroy(pMod->pAux); in sqlite3_close() 1132 void (*xDestroy)(void *) in sqlite3_create_function_v2() 1137 if( xDestroy ){ in sqlite3_create_function_v2() 1140 xDestroy(p); in sqlite3_create_function_v2() 1143 pArg->xDestroy = xDestroy; in sqlite3_create_function_v2() 1149 xDestroy(p); in sqlite3_create_function_v2()
|
D | pcache.c | 194 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache); in sqlite3PcacheSetPageSize() 439 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache); in sqlite3PcacheClose()
|
D | sqlite3ext.h | 157 …int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *)); 201 …ep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*),void(*xDestroy)(void*));
|
D | test_init.c | 148 wrapped.pcache.xDestroy(p); in wrPCacheDestroy()
|
D | sqliteInt.h | 1005 void (*xDestroy)(void *); member 1087 void (*xDestroy)(void *); /* Module destructor function */ member
|
D | sqlite.h.in | 3547 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); member 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_pcache*); member
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
D | fts2_tokenizer.h | 86 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member
|
D | fts2_tokenizer.c | 208 if( SQLITE_OK!=p->xDestroy(pTokenizer) ){ in testFunc()
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
D | tokenizer.h | 45 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member
|
D | fts1_tokenizer.h | 45 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member
|
D | fulltext.c | 840 v->pTokenizer->pModule->xDestroy(v->pTokenizer); in fulltext_vtab_destroy()
|
D | fts1.c | 1516 v->pTokenizer->pModule->xDestroy(v->pTokenizer); in fulltext_vtab_destroy()
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3_tokenizer.h | 86 int (*xDestroy)(sqlite3_tokenizer *pTokenizer); member
|
D | fts3_tokenizer.c | 314 if( SQLITE_OK!=p->xDestroy(pTokenizer) ){ in testFunc()
|
D | fts3_expr.c | 921 rc = pModule->xDestroy(pTokenizer); in fts3ExprTest()
|
D | fts3.c | 456 p->pTokenizer->pModule->xDestroy(p->pTokenizer); in fts3DisconnectMethod() 1011 pTokenizer->pModule->xDestroy(pTokenizer); in fts3InitVtab()
|
/external/sqlite/dist/orig/ |
D | sqlite3.h | 4101 void(*xDestroy)(void*) 4565 void(*xDestroy)(void*) 5314 int (*xDestroy)(sqlite3_vtab *pVTab); member 5483 void(*xDestroy)(void*) /* Module destructor function */ 6692 void (*xDestroy)(sqlite3_pcache*); member 6713 void (*xDestroy)(sqlite3_pcache*); member
|
D | sqlite3ext.h | 171 void (*xDestroy)(void *)); 222 void(*xDestroy)(void*));
|
/external/sqlite/dist/ |
D | sqlite3.h | 4101 void(*xDestroy)(void*) 4565 void(*xDestroy)(void*) 5314 int (*xDestroy)(sqlite3_vtab *pVTab); member 5483 void(*xDestroy)(void*) /* Module destructor function */ 6692 void (*xDestroy)(sqlite3_pcache*); member 6713 void (*xDestroy)(sqlite3_pcache*); member
|
D | sqlite3ext.h | 171 void (*xDestroy)(void *)); 222 void(*xDestroy)(void*));
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.h | 3552 void(*xDestroy)(void*) 3989 void(*xDestroy)(void*) 4595 int (*xDestroy)(sqlite3_vtab *pVTab); member 4745 void(*xDestroy)(void*) /* Module destructor function */ 5858 void (*xDestroy)(sqlite3_pcache*); member
|
D | sqlite3.c | 4095 void(*xDestroy)(void*) 4532 void(*xDestroy)(void*) 5138 int (*xDestroy)(sqlite3_vtab *pVTab); member 5288 void(*xDestroy)(void*) /* Module destructor function */ 6401 void (*xDestroy)(sqlite3_pcache*); member 9350 void (*xDestroy)(void *); member 9432 void (*xDestroy)(void *); /* Module destructor function */ member 34519 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache); 34764 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache); 86639 …int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *)); [all …]
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | vtab1.test | 285 # Drop table t1. This should cause the xDestroy (but not xDisconnect) method 293 } {xDestroy}
|