Lines Matching refs:error
64 #error "SIGEV_THREAD_ID must not share bit with other SIGEV values!"
477 int error, new_timer_id; in do_timer_create() local
492 error = new_timer_id; in do_timer_create()
507 error = -EINVAL; in do_timer_create()
526 error = -EFAULT; in do_timer_create()
530 error = kc->timer_create(new_timer); in do_timer_create()
531 if (error) in do_timer_create()
548 return error; in do_timer_create()
883 int error = 0; in do_timer_settime() local
899 error = -EINVAL; in do_timer_settime()
901 error = kc->timer_set(timr, tmr_flags, new_spec64, old_spec64); in do_timer_settime()
903 if (error == TIMER_RETRY) { in do_timer_settime()
912 return error; in do_timer_settime()
922 int error = 0; in SYSCALL_DEFINE4() local
930 error = do_timer_settime(timer_id, flags, &new_spec, rtn); in SYSCALL_DEFINE4()
931 if (!error && old_setting) { in SYSCALL_DEFINE4()
933 error = -EFAULT; in SYSCALL_DEFINE4()
935 return error; in SYSCALL_DEFINE4()
945 int error = 0; in SYSCALL_DEFINE4() local
952 error = do_timer_settime(timer_id, flags, &new_spec, rtn); in SYSCALL_DEFINE4()
953 if (!error && old) { in SYSCALL_DEFINE4()
955 error = -EFAULT; in SYSCALL_DEFINE4()
957 return error; in SYSCALL_DEFINE4()
1065 int error; in SYSCALL_DEFINE2() local
1070 error = kc->clock_get(which_clock, &kernel_tp); in SYSCALL_DEFINE2()
1072 if (!error && put_timespec64(&kernel_tp, tp)) in SYSCALL_DEFINE2()
1073 error = -EFAULT; in SYSCALL_DEFINE2()
1075 return error; in SYSCALL_DEFINE2()
1112 int error; in SYSCALL_DEFINE2() local
1117 error = kc->clock_getres(which_clock, &rtn_tp); in SYSCALL_DEFINE2()
1119 if (!error && tp && put_timespec64(&rtn_tp, tp)) in SYSCALL_DEFINE2()
1120 error = -EFAULT; in SYSCALL_DEFINE2()
1122 return error; in SYSCALL_DEFINE2()