Lines Matching defs:idxStr

5432   int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5539 char *idxStr; /* String, possibly obtained from sqlite3_malloc */
5540 int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */
110573 u8 needFree; /* True if sqlite3_free(idxStr) is needed */
110576 char *idxStr; /* Index identifier string */
112429 sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr);
112741 ** caller to eventually free p->idxStr if p->needToFreeIdxStr indicates
113759 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
113871 pLoop->u.vtab.idxStr,
114691 if( p->u.vtab.idxStr ){
114693 p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask);
114743 sqlite3_free(p->u.vtab.idxStr);
114745 p->u.vtab.idxStr = 0;
115767 if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr);
115768 pIdxInfo->idxStr = 0;
115828 pNew->u.vtab.idxStr = pIdxInfo->idxStr;
115836 sqlite3_free(pNew->u.vtab.idxStr);
115843 if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr);
128435 pInfo->idxStr = "DESC";
128437 pInfo->idxStr = "ASC";
129918 const char *idxStr, /* Unused */
129934 UNUSED_PARAMETER(idxStr);
129959 if( idxStr ){
129960 pCsr->bDesc = (idxStr[0]=='D');
132998 const char *idxStr, /* Unused */
133015 UNUSED_PARAMETER(idxStr);
133017 assert( idxStr==0 );
136578 const char *idxStr, /* Unused */
136585 UNUSED_PARAMETER(idxStr);
146169 int idxNum, const char *idxStr,
146220 assert( (idxStr==0 && argc==0)
146221 || (idxStr && (int)strlen(idxStr)==argc*2) );
146224 p->op = idxStr[ii*2];
146225 p->iCoord = idxStr[ii*2+1]-'0';
146286 ** idxNum idxStr Strategy
146292 ** If strategy 1 is used, then idxStr is not meaningful. If strategy
146293 ** 2 is used, idxStr is formatted to contain 2 bytes for each
146294 ** constraint used. The first two bytes of idxStr correspond to
146298 ** The first of each pair of bytes in idxStr identifies the constraint
146325 assert( pIdxInfo->idxStr==0 );
146373 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){