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

  /src/sys/rump/librump/rumpkern/
ltsleep.c 66 struct ltsleeper lts; local
70 lts.id = ident;
72 lts.iskwait = true;
73 cv_init(&lts.kcv, "mtsleep");
75 lts.iskwait = false;
76 rumpuser_cv_init(&lts.ucv);
79 LIST_INSERT_HEAD(&sleepers, &lts, entries);
83 rv = cv_timedwait(&lts.kcv, &qlock, timo);
91 rv = rumpuser_cv_timedwait(lts.ucv, rump_giantlock,
100 cv_wait(&lts.kcv, &qlock)
    [all...]
  /src/sys/compat/linux/common/
linux_mqueue.c 128 struct linux_timespec lts; local
134 error = copyin(SCARG(uap, abs_timeout), &lts, sizeof(lts));
137 linux_to_native_timespec(&ts, &lts);
159 struct linux_timespec lts; local
166 error = copyin(SCARG(uap, abs_timeout), &lts, sizeof(lts));
169 linux_to_native_timespec(&ts, &lts);
linux_ipc.c 317 struct linux_timespec lts; local
318 int error = copyin(uptr, &lts, sizeof(lts));
321 linux_to_native_timespec(kptr, &lts);
linux_time.c 224 struct linux_timespec lts; local
234 native_to_linux_timespec(&lts, &ts);
235 return copyout(&lts, SCARG(uap, tp), sizeof lts);
246 struct linux_timespec lts; local
254 error = copyin(SCARG(uap, tp), &lts, sizeof lts);
258 linux_to_native_timespec(&ts, &lts);
271 struct linux_timespec lts; local
283 native_to_linux_timespec(&lts, &ts)
    [all...]
linux_signal.c 594 struct linux_timespec lts; local
596 if ((error = copyin(u, &lts, sizeof(lts))) != 0)
599 linux_to_native_timespec(s, &lts);
linux_socket.c 1913 struct linux_timespec lts; local
1917 error = copyin(SCARG(uap, timeout), &lts, 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
1066 error = copyin(SCARG(uap, timeout), &lts, sizeof(lts));
1069 linux_to_native_timespec(&uts, &lts);
1100 native_to_linux_timespec(&lts, &uts);
1101 error = copyout(&lts, SCARG(uap, timeout), sizeof(lts));
1117 struct linux_timespec lts0, *lts; local
1123 lts = SCARG(uap, timeout);
1124 if (lts) {
1647 struct linux_timespec lts[2]; local
1675 struct linux_timespec lts; local
1953 struct linux_timespec lts, *ltsp; local
1985 struct linux_timespec lts, *ltsp; local
    [all...]
  /src/sys/compat/linux32/common/
linux32_misc.c 245 struct linux32_timespec lts; local
259 &lts, sizeof(lts))) != 0) {
262 linux32_to_native_timespec(&ts, &lts);
329 struct linux32_timespec lts0, *lts; local
335 lts = SCARG_P32(uap, timeout);
336 if (lts) {
337 if ((error = copyin(lts, &lts0, sizeof(lts0))) != 0)
linux32_time.c 314 struct linux32_timespec lts; local
321 if ((error = copyin(SCARG_P32(uap, tp), &lts, sizeof lts)))
324 linux32_to_native_timespec(&ts, &lts);
339 struct linux32_timespec lts; local
349 native_to_linux32_timespec(&lts, &ts);
350 return copyout(&lts, SCARG_P32(uap, tp), sizeof lts);
364 struct linux32_timespec lts; local
374 native_to_linux32_timespec(&lts, &ts)
    [all...]
linux32_unistd.c 243 struct linux32_timespec lts; local
265 error = copyin(p, &lts, sizeof(lts));
268 linux32_to_native_timespec(&uts, &lts);
299 native_to_linux32_timespec(&lts, &uts);
300 error = copyout(&lts, SCARG_P32(uap, timeout), sizeof(lts));
507 struct linux32_timespec lts[2]; local
511 error = copyin(SCARG_P32(uap, times), &lts, sizeof(lts));
    [all...]
linux32_signal.c 469 struct linux32_timespec lts; local
471 if ((error = copyin(u, &lts, sizeof(lts))) != 0)
474 linux32_to_native_timespec(s, &lts);
  /src/crypto/dist/ipsec-tools/src/setkey/
setkey.c 927 struct sadb_lifetime *lts, *lth, *ltc; local
945 lts = (struct sadb_lifetime *)mhp[SADB_EXT_LIFETIME_SOFT];
948 if (lts && lth && ltc) {
  /src/external/bsd/openldap/dist/libraries/libldap/
tls2.c 211 struct ldaptls lts = lo->ldo_tls_info; local
218 if ( is_server && !lts.lt_certfile && !lts.lt_keyfile &&
219 !lts.lt_cacertfile && !lts.lt_cacertdir &&
220 !lts.lt_cacert.bv_val && !lts.lt_cert.bv_val &&
221 !lts.lt_key.bv_val ) {
228 if ( lts.lt_ciphersuite ) {
229 lts.lt_ciphersuite = LDAP_STRDUP( lts.lt_ciphersuite )
    [all...]
  /src/external/mpl/dhcp/dist/server/
failover.c 2522 int lts, total, thresh, hold, panic, pass; local
2553 lts = (p->free_leases - p->backup_leases) / 2;
2558 lts = (p->backup_leases - p->free_leases) / 2;
2570 * If we need leases (so lts is negative) more than negative
2574 * sent on lts == -2 rather than right away at -1.
2579 * both -1, we want to send poolreq when lts reaches -3. So,
2580 * "-3 < -2", lts < panic.
2587 if ((sendreq != NULL) && (lts < panic)) {
2594 "backup %d lts %d max-own (+/-)%d%s",
2598 p->free_leases, p->backup_leases, lts, hold
5516 int lts; local
    [all...]
  /src/usr.bin/xlint/lint1/
tree.c 3035 const char *lts, *rts; local
3036 *(lst == FUNC ? &lts : &rts) = "function pointer";
3037 *(lst == VOID ? &lts : &rts) = "'void *'";
3043 warning(303, rts, lts);
3047 warning(304, rts, lts, arg);
3051 warning(305, rts, lts, op_name(op));

Completed in 56 milliseconds