Searched refs:which (Results 1 - 25 of 674) sorted by relevance

1234567891011>>

/src/bin/ksh/
H A Dmkman12 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 DMakefile5 MAN= whereis.1 which.1
6 LINKS= ${BINDIR}/whereis ${BINDIR}/which
/src/games/sail/
H A Ddisplay.h34 void display_set_obp(int which, bool show);
35 void display_set_dbp(int which, bool show);
/src/sys/dev/wscons/
H A Dwsbelldata.h40 (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 Dlinux32_resource.c80 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 Dkeyboard.c124 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 Dnetbsd32_rlimit.c49 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 Di80312_gpio.c59 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 Di80321_gpio.c56 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 Dkern_resource_43.c71 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 Dfmtmsg.c143 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 Drenice.c60 * 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 Dssc.c47 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 Dtcflush.c54 tcflush(int fd, int which)
60 switch (which) {
/src/usr.bin/make/unit-tests/
H A Dopt-debug-archive.mk3 # Tests for the -da command line option, which adds debug logging for the
H A Dopt-debug-dir.mk3 # Tests for the -dd command line option, which adds debug logging for
H A Dopt-debug-making.mk3 # Tests for the -dm command line option, which adds debug logging about
H A Dopt-debug-meta.mk3 # Tests for the -dM command line option, which adds debug logging about
H A Ddepsrc-end.mk3 # Demonstrate an edge case in which .BEGIN depends on .END, which sounds a bit
H A Dvarname-dot-includes.mk3 # 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 Dvarname-dot-libs.mk3 # 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 Ddep-percent.mk3 # Test for transformation rules of the form '%.o: %.c', which are supported
/src/sys/rump/net/lib/libvirtif/
H A DMakefile5 COMMENT=Network interface which uses hypercalls for I/O
/src/sys/arch/evbarm/mpcsa/
H A Dmpcsa_cf.c64 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 Dcia.c97 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

Completed in 14 milliseconds

1234567891011>>