HomeSort by: relevance | last modified time | path
    Searched defs:ovalue (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/compat/linux/common/
linux_time.c 390 struct itimerspec value, ovalue, *ovp = NULL; local in function:linux_sys_timer_settime
401 ovp = &ovalue;
  /src/sys/compat/linux32/common/
linux32_time.c 445 struct itimerspec value, ovalue, *ovp = NULL; local in function:linux32_sys_timer_settime
456 ovp = &ovalue;
  /src/sys/compat/netbsd32/
netbsd32_time.c 463 syscallarg(netbsd32_itimerspecp_t) ovalue;
466 struct itimerspec value, ovalue, *ovp = NULL; local in function:netbsd32___timer_settime50
474 if (SCARG_P32(uap, ovalue))
475 ovp = &ovalue;
485 return copyout(&its32, SCARG_P32(uap, ovalue), sizeof(its32));
netbsd32_compat_50.c 388 syscallarg(netbsd32_itimerspec50p_t) ovalue;
391 struct itimerspec value, ovalue, *ovp = NULL; local in function:compat_50_netbsd32_timer_settime
399 if (SCARG_P32(uap, ovalue))
400 ovp = &ovalue;
410 return copyout(&its32, SCARG_P32(uap, ovalue), sizeof(its32));
  /src/sys/compat/common/
kern_time_50.c 511 syscallarg(struct itimerspec50 *) ovalue;
514 struct itimerspec value, ovalue, *ovp = NULL; local in function:compat_50_sys_timer_settime
521 if (SCARG(uap, ovalue))
522 ovp = &ovalue;
529 itimerspec_to_itimerspec50(&ovalue, &ovalue50);
530 return copyout(&ovalue50, SCARG(uap, ovalue), sizeof(ovalue50));
  /src/usr.bin/videoctl/
videoctl.c 638 int32_t ovalue; local in function:video_set_ctrl
647 ovalue = ctrl.value;
657 printf("ctrl.%s: %d -> %d\n", ctrlname, ovalue, ctrl.value);
659 printf("ctrl.%08x: %d -> %d\n", ctrl.id, ovalue, ctrl.value);
  /src/sys/kern/
kern_time.c 1361 syscallarg(struct itimerspec *) ovalue;
1364 struct itimerspec value, ovalue, *ovp = NULL; local in function:sys___timer_settime50
1370 if (SCARG(uap, ovalue))
1371 ovp = &ovalue;
1378 return copyout(&ovalue, SCARG(uap, ovalue),
1385 struct itimerspec *ovalue, int flags, struct proc *p)
1409 if (ovalue)
1410 itimer_gettime(it, ovalue);

Completed in 16 milliseconds