Home | History | Annotate | Download | only in dist

Lines Matching defs:onoff

2114 SQLITE_API int SQLITE_STDCALL sqlite3_extended_result_codes(sqlite3*, int onoff);
5662 ** ^Call the sqlite3_enable_load_extension() routine with onoff==1
5663 ** to turn extension loading on and call it with onoff==0 to turn
5666 SQLITE_API int SQLITE_STDCALL sqlite3_enable_load_extension(sqlite3 *db, int onoff);
105181 SQLITE_API int SQLITE_STDCALL sqlite3_enable_load_extension(sqlite3 *db, int onoff){
105183 if( onoff ){
131594 int onoff = va_arg(ap, int);
131597 if( onoff>0 ){
131599 }else if( onoff==0 ){
134163 SQLITE_API int SQLITE_STDCALL sqlite3_extended_result_codes(sqlite3 *db, int onoff){
134168 db->errMask = onoff ? 0xffffffff : 0xff;
134454 /* sqlite3_test_control(SQLITE_TESTCTRL_LOCALTIME_FAULT, int onoff);
134456 ** If parameter onoff is non-zero, configure the wrappers so that all
134457 ** subsequent calls to localtime() and variants fail. If onoff is zero,
134510 /* sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, db, dbName, onOff, tnum);
134514 ** "temp") which will receive the imposter. "onOff" turns imposter mode on
134522 ** If onOff==0 and tnum>0 then reset the schema for all databases, causing