Searched defs:pAux (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_intarray.c81 void *pAux, /* clientdata for the module */
92 pVtab->pContent = (sqlite3_intarray*)pAux;
79 intarrayCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dtest_schema.c85 void *pAux,
83 schemaCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dtest_tclvar.c50 void *pAux,
61 pVtab->interp = (Tcl_Interp *)pAux;
48 tclvarConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dtest_wholenumber.c43 void *pAux,
41 wholenumberConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dtest_fuzzer.c189 void *pAux,
187 fuzzerConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dtest_stat.c143 void *pAux,
141 statConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dvtab.c26 void *pAux, /* Context pointer for xCreate/xConnect */
41 pMod->pAux = pAux;
45 pDel->xDestroy(pDel->pAux);
53 xDestroy(pAux);
68 void *pAux /* Context pointer for xCreate/xConnect */
70 return createModule(db, zName, pModule, pAux, 0);
80 void *pAux, /* Context pointer for xCreate/xConnect */
83 return createModule(db, zName, pModule, pAux, xDestroy);
461 rc = xConstruct(db, pMod->pAux, nAr
22 createModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
76 sqlite3_create_module_v2( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
[all...]
H A Dtest8.c396 void *pAux,
410 pVtab->interp = ((EchoModule *)pAux)->interp;
461 void *pAux,
467 appendToEchoModule(((EchoModule *)pAux)->interp, "xCreate");
468 rc = echoConstructor(db, pAux, argc, argv, ppVtab, pzErr);
509 void *pAux,
514 appendToEchoModule(((EchoModule *)pAux)->interp, "xConnect");
515 return echoConstructor(db, pAux, argc, argv, ppVtab, pzErr);
394 echoConstructor( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
459 echoCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
507 echoConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A DvdbeInt.h226 void *pAux; /* Aux data for the i-th argument */ member in struct:VdbeFunc::AuxData
H A Dvdbeapi.c595 return pVdbeFunc->apAux[iArg].pAux;
606 void *pAux,
629 if( pAuxData->pAux && pAuxData->xDelete ){
630 pAuxData->xDelete(pAuxData->pAux);
632 pAuxData->pAux = pAux;
638 xDelete(pAux);
603 sqlite3_set_auxdata( sqlite3_context *pCtx, int iArg, void *pAux, void (*xDelete)(void*) ) argument
H A Drecover.c1559 void *pAux,
1565 return recoverInit(db, pAux, argc, argv, ppVtab, pzErr);
1571 void *pAux,
1577 return recoverInit(db, pAux, argc, argv, ppVtab, pzErr);
2080 void *pAux, /* unused */
1557 recoverCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
1569 recoverConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
2078 recoverInit( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dtest_osinst.c856 void *pAux,
854 vlogConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
H A Dvdbeaux.c2380 struct AuxData *pAux = &pVdbeFunc->apAux[i]; local
2381 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){
2382 if( pAux->xDelete ){
2383 pAux->xDelete(pAux->pAux);
2385 pAux->pAux = 0;
H A DsqliteInt.h1086 void *pAux; /* pAux passed to create_module() */ member in struct:Module
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c855 static int fulltextConnect(sqlite3 *db, void *pAux, int argc, char **argv, argument
901 static int fulltextCreate(sqlite3 *db, void *pAux, int argc, char **argv, argument
937 return fulltextConnect(db, pAux, argc, argv, ppVTab);
H A Dfts1.c2006 void *pAux,
2055 static int fulltextCreate(sqlite3 *db, void *pAux, argument
2004 fulltextConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVTab, char **pzErr ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c823 void *pAux, /* Hash table containing tokenizers */
829 Fts3Hash *pHash = (Fts3Hash *)pAux;
1025 void *pAux, /* Pointer to tokenizer hash table */
1031 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
1035 void *pAux, /* Pointer to tokenizer hash table */
1041 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
820 fts3InitVtab( int isCreate, sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVTab, char **pzErr ) argument
1023 fts3ConnectMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
1033 fts3CreateMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c716 void *pAux,
721 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
729 void *pAux,
734 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
2986 void *pAux, /* One of the RTREE_COORD_* constants */
2996 int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32);
714 rtreeCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
727 rtreeConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
2984 rtreeInit( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr, int isCreate ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c3062 void *pAux,
3071 rc = constructVtab(db, (fts2Hash *)pAux, &spec, ppVTab, pzErr);
3082 static int fulltextCreate(sqlite3 *db, void *pAux, argument
3117 rc = constructVtab(db, (fts2Hash *)pAux, &spec, ppVTab, pzErr);
3060 fulltextConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVTab, char **pzErr ) argument
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c5130 int (*xCreate)(sqlite3*, void *pAux,
5133 int (*xConnect)(sqlite3*, void *pAux,
9431 void *pAux; /* pAux passed to create_module() */ member in struct:Module
12440 void *pAux; /* Aux data for the i-th argument */ member in struct:VdbeFunc::AuxData
59505 struct AuxData *pAux = &pVdbeFunc->apAux[i]; local
60937 sqlite3_set_auxdata( sqlite3_context *pCtx, int iArg, void *pAux, void (*xDelete)(void*) ) argument
96734 createModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
96788 sqlite3_create_module_v2( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
111797 recoverCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
111809 recoverConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
112318 recoverInit( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
113881 fts3InitVtab( int isCreate, sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVTab, char **pzErr ) argument
114084 fts3ConnectMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
114094 fts3CreateMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
124982 rtreeCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
124995 rtreeConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
127252 rtreeInit( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr, int isCreate ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c5421 int (*xCreate)(sqlite3*, void *pAux,
5424 int (*xConnect)(sqlite3*, void *pAux,
10766 void *pAux; /* pAux passed to create_module() */ member in struct:Module
14108 void *pAux; /* Aux data pointer */ member in struct:AuxData
40067 struct RowSetEntry *pAux, *pTail; local
64860 AuxData *pAux = *pp; local
66900 sqlite3_set_auxdata( sqlite3_context *pCtx, int iArg, void *pAux, void (*xDelete)(void*) ) argument
109364 createModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
109420 sqlite3_create_module_v2( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
127909 fts3InitVtab( int isCreate, sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVTab, char **pzErr ) argument
128286 fts3ConnectMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
128296 fts3CreateMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
145405 rtreeCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
145418 rtreeConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
147797 rtreeInit( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr, int isCreate ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c5421 int (*xCreate)(sqlite3*, void *pAux,
5424 int (*xConnect)(sqlite3*, void *pAux,
10766 void *pAux; /* pAux passed to create_module() */ member in struct:Module
14108 void *pAux; /* Aux data pointer */ member in struct:AuxData
40087 struct RowSetEntry *pAux, *pTail; local
64880 AuxData *pAux = *pp; local
66920 sqlite3_set_auxdata( sqlite3_context *pCtx, int iArg, void *pAux, void (*xDelete)(void*) ) argument
109384 createModule( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
109440 sqlite3_create_module_v2( sqlite3 *db, const char *zName, const sqlite3_module *pModule, void *pAux, void (*xDestroy)(void *) ) argument
127929 fts3InitVtab( int isCreate, sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVTab, char **pzErr ) argument
128306 fts3ConnectMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
128316 fts3CreateMethod( sqlite3 *db, void *pAux, int argc, const char * const *argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
145437 rtreeCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
145450 rtreeConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ) argument
147829 rtreeInit( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr, int isCreate ) argument
[all...]

Completed in 646 milliseconds