Lines Matching refs:idxStr
5511 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5606 char *idxStr; /* String, possibly obtained from sqlite3_malloc */ member
104350 sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr);
104958 sqlite3_free(pIdxInfo->idxStr);
104960 pIdxInfo->idxStr = 0;
105940 sqlite3_free(p->idxStr);
106347 pVtabIdx->idxNum, pVtabIdx->idxStr);
106451 sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrBrk, iReg, pVtabIdx->idxStr,
107077 sqlite3_free(pInfo->idxStr);
118130 pInfo->idxStr = "DESC";
118132 pInfo->idxStr = "ASC";
119591 const char *idxStr, /* Unused */
119600 UNUSED_PARAMETER(idxStr);
119614 if( idxStr ){
119615 pCsr->bDesc = (idxStr[0]=='D');
122191 const char *idxStr, /* Unused */
122201 UNUSED_PARAMETER(idxStr);
122203 assert( idxStr==0 );
131394 int idxNum, const char *idxStr,
131430 assert( (idxStr==0 && argc==0)
131431 || (idxStr && (int)strlen(idxStr)==argc*2) );
131434 p->op = idxStr[ii*2];
131435 p->iCoord = idxStr[ii*2+1]-'a';
131523 assert( pIdxInfo->idxStr==0 );
131569 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){