Lines Matching refs:pAux

5500   int (*xCreate)(sqlite3*, void *pAux,
5503 int (*xConnect)(sqlite3*, void *pAux,
9999 void *pAux; /* pAux passed to create_module() */
13063 void *pAux; /* Aux data for the i-th argument */
61962 struct AuxData *pAux = &pVdbeFunc->apAux[i];
61963 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){
61964 if( pAux->xDelete ){
61965 pAux->xDelete(pAux->pAux);
61967 pAux->pAux = 0;
63378 return pVdbeFunc->apAux[iArg].pAux;
63389 void *pAux,
63412 if( pAuxData->pAux && pAuxData->xDelete ){
63413 pAuxData->xDelete(pAuxData->pAux);
63415 pAuxData->pAux = pAux;
63421 xDelete(pAux);
101537 void *pAux, /* Context pointer for xCreate/xConnect */
101552 pMod->pAux = pAux;
101557 pDel->xDestroy(pDel->pAux);
101564 xDestroy(pAux);
101579 void *pAux /* Context pointer for xCreate/xConnect */
101581 return createModule(db, zName, pModule, pAux, 0);
101591 void *pAux, /* Context pointer for xCreate/xConnect */
101594 return createModule(db, zName, pModule, pAux, xDestroy);
101975 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
113290 pMod->xDestroy(pMod->pAux);
117713 void *pAux, /* Hash table containing tokenizers */
117719 Fts3Hash *pHash = (Fts3Hash *)pAux;
118037 void *pAux, /* Pointer to tokenizer hash table */
118043 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
118047 void *pAux, /* Pointer to tokenizer hash table */
118053 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
130875 void *pAux,
130880 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
130888 void *pAux,
130893 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
133190 void *pAux, /* One of the RTREE_COORD_* constants */
133200 int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32);