• Home
  • Raw
  • Download

Lines Matching refs:pAux

4675   int (*xCreate)(sqlite3*, void *pAux,
4678 int (*xConnect)(sqlite3*, void *pAux,
8568 void *pAux; /* pAux passed to create_module() */ member
17741 void *pAux; /* Aux data for the i-th argument */ member
49728 struct AuxData *pAux = &pVdbeFunc->apAux[i];
49729 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){
49730 if( pAux->xDelete ){
49731 pAux->xDelete(pAux->pAux);
49733 pAux->pAux = 0;
51077 return pVdbeFunc->apAux[iArg].pAux;
51088 void *pAux,
51111 if( pAuxData->pAux && pAuxData->xDelete ){
51112 pAuxData->xDelete(pAuxData->pAux);
51114 pAuxData->pAux = pAux;
51120 xDelete(pAux);
85838 void *pAux, /* Context pointer for xCreate/xConnect */
85853 pMod->pAux = pAux;
85857 pDel->xDestroy(pDel->pAux);
85865 xDestroy(pAux);
85880 void *pAux /* Context pointer for xCreate/xConnect */
85882 return createModule(db, zName, pModule, pAux, 0);
85892 void *pAux, /* Context pointer for xCreate/xConnect */
85895 return createModule(db, zName, pModule, pAux, xDestroy);
86274 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
96142 pMod->xDestroy(pMod->pAux);
99295 void *pAux, /* Hash table containing tokenizers */
99301 Fts3Hash *pHash = (Fts3Hash *)pAux;
99424 void *pAux, /* Pointer to tokenizer hash table */
99430 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
99434 void *pAux, /* Pointer to tokenizer hash table */
99440 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
108155 void *pAux,
108160 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
108168 void *pAux,
108173 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
110201 void *pAux, /* One of the RTREE_COORD_* constants */
110212 int eCoordType = (int)pAux;