Lines Matching refs:idxStr
7147 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7285 char *idxStr; /* String, possibly obtained from sqlite3_malloc */ member
117673 int idxNum, const char *idxStr,
117684 UNUSED_PARAMETER(idxStr);
128778 char *idxStr; /* Index identifier string */
129390 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
130451 pLoop->u.vtab.idxStr,
133526 sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr);
134701 if( p->u.vtab.idxStr ){
134703 p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask);
134742 sqlite3_free(p->u.vtab.idxStr);
134744 p->u.vtab.idxStr = 0;
135996 pIdxInfo->idxStr = 0;
136058 pNew->u.vtab.idxStr = pIdxInfo->idxStr;
136074 sqlite3_free(pNew->u.vtab.idxStr);
136242 if( p->needToFreeIdxStr ) sqlite3_free(p->idxStr);
150472 pInfo->idxStr = "DESC";
150474 pInfo->idxStr = "ASC";
152013 const char *idxStr, /* Unused */
152029 UNUSED_PARAMETER(idxStr);
152051 if( idxStr ){
152052 pCsr->bDesc = (idxStr[0]=='D');
155152 const char *idxStr, /* Unused */
155169 UNUSED_PARAMETER(idxStr);
155171 assert( idxStr==0 );
158795 const char *idxStr, /* Unused */
158802 UNUSED_PARAMETER(idxStr);
168759 int idxNum, const char *idxStr,
168810 assert( (idxStr==0 && argc==0)
168811 || (idxStr && (int)strlen(idxStr)==argc*2) );
168814 p->op = idxStr[ii*2];
168815 p->iCoord = idxStr[ii*2+1]-'0';
168913 assert( pIdxInfo->idxStr==0 );
168963 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){
178254 int idxNum, const char *idxStr,
178604 int idxNum, const char *idxStr,
185823 int idxNum, const char *idxStr,
185831 UNUSED_PARAM(idxStr);
207612 int idxNum, const char *idxStr,