| /dragonfly/tools/tools/ath/common/ |
| HD | dumpregs.h | 65 #define _DEFREG(_addr, _name, _type) \ argument 66 { .addr = _addr, .name = _name, .type = _type } 67 #define _DEFREGx(_addr, _name, _type, _srevmin, _srevmax) \ argument 68 { .addr = _addr, .name = _name, .type = _type, \ 70 #define _DEFREGfmt(_addr, _name, _type, _fmt) \ argument 71 { .addr = _addr, .name = _name, .type = _type, .bits = _fmt } 72 #define DEFVOID(_addr, _name) _DEFREG(_addr, _name, 0) argument 73 #define DEFVOIDx(_addr, _name, _smin, _smax) \ argument 74 __DEFREGx(_addr, _name, _smin, _smax, 0) 75 #define DEFVOIDfmt(_addr, _name, _fmt) \ argument [all …]
|
| /dragonfly/tools/ |
| HD | pw-update.sh | 50 local _name _pw _uid _gid _gids _group item 55 while IFS=':' read -r _name _pw _uid _gid _class \ 57 case ${_name} in 60 if pw -V ${etcdir} usershow ${_name} -q >/dev/null; then 63 echo " * ${_name}: ${_uid}, ${_gid}, ${_gecos}, ${_home}, ${_shell}" 71 _gids="${_gids} ${_name}:${_gid}" 79 pw -V ${etcdir} useradd ${_name} \ 90 while IFS=':' read -r _name _pw _gid _members; do 91 case ${_name} in 94 if pw -V ${etcdir} groupshow ${_name} -q >/dev/null; then [all …]
|
| /dragonfly/sys/sys/ |
| HD | bitstring.h | 76 bitstr_t *_name = (name); \ 81 _name[_startbyte] &= ((0xff >> (8 - (_start&0x7))) | \ 84 _name[_startbyte] &= 0xff >> (8 - (_start&0x7)); \ 86 _name[_startbyte] = 0; \ 87 _name[_stopbyte] &= 0xff << ((_stop&0x7) + 1); \ 93 bitstr_t *_name = (name); \ 98 _name[_startbyte] |= ((0xff << (_start&0x7)) & \ 101 _name[_startbyte] |= 0xff << ((_start)&0x7); \ 103 _name[_startbyte] = 0xff; \ 104 _name[_stopbyte] |= 0xff >> (7 - (_stop&0x7)); \ [all …]
|
| HD | linker.h | 226 int linker_file_lookup_symbol(linker_file_t _file, const char* _name, 235 int linker_file_lookup_set(linker_file_t _file, const char *_name,
|
| /dragonfly/lib/libutil/ |
| HD | libutil.h | 68 char *auth_getval(const char *_name); 75 int forkpty(int *_amaster, char *_name, 89 int openpty(int *_amaster, int *_aslave, char *_name, 98 char *property_find(properties _list, const char *_name);
|
| /dragonfly/contrib/ldns/drill/ |
| HD | securetrace.c | 704 if (descriptor && descriptor->_name) { in do_secure_trace() 705 … printf(" %s", descriptor->_name); in do_secure_trace() 714 if (descriptor && descriptor->_name) { in do_secure_trace() 715 … printf(" %s", descriptor->_name); in do_secure_trace() 726 if (descriptor && descriptor->_name) { in do_secure_trace() 727 … printf("%s", descriptor->_name); in do_secure_trace() 744 if (descriptor && descriptor->_name) { in do_secure_trace() 745 … printf("%s", descriptor->_name); in do_secure_trace() 754 if (descriptor && descriptor->_name) { in do_secure_trace() 755 … printf("%s", descriptor->_name); in do_secure_trace()
|
| HD | dnssec.c | 191 if (descriptor && descriptor->_name) in ldns_verify_denial() 192 printf("%s", descriptor->_name); in ldns_verify_denial() 321 if (descriptor && descriptor->_name) { in ldns_nsec3_exact_match() 322 printf("%s ", descriptor->_name); in ldns_nsec3_exact_match()
|
| HD | chasetrace.c | 372 if (descriptor && descriptor->_name) { in do_chase() 373 printf(" %s\n", descriptor->_name); in do_chase()
|
| /dragonfly/sbin/newfs_msdos/ |
| HD | mkfs_msdos.h | 64 #define AOPT(_opt, _type, _name, _min, _desc) _type _name; argument
|
| HD | newfs_msdos.c | 267 #define AOPT(_opt, _type, _name, _min, _desc) { _opt, _desc }, in usage() argument
|
| /dragonfly/contrib/wpa_supplicant/wpa_supplicant/ |
| HD | config_winreg.c | 521 TCHAR *_name, *_val; in wpa_config_write_reg_string() local 523 _name = wpa_strdup_tchar(name); in wpa_config_write_reg_string() 524 if (_name == NULL) in wpa_config_write_reg_string() 528 RegDeleteValue(hk, _name); in wpa_config_write_reg_string() 529 os_free(_name); in wpa_config_write_reg_string() 535 os_free(_name); in wpa_config_write_reg_string() 538 ret = RegSetValueEx(hk, _name, 0, REG_SZ, (BYTE *) _val, in wpa_config_write_reg_string() 543 os_free(_name); in wpa_config_write_reg_string() 548 os_free(_name); in wpa_config_write_reg_string()
|
| /dragonfly/sys/dev/netif/ath/ath_hal/ |
| HD | ah_internal.h | 98 #define AH_CHIP(_name, _probe, _attach) \ argument 99 static struct ath_hal_chip _name##_chip = { \ 100 .name = #_name, \ 104 OS_DATA_SET(ah_chips, _name##_chip) 118 #define AH_RF(_name, _probe, _attach) \ argument 119 static struct ath_hal_rf _name##_rf = { \ 120 .name = __STRING(_name), \ 124 OS_DATA_SET(ah_rfs, _name##_rf)
|
| /dragonfly/usr.sbin/makefs/ |
| HD | msdos.c | 81 #define AOPT(_opt, _type, _name, _min, _desc) { \ in msdos_prep_opts() argument 83 .name = # _name, \ in msdos_prep_opts() 89 .value = &msdos_opt->options._name, \ in msdos_prep_opts()
|
| /dragonfly/usr.sbin/lpr/pac/ |
| HD | pac.c | 88 static int hash(const char _name[]); 89 static struct hent *enter(const char _name[]); 90 static struct hent *lookup(const char _name[]);
|
| /dragonfly/etc/rc.d/ |
| HD | modules | 18 eval mod_name=\$${m}_name
|
| /dragonfly/usr.sbin/adduser/ |
| HD | adduser.sh | 220 _name= 235 _name="-n '$username'" 285 _pwcmd="$_upasswd ${PWCMD} useradd $_uid $_name $_group $_grouplist $_comment"
|
| /dragonfly/contrib/openpam/include/security/ |
| HD | pam_appl.h | 96 const char *_name);
|
| HD | openpam.h | 120 const char *_name,
|
| /dragonfly/sys/dev/virtual/virtio/scsi/ |
| HD | virtio_scsivar.h | 148 #define VTSCSI_LOCK_INIT(_sc, _name) lockinit(VTSCSI_MTX(_sc), \ argument
|
| /dragonfly/contrib/elftoolchain/libelf/ |
| HD | libelf.h | 209 unsigned long elf_hash(const char *_name);
|
| /dragonfly/sys/dev/virtual/vmware/vmxnet3/ |
| HD | if_vmxvar.h | 262 #define VMXNET3_CORE_LOCK_INIT(_sc, _name) \ argument
|
| /dragonfly/sys/netproto/802_11/ |
| HD | ieee80211_dragonfly.h | 370 #define IEEE80211_IOCTL_GET(_name, _get) TEXT_SET(ieee80211_ioctl_getset, _get) argument 375 #define IEEE80211_IOCTL_SET(_name, _set) TEXT_SET(ieee80211_ioctl_setset, _set) argument
|
| /dragonfly/usr.sbin/lpr/lpc/ |
| HD | lpc.c | 72 static struct cmd *getcmd(const char *_name);
|
| /dragonfly/contrib/ldns/ldns/ |
| HD | rr.h | 355 const char *_name; member
|
| /dragonfly/crypto/libressl/include/ |
| HD | tls.h | 192 int tls_peer_cert_contains_name(struct tls *_ctx, const char *_name);
|