/external/chromium_org/third_party/sqlite/src/src/ |
D | vtab.c | 26 void *pAux, /* Context pointer for xCreate/xConnect */ in createModule() argument 41 pMod->pAux = pAux; in createModule() 45 pDel->xDestroy(pDel->pAux); in createModule() 53 xDestroy(pAux); in createModule() 68 void *pAux /* Context pointer for xCreate/xConnect */ in sqlite3_create_module() argument 70 return createModule(db, zName, pModule, pAux, 0); in sqlite3_create_module() 80 void *pAux, /* Context pointer for xCreate/xConnect */ in sqlite3_create_module_v2() argument 83 return createModule(db, zName, pModule, pAux, xDestroy); in sqlite3_create_module_v2() 461 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr); in vtabCallConstructor()
|
D | test8.c | 396 void *pAux, in echoConstructor() argument 410 pVtab->interp = ((EchoModule *)pAux)->interp; in echoConstructor() 461 void *pAux, in echoCreate() argument 467 appendToEchoModule(((EchoModule *)pAux)->interp, "xCreate"); in echoCreate() 468 rc = echoConstructor(db, pAux, argc, argv, ppVtab, pzErr); in echoCreate() 509 void *pAux, in echoConnect() argument 514 appendToEchoModule(((EchoModule *)pAux)->interp, "xConnect"); in echoConnect() 515 return echoConstructor(db, pAux, argc, argv, ppVtab, pzErr); in echoConnect()
|
D | vdbeapi.c | 595 return pVdbeFunc->apAux[iArg].pAux; in sqlite3_get_auxdata() 606 void *pAux, in sqlite3_set_auxdata() argument 629 if( pAuxData->pAux && pAuxData->xDelete ){ in sqlite3_set_auxdata() 630 pAuxData->xDelete(pAuxData->pAux); in sqlite3_set_auxdata() 632 pAuxData->pAux = pAux; in sqlite3_set_auxdata() 638 xDelete(pAux); in sqlite3_set_auxdata()
|
D | test_intarray.c | 81 void *pAux, /* clientdata for the module */ in intarrayCreate() argument 92 pVtab->pContent = (sqlite3_intarray*)pAux; in intarrayCreate()
|
D | test_tclvar.c | 50 void *pAux, in tclvarConnect() argument 61 pVtab->interp = (Tcl_Interp *)pAux; in tclvarConnect()
|
D | recover.c | 1559 void *pAux, in recoverCreate() argument 1565 return recoverInit(db, pAux, argc, argv, ppVtab, pzErr); in recoverCreate() 1571 void *pAux, in recoverConnect() argument 1577 return recoverInit(db, pAux, argc, argv, ppVtab, pzErr); in recoverConnect() 2080 void *pAux, /* unused */ in recoverInit() argument
|
D | test_wholenumber.c | 43 void *pAux, in wholenumberConnect() argument
|
D | vdbeaux.c | 2380 struct AuxData *pAux = &pVdbeFunc->apAux[i]; in sqlite3VdbeDeleteAuxData() local 2381 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){ in sqlite3VdbeDeleteAuxData() 2382 if( pAux->xDelete ){ in sqlite3VdbeDeleteAuxData() 2383 pAux->xDelete(pAux->pAux); in sqlite3VdbeDeleteAuxData() 2385 pAux->pAux = 0; in sqlite3VdbeDeleteAuxData()
|
D | test_schema.c | 85 void *pAux, in schemaCreate() argument
|
D | vdbeInt.h | 226 void *pAux; /* Aux data for the i-th argument */ member
|
D | test_stat.c | 143 void *pAux, in statConnect() argument
|
D | test_fuzzer.c | 189 void *pAux, in fuzzerConnect() argument
|
D | test_osinst.c | 856 void *pAux, in vlogConnect() argument
|
D | sqliteInt.h | 1086 void *pAux; /* pAux passed to create_module() */ member
|
D | main.c | 770 pMod->xDestroy(pMod->pAux); in sqlite3_close()
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3.c | 823 void *pAux, /* Hash table containing tokenizers */ in fts3InitVtab() argument 829 Fts3Hash *pHash = (Fts3Hash *)pAux; in fts3InitVtab() 1025 void *pAux, /* Pointer to tokenizer hash table */ in fts3ConnectMethod() argument 1031 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr); in fts3ConnectMethod() 1035 void *pAux, /* Pointer to tokenizer hash table */ in fts3CreateMethod() argument 1041 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr); in fts3CreateMethod()
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
D | rtree.c | 716 void *pAux, in rtreeCreate() argument 721 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1); in rtreeCreate() 729 void *pAux, in rtreeConnect() argument 734 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0); in rtreeConnect() 2986 void *pAux, /* One of the RTREE_COORD_* constants */ in rtreeInit() argument 2996 int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32); in rtreeInit()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.h | 4587 int (*xCreate)(sqlite3*, void *pAux, 4590 int (*xConnect)(sqlite3*, void *pAux,
|
D | sqlite3.c | 5130 int (*xCreate)(sqlite3*, void *pAux, 5133 int (*xConnect)(sqlite3*, void *pAux, 9431 void *pAux; /* pAux passed to create_module() */ member 12440 void *pAux; /* Aux data for the i-th argument */ member 59505 struct AuxData *pAux = &pVdbeFunc->apAux[i]; 59506 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){ 59507 if( pAux->xDelete ){ 59508 pAux->xDelete(pAux->pAux); 59510 pAux->pAux = 0; 60929 return pVdbeFunc->apAux[iArg].pAux; [all …]
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
D | fulltext.c | 855 static int fulltextConnect(sqlite3 *db, void *pAux, int argc, char **argv, in fulltextConnect() argument 901 static int fulltextCreate(sqlite3 *db, void *pAux, int argc, char **argv, in fulltextCreate() argument 937 return fulltextConnect(db, pAux, argc, argv, ppVTab); in fulltextCreate()
|
D | fts1.c | 2006 void *pAux, in fulltextConnect() argument 2055 static int fulltextCreate(sqlite3 *db, void *pAux, in fulltextCreate() argument
|
/external/sqlite/dist/ |
D | sqlite3.h | 5306 int (*xCreate)(sqlite3*, void *pAux, 5309 int (*xConnect)(sqlite3*, void *pAux,
|
/external/sqlite/dist/orig/ |
D | sqlite3.h | 5306 int (*xCreate)(sqlite3*, void *pAux, 5309 int (*xConnect)(sqlite3*, void *pAux,
|
/external/chromium_org/third_party/sqlite/ |
D | recover.patch | 1601 + void *pAux, 1607 + return recoverInit(db, pAux, argc, argv, ppVtab, pzErr); 1613 + void *pAux, 1619 + return recoverInit(db, pAux, argc, argv, ppVtab, pzErr); 2110 + void *pAux, /* unused */
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
D | fts2.c | 3062 void *pAux, in fulltextConnect() argument 3071 rc = constructVtab(db, (fts2Hash *)pAux, &spec, ppVTab, pzErr); in fulltextConnect() 3082 static int fulltextCreate(sqlite3 *db, void *pAux, in fulltextCreate() argument 3117 rc = constructVtab(db, (fts2Hash *)pAux, &spec, ppVTab, pzErr); in fulltextCreate()
|