Home
last modified time | relevance | path

Searched refs:sqlite3_vtab_in (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/test/
H A Dvt02.c620 sqlite3_vtab_in(pInfo,i,-1)); in sqlite3BestIndexLog()
814 if( i==4 && sqlite3_vtab_in(pInfo, isEq[4], 0) ) break; in vt02BestIndex()
820 if( isEq[4]>=0 && sqlite3_vtab_in(pInfo,isEq[4],1) ){ in vt02BestIndex()
/sqlite-3.40.0/src/
H A Dloadext.c493 sqlite3_vtab_in,
H A Dtest_bestindex.c565 Tcl_NewIntObj(sqlite3_vtab_in(pIdxInfo, iCons, bHandle)) in testBestIndexObj()
H A Dsqlite3ext.h677 #define sqlite3_vtab_in sqlite3_api->vtab_in macro
H A Dsqlite.h.in9718 ** once. The sqlite3_vtab_in() interfaces facilitates this in two ways:
9722 ** ^A call to sqlite3_vtab_in(P,N,-1) will return true (non-zero)
9725 ** sqlite3_vtab_in() with -1 in the third argument is a mechanism
9730 ** ^A call to sqlite3_vtab_in(P,N,F) with F==1 or F==0 indicates
9738 ** ^The sqlite3_vtab_in(P,N,F) interface can be invoked multiple times
9740 ** the return value from sqlite3_vtab_in(P,N,F) will always be the same
9755 ** <li><p> The last call to sqlite3_vtab_in(P,N,F) for which F was
9767 int sqlite3_vtab_in(sqlite3_index_info*, int iCons, int bHandle);
9781 ** processing use the [sqlite3_vtab_in()] interface in the
H A Dwhere.c3884 int sqlite3_vtab_in(sqlite3_index_info *pIdxInfo, int iCons, int bHandle){ in sqlite3_vtab_in() function