Lines Matching refs:idxStr
5335 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5430 char *idxStr; /* String, possibly obtained from sqlite3_malloc */ member
102111 sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr);
102716 sqlite3_free(pIdxInfo->idxStr);
102718 pIdxInfo->idxStr = 0;
103693 sqlite3_free(p->idxStr);
104098 pVtabIdx->idxNum, pVtabIdx->idxStr);
104202 sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrBrk, iReg, pVtabIdx->idxStr,
104791 sqlite3_free(pInfo->idxStr);
115491 pInfo->idxStr = "DESC";
115493 pInfo->idxStr = "ASC";
116867 const char *idxStr, /* Unused */
116876 UNUSED_PARAMETER(idxStr);
116890 if( idxStr ){
116891 pCsr->bDesc = (idxStr[0]=='D');
119397 const char *idxStr, /* Unused */
119407 UNUSED_PARAMETER(idxStr);
119409 assert( idxStr==0 );
128264 int idxNum, const char *idxStr,
128300 assert( (idxStr==0 && argc==0) || (int)strlen(idxStr)==argc*2 );
128303 p->op = idxStr[ii*2];
128304 p->iCoord = idxStr[ii*2+1]-'a';
128392 assert( pIdxInfo->idxStr==0 );
128438 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){