Searched refs:which (Results 126 - 150 of 555) sorted by relevance

1234567891011>>

/freebsd-11-stable/sbin/ifconfig/
H A Daf_inet.c132 in_getaddr(const char *s, int which) argument
134 struct sockaddr_in *sin = sintab[which];
141 if (which == ADDR) {
H A Daf_inet6.c305 in6_getprefix(const char *plen, int which) argument
307 struct sockaddr_in6 *sin = sin6tab[which];
314 if (which != MASK)
327 in6_getaddr(const char *s, int which) argument
329 struct sockaddr_in6 *sin = sin6tab[which];
336 if (which != MASK)
339 if (which == ADDR) {
/freebsd-11-stable/contrib/bsnmp/snmp_ntp/
H A Dsnmp_ntp.c873 parse_filt(char *val, uint16_t associd, int which) argument
895 switch (which) {
1111 asn_subid_t which = value->var.subs[sub - 1]; local
1125 switch (which) {
1211 asn_subid_t which = value->var.subs[sub - 1]; local
1254 switch (which) {
1347 asn_subid_t which = value->var.subs[sub - 1]; local
1390 switch (which) {
1406 asn_subid_t which = value->var.subs[sub - 1]; local
1449 switch (which) {
1473 asn_subid_t which = value->var.subs[sub - 1]; local
[all...]
/freebsd-11-stable/crypto/openssh/regress/
H A Dtest-exec.sh115 *) PLINK=`which ${TEST_SSH_PLINK} 2>/dev/null` ;;
122 *) PUTTYGEN=`which ${TEST_SSH_PUTTYGEN} 2>/dev/null` ;;
129 *) CONCH=`which ${TEST_SSH_CONCH} 2>/dev/null` ;;
142 *) SSHD=`which $SSHD` ;;
147 *) SSHAGENT=`which $SSHAGENT` ;;
/freebsd-11-stable/sbin/fsck/
H A Dfsck.c61 static enum { IN_LIST, NOT_IN_LIST } which = NOT_IN_LIST; variable in typeref:enum:__anon4788
422 return which == IN_LIST ? 1 : 0;
424 return which == IN_LIST ? 0 : 1;
482 which = NOT_IN_LIST;
485 which = IN_LIST;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dnetbsd_syscall_hooks.h437 #define __sanitizer_syscall_pre_compat_50_setitimer(which, itv, oitv) \
439 (long long)(which), (long long)(itv), (long long)(oitv))
440 #define __sanitizer_syscall_post_compat_50_setitimer(res, which, itv, oitv) \
442 res, (long long)(which), (long long)(itv), (long long)(oitv))
451 #define __sanitizer_syscall_pre_compat_50_getitimer(which, itv) \
452 __sanitizer_syscall_pre_impl_compat_50_getitimer((long long)(which), \
454 #define __sanitizer_syscall_post_compat_50_getitimer(res, which, itv) \
455 __sanitizer_syscall_post_impl_compat_50_getitimer(res, (long long)(which), \
497 #define __sanitizer_syscall_pre_setpriority(which, who, prio) \
499 (long long)(which), (lon
[all...]
H A Dlinux_syscall_hooks.h178 #define __sanitizer_syscall_pre_getitimer(which, value) \
179 __sanitizer_syscall_pre_impl_getitimer((long)(which), (long)(value))
180 #define __sanitizer_syscall_post_getitimer(res, which, value) \
181 __sanitizer_syscall_post_impl_getitimer(res, (long)(which), (long)(value))
182 #define __sanitizer_syscall_pre_setitimer(which, value, ovalue) \
183 __sanitizer_syscall_pre_impl_setitimer((long)(which), (long)(value), \
185 #define __sanitizer_syscall_post_setitimer(res, which, value, ovalue) \
186 __sanitizer_syscall_post_impl_setitimer(res, (long)(which), (long)(value), \
302 #define __sanitizer_syscall_pre_setpriority(which, who, niceval) \
303 __sanitizer_syscall_pre_impl_setpriority((long)(which), (lon
[all...]
/freebsd-11-stable/usr.bin/limits/
H A Dlimits.c259 static rlim_t resource_num(int which, int ch, const char *str);
263 const char *pfx, const char *sfx, const char *which);
559 print_limit(rlim_t limit, unsigned divisor, const char * inf, const char * pfx, const char * sfx, const char * which) argument
567 printf(pfx, which, numbr);
568 printf(sfx, which);
574 resource_num(int which, int ch, const char *str) argument
586 switch (which) {
/freebsd-11-stable/sys/kern/
H A Dkern_time.c176 int which, member in struct:clock_getcpuclockid2_args
187 error = kern_clock_getcpuclockid2(td, uap->id, uap->which, &clk_id);
194 kern_clock_getcpuclockid2(struct thread *td, id_t id, int which, argument
202 switch (which) {
732 u_int which; member in struct:getitimer_args
742 error = kern_getitimer(td, uap->which, &aitv);
749 kern_getitimer(struct thread *td, u_int which, struct itimerval *aitv) argument
754 if (which > ITIMER_PROF)
757 if (which == ITIMER_REAL) {
776 *aitv = p->p_stats->p_timer[which];
788 u_int which; member in struct:setitimer_args
812 kern_setitimer(struct thread *td, u_int which, struct itimerval *aitv, struct itimerval *oitv) argument
[all...]
/freebsd-11-stable/share/mk/
H A Dbsd.info.mk14 # DVIPS A program which convert a TeX DVI file to PostScript [dvips]
16 # DVIPS2ASCII A program to convert a PostScript file which was prior
19 # FORMATS Indicates which output formats will be generated
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_pcib_acpi.c78 int which, uintptr_t *result);
80 int which, uintptr_t value);
396 * Determine which address ranges this bridge decodes and setup
537 acpi_pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
541 switch (which) {
559 acpi_pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value) argument
563 switch (which) {
/freebsd-11-stable/sys/conf/
H A Dkern.opts.mk6 # Define MK_* variables (which are either "yes" or "no") for users
129 # MK_* options which are always no, usually because they are
139 # MK_*_SUPPORT options which default to "yes" unless their corresponding
/freebsd-11-stable/bin/date/
H A Dvary.c419 char which; local
453 which = arg[len-1];
455 switch (which) {
/freebsd-11-stable/gnu/usr.bin/gdb/arch/arm/
H A Darmfbsd-nat.c480 int which, CORE_ADDR ignore)
492 int which, CORE_ADDR ignore)
497 switch (which)
479 fetch_core_registers(char *core_reg_sect, unsigned core_reg_size, int which, CORE_ADDR ignore) argument
491 fetch_elfcore_registers(char *core_reg_sect, unsigned core_reg_size, int which, CORE_ADDR ignore) argument
/freebsd-11-stable/sys/powerpc/psim/
H A Diobus.c271 iobus_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
278 switch (which) {
300 iobus_write_ivar(device_t dev, device_t child, int which, uintptr_t value) argument
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_netgraph/
H A Dsnmp_netgraph.c815 /* if we have just shutdown a tee node, which had no other hooks
979 asn_subid_t which = value->var.subs[sub - 1]; local
991 switch (which) {
1014 switch (which) {
1062 switch (which) {
1087 switch (which) {
1218 asn_subid_t which = value->var.subs[sub - 1]; local
1255 if (which != LEAF_begemotNgTypeStatus) {
1327 switch (which) {
1412 asn_subid_t which local
1623 asn_subid_t which = value->var.subs[sub - 1]; local
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dbench_cascade.c67 read_cb(evutil_socket_t fd, short which, void *arg) argument
/freebsd-11-stable/sys/arm/xscale/ixp425/
H A Dixp425_pci.c218 ixppcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
223 switch (which) {
236 ixppcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value) argument
241 switch (which) {
/freebsd-11-stable/lib/libc/net/
H A Dhesiod.c38 * the BIND IRS library, which was in turn based on an earlier version
155 * name which is to be resolved.
271 * or ctx->rhs which need to be freed by the caller.
278 char *key, *data, *p, **which; local
322 which = (strcasecmp(key, "lhs") == 0)
324 *which = strdup(data);
325 if (!*which) {
402 * which follows.
/freebsd-11-stable/sys/mips/adm5120/
H A Dadmpci.c327 admpci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
331 switch (which) {
344 admpci_write_ivar(device_t dev, device_t child, int which, uintptr_t result) argument
348 switch (which) {
/freebsd-11-stable/sys/mips/idt/
H A Didtpci.c436 idtpci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
440 switch (which) {
453 idtpci_write_ivar(device_t dev, device_t child, int which, uintptr_t result) argument
457 switch (which) {
/freebsd-11-stable/sys/mips/nlm/
H A Dxlp_pci.c177 xlp_pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
180 switch (which) {
192 xlp_pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t result) argument
194 switch (which) {
268 * use shadow reg for intpin/intline which are dead
325 * Find the link on which the device is on
332 /* find the lane on which the slot is connected to */
/freebsd-11-stable/sys/mips/rmi/
H A Dxlr_pci.c157 xlr_pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
160 switch (which) {
172 xlr_pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t result) argument
174 switch (which) {
319 * Find the link on which the device is on
326 /* find the lane on which the slot is connected to */
/freebsd-11-stable/tools/build/
H A Dcheck-links.sh26 -v: Show which library each symbol is resolved to.
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_asid.c198 int v3_asid_add_inherit(ASIdentifiers *asid, int which)
203 switch (which) {
228 int which, ASN1_INTEGER *min, ASN1_INTEGER *max)
234 switch (which) {
555 int i1, i2, i3, is_range, which;
561 which = V3_ASID_ASNUM;
563 which = V3_ASID_RDI;
575 if (v3_asid_add_inherit(asid, which))
584 * Number, range, or mistake, pick it apart and figure out which.
637 if (!v3_asid_add_id_or_range(asid, which, mi
[all...]

Completed in 212 milliseconds

1234567891011>>