| /src/bin/ksh/ |
| H A D | mkman | 12 echo "usage: $0 [-v] which-shell ksh.Man-file" 1>&2 19 sh) which=0;; 20 ksh) which=1;; 35 [ $verbose = yes ] && echo "$0: Generating $which man page (0=sh,1=ksh)..." 1>&2 37 ${AWK} 'BEGIN { ksh = '$which'; pr = 1 }
|
| /src/usr.bin/whereis/ |
| H A D | Makefile | 5 MAN= whereis.1 which.1 6 LINKS= ${BINDIR}/whereis ${BINDIR}/which
|
| /src/games/sail/ |
| H A D | display.h | 34 void display_set_obp(int which, bool show); 35 void display_set_dbp(int which, bool show);
|
| /src/sys/dev/wscons/ |
| H A D | wsbelldata.h | 40 (dstp)->pitch = ((srcp)->which & WSKBD_BELL_DOPITCH) ? \ 42 (dstp)->period = ((srcp)->which & WSKBD_BELL_DOPERIOD) ? \ 44 (dstp)->volume = ((srcp)->which & WSKBD_BELL_DOVOLUME) ? \ 46 (dstp)->which = WSKBD_BELL_DOALL; \
|
| /src/sys/compat/linux32/common/ |
| H A D | linux32_resource.c | 80 syscallarg(int) which; 84 int which; local in function:linux32_sys_getrlimit 86 which = linux_to_bsd_limit(SCARG(uap, which)); 87 if (which < 0) 88 return -which; 91 bsd_to_linux_rlimit(&orl, &l->l_proc->p_rlimit[which]); 100 syscallarg(int) which; 106 int which; local in function:linux32_sys_setrlimit 111 which 137 int which; local in function:linux32_sys_prlimit64 [all...] |
| /src/sbin/wsconsctl/ |
| H A D | keyboard.c | 124 bell.which = 0; 126 bell.which |= WSKBD_BELL_DOPITCH; 128 bell.which |= WSKBD_BELL_DOPERIOD; 130 bell.which |= WSKBD_BELL_DOVOLUME; 131 if (bell.which != 0 && ioctl(fd, WSKBDIO_GETBELL, &bell) < 0) 134 dfbell.which = 0; 136 dfbell.which |= WSKBD_BELL_DOPITCH; 138 dfbell.which |= WSKBD_BELL_DOPERIOD; 140 dfbell.which |= WSKBD_BELL_DOVOLUME; 141 if (dfbell.which ! [all...] |
| /src/sys/compat/netbsd32/ |
| H A D | netbsd32_rlimit.c | 49 fixlimit(int which, struct rlimit *alim) argument 51 switch (which) { 74 syscallarg(int) which; 77 int which = SCARG(uap, which); local in function:netbsd32_getrlimit 80 if ((u_int)which >= RLIM_NLIMITS) 83 alim = l->l_proc->p_rlimit[which]; 85 fixlimit(which, &alim); 95 syscallarg(int) which; 98 int which local in function:netbsd32_setrlimit [all...] |
| /src/sys/arch/arm/xscale/ |
| H A D | i80312_gpio.c | 59 i80312_gpio_set_direction(uint8_t which, uint8_t val) argument 63 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val; 74 i80312_gpio_set_val(uint8_t which, uint8_t val) argument 78 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
|
| H A D | i80321_gpio.c | 56 i80321_gpio_set_direction(uint8_t which, uint8_t val) argument 60 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val; 70 i80321_gpio_set_val(uint8_t which, uint8_t val) argument 74 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
|
| /src/sys/compat/common/ |
| H A D | kern_resource_43.c | 71 syscallarg(int) which; 75 int which = SCARG(uap, which); local in function:compat_43_sys_getrlimit 78 if ((u_int)which >= RLIM_NLIMITS) 81 olim.rlim_cur = p->p_rlimit[which].rlim_cur; 84 olim.rlim_max = p->p_rlimit[which].rlim_max; 95 syscallarg(int) which; 98 int which = SCARG(uap, which); local in function:compat_43_sys_setrlimit 108 return (dosetrlimit(l, l->l_proc, which, [all...] |
| /src/lib/libc/gen/ |
| H A D | fmtmsg.c | 143 writeit(FILE *stream, unsigned int which, const char *label, argument 150 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ? 152 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ? 154 (which & MM_VERBSEVERITY) ? 156 (which & MM_VERBSEVERITY) ? 158 ((which & MM_VERBTEXT) && text != MM_NULLTXT) ? 160 ((which & MM_VERBLABEL) && label != MM_NULLLBL) || 161 ((which & MM_VERBSEVERITY)) || 162 ((which & MM_VERBTEXT) && text != MM_NULLTXT) ? 164 ((which [all...] |
| /src/usr.bin/renice/ |
| H A D | renice.c | 60 * or groups of processes which are already 66 int which = PRIO_PROCESS; local in function:main 84 which = PRIO_PGRP; 88 which = PRIO_USER; 92 which = PRIO_PROCESS; 95 if (which == PRIO_USER) { 117 errs += donice(which, who, prio, incr); 145 donice(int which, id_t who, int prio, int incr) argument 150 if ((oldprio = getpriority(which, who)) == -1 && errno != 0) { 163 if (setpriority(which, wh [all...] |
| /src/sys/arch/ia64/stand/ia64/ski/ |
| H A D | ssc.c | 47 ssc(u_int64_t in0, u_int64_t in1, u_int64_t in2, u_int64_t in3, int which) argument 56 : "r"(which), "r"(in0), "r"(in1), "r"(in2), "r"(in3));
|
| /src/lib/libc/termios/ |
| H A D | tcflush.c | 54 tcflush(int fd, int which) 60 switch (which) {
|
| /src/usr.bin/make/unit-tests/ |
| H A D | opt-debug-archive.mk | 3 # Tests for the -da command line option, which adds debug logging for the
|
| H A D | opt-debug-dir.mk | 3 # Tests for the -dd command line option, which adds debug logging for
|
| H A D | opt-debug-making.mk | 3 # Tests for the -dm command line option, which adds debug logging about
|
| H A D | opt-debug-meta.mk | 3 # Tests for the -dM command line option, which adds debug logging about
|
| H A D | depsrc-end.mk | 3 # Demonstrate an edge case in which .BEGIN depends on .END, which sounds a bit
|
| H A D | varname-dot-includes.mk | 3 # Tests for the special .INCLUDES variable, which is not documented in the 6 # It is yet unclear in which situations this feature is useful.
|
| H A D | varname-dot-libs.mk | 3 # Tests for the special .LIBS variable, which is not documented in the 6 # It is yet unclear in which situations this feature is useful.
|
| H A D | dep-percent.mk | 3 # Test for transformation rules of the form '%.o: %.c', which are supported
|
| /src/sys/rump/net/lib/libvirtif/ |
| H A D | Makefile | 5 COMMENT=Network interface which uses hypercalls for I/O
|
| /src/sys/arch/evbarm/mpcsa/ |
| H A D | mpcsa_cf.c | 64 static void * mpcsa_cf_intr_establish(void *self, int which, int ipl, int (*ih_func)(void *), void *arg); 65 static void mpcsa_cf_intr_disestablish(void *self, int which, void *cookie); 130 static void * mpcsa_cf_intr_establish(void *self, int which, int ipl, int (*ih_func)(void *), void *ih_arg) argument 133 return at91pio_intr_establish(sc->sc_pioc, which == CD_IRQ ? 4 : 3, 137 static void mpcsa_cf_intr_disestablish(void *self, int which, void *cookie) argument 140 at91pio_intr_disestablish(sc->sc_pioc, which == CD_IRQ ? 4 : 3, cookie);
|
| /src/sys/arch/amiga/amiga/ |
| H A D | cia.c | 97 dispatch_cia_ints(int which, int mask) argument 101 disp = (which == 0) ? ciaa_ints : ciab_ints; 116 * the FLG interrupt, which is used to indicate a disk-index
|