Home | History | Annotate | Download | only in dist

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);
91921 SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
91923 if( onoff ){
113031 int onoff = va_arg(ap, int);
113034 if( onoff>0 ){
113036 }else if( onoff==0 ){
115157 SQLITE_API int sqlite3_extended_result_codes(sqlite3 *db, int onoff){
115159 db->errMask = onoff ? 0xffffffff : 0xff;
115403 /* sqlite3_test_control(SQLITE_TESTCTRL_LOCALTIME_FAULT, int onoff);
115405 ** If parameter onoff is non-zero, configure the wrappers so that all
115406 ** subsequent calls to localtime() and variants fail. If onoff is zero,