Lines Matching defs:pAux

5737   int (*xCreate)(sqlite3*, void *pAux,
5740 int (*xConnect)(sqlite3*, void *pAux,
10341 void *pAux; /* pAux passed to create_module() */
13490 void *pAux; /* Aux data for the i-th argument */
38153 struct RowSetEntry *pAux, *pTail;
38154 rowSetTreeToList(pTree->pLeft, &pAux, &pTail);
38156 p = rowSetEntryMerge(pAux, p);
62383 struct AuxData *pAux = &pVdbeFunc->apAux[i];
62384 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){
62385 if( pAux->xDelete ){
62386 pAux->xDelete(pAux->pAux);
62388 pAux->pAux = 0;
63791 return pVdbeFunc->apAux[iArg].pAux;
63802 void *pAux,
63825 if( pAuxData->pAux && pAuxData->xDelete ){
63826 pAuxData->xDelete(pAuxData->pAux);
63828 pAuxData->pAux = pAux;
63834 xDelete(pAux);
103309 void *pAux, /* Context pointer for xCreate/xConnect */
103328 pMod->pAux = pAux;
103339 if( rc!=SQLITE_OK && xDestroy ) xDestroy(pAux);
103353 void *pAux /* Context pointer for xCreate/xConnect */
103355 return createModule(db, zName, pModule, pAux, 0);
103365 void *pAux, /* Context pointer for xCreate/xConnect */
103368 return createModule(db, zName, pModule, pAux, xDestroy);
103779 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
115749 pMod->xDestroy(pMod->pAux);
120348 void *pAux, /* Hash table containing tokenizers */
120354 Fts3Hash *pHash = (Fts3Hash *)pAux;
120684 void *pAux, /* Pointer to tokenizer hash table */
120690 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
120694 void *pAux, /* Pointer to tokenizer hash table */
120700 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
137061 void *pAux,
137066 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
137074 void *pAux,
137079 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
139422 void *pAux, /* One of the RTREE_COORD_* constants */
139432 int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32);