Home | History | Annotate | Download | only in dist

Lines Matching defs:onoff

3127 SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff);
7026 ** ^Call the sqlite3_enable_load_extension() routine with onoff==1
7027 ** to turn extension loading on and call it with onoff==0 to turn
7041 SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
114460 SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
114462 if( onoff ){
144191 int onoff = va_arg(ap, int);
144194 if( onoff>0 ){
144196 }else if( onoff==0 ){
146906 SQLITE_API int sqlite3_extended_result_codes(sqlite3 *db, int onoff){
146911 db->errMask = onoff ? 0xffffffff : 0xff;
147187 /* sqlite3_test_control(SQLITE_TESTCTRL_LOCALTIME_FAULT, int onoff);
147189 ** If parameter onoff is non-zero, configure the wrappers so that all
147190 ** subsequent calls to localtime() and variants fail. If onoff is zero,
147252 /* sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, db, dbName, onOff, tnum);
147256 ** "temp") which will receive the imposter. "onOff" turns imposter mode on
147264 ** If onOff==0 and tnum>0 then reset the schema for all databases, causing