Home | History | Annotate | Download | only in orig

Lines Matching defs:onoff

2195 SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff);
5414 ** ^Call the sqlite3_enable_load_extension() routine with onoff==1
5415 ** to turn extension loading on and call it with onoff==0 to turn
5418 SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
91910 SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
91912 if( onoff ){
113020 int onoff = va_arg(ap, int);
113023 if( onoff>0 ){
113025 }else if( onoff==0 ){
115131 SQLITE_API int sqlite3_extended_result_codes(sqlite3 *db, int onoff){
115133 db->errMask = onoff ? 0xffffffff : 0xff;
115377 /* sqlite3_test_control(SQLITE_TESTCTRL_LOCALTIME_FAULT, int onoff);
115379 ** If parameter onoff is non-zero, configure the wrappers so that all
115380 ** subsequent calls to localtime() and variants fail. If onoff is zero,