Lines Matching defs:pAux

5324   int (*xCreate)(sqlite3*, void *pAux,
5327 int (*xConnect)(sqlite3*, void *pAux,
9736 void *pAux; /* pAux passed to create_module() */
12775 void *pAux; /* Aux data for the i-th argument */
60723 struct AuxData *pAux = &pVdbeFunc->apAux[i];
60724 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){
60725 if( pAux->xDelete ){
60726 pAux->xDelete(pAux->pAux);
60728 pAux->pAux = 0;
62147 return pVdbeFunc->apAux[iArg].pAux;
62158 void *pAux,
62181 if( pAuxData->pAux && pAuxData->xDelete ){
62182 pAuxData->xDelete(pAuxData->pAux);
62184 pAuxData->pAux = pAux;
62190 xDelete(pAux);
99315 void *pAux, /* Context pointer for xCreate/xConnect */
99330 pMod->pAux = pAux;
99335 pDel->xDestroy(pDel->pAux);
99342 xDestroy(pAux);
99357 void *pAux /* Context pointer for xCreate/xConnect */
99359 return createModule(db, zName, pModule, pAux, 0);
99369 void *pAux, /* Context pointer for xCreate/xConnect */
99372 return createModule(db, zName, pModule, pAux, xDestroy);
99752 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
110929 pMod->xDestroy(pMod->pAux);
115140 void *pAux, /* Hash table containing tokenizers */
115146 Fts3Hash *pHash = (Fts3Hash *)pAux;
115409 void *pAux, /* Pointer to tokenizer hash table */
115415 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
115419 void *pAux, /* Pointer to tokenizer hash table */
115425 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
127745 void *pAux,
127750 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
127758 void *pAux,
127763 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
130055 void *pAux, /* One of the RTREE_COORD_* constants */
130065 int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32);