Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_vtab_nochange

6416 ** because it queried [sqlite3_vtab_nochange()] and found that the column
10614 ** If the sqlite3_vtab_nochange(X) routine is called within the [xColumn]
10622 ** If the [xColumn] method calls sqlite3_vtab_nochange() and finds that
10629 ** The sqlite3_vtab_nochange() routine is an optimization. Virtual table
10631 ** sqlite3_vtab_nochange() interface were to always return false. In the
10632 ** current implementation, the sqlite3_vtab_nochange() interface does always
10635 SQLITE_API int sqlite3_vtab_nochange(sqlite3_context*);
94536 SQLITE_API int sqlite3_vtab_nochange(sqlite3_context *p){
104994 ** value is OPFLAG_NOCHNG. This will cause the sqlite3_vtab_nochange()
142866 #define sqlite3_vtab_nochange sqlite3_api->vtab_nochange
143379 sqlite3_vtab_nochange,
160776 sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG);/* For sqlite3_vtab_nochange() */
223955 if( i==0 && sqlite3_vtab_nochange(ctx) ) return SQLITE_OK;
262708 if( !sqlite3_vtab_nochange(pCtx) && pConfig->eContent!=FTS5_CONTENT_NONE ){