Home | History | Annotate | Download | only in orig

Lines Matching defs: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 */
61934 struct AuxData *pAux = &pVdbeFunc->apAux[i];
61935 if( (i>31 || !(mask&(((u32)1)<<i))) && pAux->pAux ){
61936 if( pAux->xDelete ){
61937 pAux->xDelete(pAux->pAux);
61939 pAux->pAux = 0;
63350 return pVdbeFunc->apAux[iArg].pAux;
63361 void *pAux,
63384 if( pAuxData->pAux && pAuxData->xDelete ){
63385 pAux);
63387 pAuxData->pAux = pAux;
63393 xDelete(pAux);
101501 void *pAux, /* Context pointer for xCreate/xConnect */
101516 pMod->pAux = pAux;
101521 pDel->xDestroy(pDel->pAux);
101528 xDestroy(pAux);
101543 void *pAux /* Context pointer for xCreate/xConnect */
101545 return createModule(db, zName, pModule, pAux, 0);
101555 void *pAux, /* Context pointer for xCreate/xConnect */
101558 return createModule(db, zName, pModule, pAux, xDestroy);
101939 rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr);
113254 pMod->xDestroy(pMod->pAux);
117677 void *pAux, /* Hash table containing tokenizers */
117683 Fts3Hash *pHash = (Fts3Hash *)pAux;
118001 void *pAux, /* Pointer to tokenizer hash table */
118007 return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr);
118011 void *pAux, /* Pointer to tokenizer hash table */
118017 return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr);
130829 void *pAux,
130834 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1);
130842 void *pAux,
130847 return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0);
133144 void *pAux
133154 int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32);