Home | History | Annotate | Download | only in dist

Lines Matching refs:pAux

4675   int (*xCreate)(sqlite3*, void *pAux,
4678 int (*xConnect)(sqlite3*, void *pAux,
8563 void *pAux; /* pAux passed to create_module() */
17736 void *pAux; /* Aux data for the i-th argument */
49717 struct AuxData *pAux = &pVdbeFunc->apAux[i];
49718 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){
49719 if( pAux->xDelete ){
49720 pAux->xDelete(pAux->pAux);
49722 pAux->pAux = 0;
51066 return pVdbeFunc->apAux[iArg].pAux;
51077 void *pAux,
51100 if( pAuxData->pAux && pAuxData->xDelete ){
51101 pAuxData->xDelete(pAuxData->pAux);
51103 pAuxData->pAux = pAux;
51109 xDelete(pAux);
85827 void *pAux, /* Context pointer for xCreate/xConnect */
85842 pMod->pAux = pAux;
85846 pDel->xDestroy(pDel->pAux);
85854 xDestroy(pAux);
85869 void *pAux /* Context pointer for xCreate/xConnect */
85871 return createModule(db, zName, pModule, pAux, 0);
85881 void *pAux, /* Context pointer for xCreate/xConnect */
85884 return createModule(db, zName, pModule, pAux, xDestroy);
86263 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
96129 pMod->xDestroy(pMod->pAux);
99261 void *pAux, /* Hash table containing tokenizers */
99267 Fts3Hash *pHash = (Fts3Hash *)pAux;
99390 void *pAux, /* Pointer to tokenizer hash table */
99396 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
99400 void *pAux, /* Pointer to tokenizer hash table */
99406 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
108115 void *pAux,
108120 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
108128 void *pAux,
108133 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
110161 void *pAux, /* One of the RTREE_COORD_* constants */
110172 int eCoordType = (int)pAux;