| /src/sys/kern/ |
| tty_conf.c | 121 #define TTYLDISC_ISSTATIC(disc) \ 122 ((disc) == &termios_disc || (disc) == &ntty_disc) 124 #define TTYLDISC_HOLD(disc) \ 126 if (! TTYLDISC_ISSTATIC(disc)) { \ 127 KASSERT((disc)->l_refcnt != UINT_MAX); \ 128 (disc)->l_refcnt++; \ 132 #define TTYLDISC_RELE(disc) \ 134 if (! TTYLDISC_ISSTATIC(disc)) { \ 135 KASSERT((disc)->l_refcnt != 0); 180 struct linesw *disc; local in function:ttyldisc_lookup_locked 197 struct linesw *disc; local in function:ttyldisc_lookup 215 struct linesw *disc; local in function:ttyldisc_lookup_bynum [all...] |
| /src/sys/compat/ultrix/ |
| ultrix_ioctl.c | 487 int disc; local in function:ultrix_sys_ioctl 489 error = copyin(SCARG(&ap, data), &disc, sizeof disc); 494 if (disc == 2) 495 disc = 0; 497 if (disc) 500 return ultrix_do_ioctl(SCARG(&ap, fd), TIOCSETD, &disc, l);
|
| /src/sys/compat/sunos/ |
| sunos_ioctl.c | 434 int disc; local in function:sunos_sys_ioctl 436 if ((error = copyin(SCARG(uap, data), (void *)&disc, 437 sizeof disc)) != 0) 441 if (disc == 2) 442 disc = 0; 444 if (disc) { 449 error = (*ctl)(fp, TIOCSETD, &disc);
|
| /src/sys/compat/sunos32/ |
| sunos32_ioctl.c | 484 int disc; local in function:sunos32_sys_ioctl 486 if ((error = copyin(SCARG_P32(uap, data), &disc, 487 sizeof disc)) != 0) 491 if (disc == 2) 492 disc = 0; 494 if (disc) 497 return sunos32_do_ioctl(SCARG(&bsd_ua, fd), TIOCSETD, &disc, l);
|
| /src/sys/arch/x86/x86/ |
| hyperv.c | 209 uint64_t disc, ret, tsc; local in function:hyperv_tc64_tsc 217 "=d" (ret), "=a" (disc) :
|