Home | History | Annotate | Download | only in dist

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 */
110593 u8 needFree; /* True if sqlite3_free(idxStr) is needed */
110596 char *idxStr; /* Index identifier string */
112449 sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr);
112761 ** caller to eventually free p->idxStr if p->needToFreeIdxStr indicates
113779 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
113891 pLoop->u.vtab.idxStr,
114711 if( p->u.vtab.idxStr ){
114713 p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask);
114763 sqlite3_free(p->u.vtab.idxStr);
114765 p->u.vtab.idxStr = 0;
115787 if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr);
115788 pIdxInfo->idxStr = 0;
115848 pNew->u.vtab.idxStr = pIdxInfo->idxStr;
115856 sqlite3_free(pNew->u.vtab.idxStr);
115863 if( pIdxInfo->needToFreeIdxStr ) sqlite3_free(pIdxInfo->idxStr);
128455 pInfo->idxStr = "DESC";
128457 pInfo->idxStr = "ASC";
129938 const char *idxStr, /* Unused */
129954 UNUSED_PARAMETER(idxStr);
129979 if( idxStr ){
129980 pCsr->bDesc = (idxStr[0]=='D');
133030 const char *idxStr, /* Unused */
133047 UNUSED_PARAMETER(idxStr);
133049 assert( idxStr==0 );
136610 const char *idxStr, /* Unused */
136617 UNUSED_PARAMETER(idxStr);
146201 int idxNum, const char *idxStr,
146252 assert( (idxStr==0 && argc==0)
146253 || (idxStr && (int)strlen(idxStr)==argc*2) );
146256 p->op = idxStr[ii*2];
146257 p->iCoord = idxStr[ii*2+1]-'0';
146318 ** idxNum idxStr Strategy
146324 ** If strategy 1 is used, then idxStr is not meaningful. If strategy
146325 ** 2 is used, idxStr is formatted to contain 2 bytes for each
146326 ** constraint used. The first two bytes of idxStr correspond to
146330 ** The first of each pair of bytes in idxStr identifies the constraint
146357 assert( pIdxInfo->idxStr==0 );
146405 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){