Lines Matching refs:idxStr
5737 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5844 char *idxStr; /* String, possibly obtained from sqlite3_malloc */ member
117018 char *idxStr; /* Index identifier string */
117584 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
118090 pLoop->u.vtab.idxStr,
120677 sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr);
121763 if( p->u.vtab.idxStr ){
121765 p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask);
121804 sqlite3_free(p->u.vtab.idxStr);
121806 p->u.vtab.idxStr = 0;
122937 if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr);
122938 pIdxInfo->idxStr = 0;
122998 pNew->u.vtab.idxStr = pIdxInfo->idxStr;
123006 sqlite3_free(pNew->u.vtab.idxStr);
123013 if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr);
136096 pInfo->idxStr = "DESC";
136098 pInfo->idxStr = "ASC";
137606 const char *idxStr, /* Unused */
137622 UNUSED_PARAMETER(idxStr);
137648 if( idxStr ){
137649 pCsr->bDesc = (idxStr[0]=='D');
140736 const char *idxStr, /* Unused */
140753 UNUSED_PARAMETER(idxStr);
140755 assert( idxStr==0 );
144331 const char *idxStr, /* Unused */
144338 UNUSED_PARAMETER(idxStr);
154116 int idxNum, const char *idxStr,
154167 assert( (idxStr==0 && argc==0)
154168 || (idxStr && (int)strlen(idxStr)==argc*2) );
154171 p->op = idxStr[ii*2];
154172 p->iCoord = idxStr[ii*2+1]-'0';
154283 assert( pIdxInfo->idxStr==0 );
154333 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){
161534 int idxNum, const char *idxStr,