/src/sys/rump/librump/rumpkern/ |
ltsleep.c | 66 struct ltsleeper lts; local in function:sleeper 70 lts.id = ident; 72 lts.iskwait = true; 73 cv_init(<s.kcv, "mtsleep"); 75 lts.iskwait = false; 76 rumpuser_cv_init(<s.ucv); 79 LIST_INSERT_HEAD(&sleepers, <s, entries); 83 rv = cv_timedwait(<s.kcv, &qlock, timo); 91 rv = rumpuser_cv_timedwait(lts.ucv, rump_giantlock, 100 cv_wait(<s.kcv, &qlock) [all...] |
/src/sys/compat/linux/common/ |
linux_mqueue.c | 128 struct linux_timespec lts; local in function:linux_sys_mq_timedsend 134 error = copyin(SCARG(uap, abs_timeout), <s, sizeof(lts)); 137 linux_to_native_timespec(&ts, <s); 159 struct linux_timespec lts; local in function:linux_sys_mq_timedreceive 166 error = copyin(SCARG(uap, abs_timeout), <s, sizeof(lts)); 169 linux_to_native_timespec(&ts, <s);
|
linux_time.c | 224 struct linux_timespec lts; local in function:linux_sys_clock_gettime 234 native_to_linux_timespec(<s, &ts); 235 return copyout(<s, SCARG(uap, tp), sizeof lts); 246 struct linux_timespec lts; local in function:linux_sys_clock_settime 254 error = copyin(SCARG(uap, tp), <s, sizeof lts); 258 linux_to_native_timespec(&ts, <s); 271 struct linux_timespec lts; local in function:linux_sys_clock_getres 283 native_to_linux_timespec(<s, &ts) [all...] |
linux_signal.c | 594 struct linux_timespec lts; local in function:fetchts 596 if ((error = copyin(u, <s, sizeof(lts))) != 0) 599 linux_to_native_timespec(s, <s);
|
linux_socket.c | 1913 struct linux_timespec lts; local in function:linux_sys_recvmmsg 1917 error = copyin(SCARG(uap, timeout), <s, sizeof(lts)); 1919 ts.tv_sec = lts.tv_sec; 1920 ts.tv_nsec = lts.tv_nsec;
|
linux_misc.c | 1045 struct linux_timespec lts; local in function:linux_sys_pselect6 1066 error = copyin(SCARG(uap, timeout), <s, sizeof(lts)); 1069 linux_to_native_timespec(&uts, <s); 1100 native_to_linux_timespec(<s, &uts); 1101 error = copyout(<s, SCARG(uap, timeout), sizeof(lts)); 1117 struct linux_timespec lts0, *lts; local in function:linux_sys_ppoll 1123 lts = SCARG(uap, timeout); 1124 if (lts) { 1647 struct linux_timespec lts[2]; local in function:linux_sys_utimensat 1675 struct linux_timespec lts; local in function:linux_sys_futex 1953 struct linux_timespec lts, *ltsp; local in function:linux_sys_epoll_pwait 1985 struct linux_timespec lts, *ltsp; local in function:linux_sys_epoll_pwait2 [all...] |
/src/sys/compat/linux32/common/ |
linux32_misc.c | 245 struct linux32_timespec lts; local in function:linux32_sys_futex 259 <s, sizeof(lts))) != 0) { 262 linux32_to_native_timespec(&ts, <s); 329 struct linux32_timespec lts0, *lts; local in function:linux32_sys_ppoll 335 lts = SCARG_P32(uap, timeout); 336 if (lts) { 337 if ((error = copyin(lts, <s0, sizeof(lts0))) != 0)
|
linux32_time.c | 314 struct linux32_timespec lts; local in function:linux32_sys_clock_settime 321 if ((error = copyin(SCARG_P32(uap, tp), <s, sizeof lts))) 324 linux32_to_native_timespec(&ts, <s); 339 struct linux32_timespec lts; local in function:linux32_sys_clock_gettime 349 native_to_linux32_timespec(<s, &ts); 350 return copyout(<s, SCARG_P32(uap, tp), sizeof lts); 364 struct linux32_timespec lts; local in function:linux32_sys_clock_getres 374 native_to_linux32_timespec(<s, &ts) [all...] |
linux32_unistd.c | 243 struct linux32_timespec lts; local in function:linux32_sys_pselect6 265 error = copyin(p, <s, sizeof(lts)); 268 linux32_to_native_timespec(&uts, <s); 299 native_to_linux32_timespec(<s, &uts); 300 error = copyout(<s, SCARG_P32(uap, timeout), sizeof(lts)); 507 struct linux32_timespec lts[2]; local in function:linux32_sys_utimensat 511 error = copyin(SCARG_P32(uap, times), <s, sizeof(lts)); [all...] |
linux32_signal.c | 469 struct linux32_timespec lts; local in function:fetchts 471 if ((error = copyin(u, <s, sizeof(lts))) != 0) 474 linux32_to_native_timespec(s, <s);
|
/src/usr.bin/xlint/lint1/ |
tree.c | 2950 const char *lts, *rts; local in function:check_assign_void_pointer 2951 *(lst == FUNC ? <s : &rts) = "function pointer"; 2952 *(lst == VOID ? <s : &rts) = "'void *'"; 2958 warning(303, rts, lts); 2962 warning(304, rts, lts, arg); 2966 warning(305, rts, lts, op_name(op));
|