Home
last modified time | relevance | path

Searched refs:_name (Results 1 – 25 of 34) sorted by relevance

12

/dragonfly/tools/tools/ath/common/
HDdumpregs.h65 #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/
HDpw-update.sh50 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/
HDbitstring.h76 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 …]
HDlinker.h226 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/
HDlibutil.h68 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/
HDsecuretrace.c704 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()
HDdnssec.c191 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()
HDchasetrace.c372 if (descriptor && descriptor->_name) { in do_chase()
373 printf(" %s\n", descriptor->_name); in do_chase()
/dragonfly/sbin/newfs_msdos/
HDmkfs_msdos.h64 #define AOPT(_opt, _type, _name, _min, _desc) _type _name; argument
HDnewfs_msdos.c267 #define AOPT(_opt, _type, _name, _min, _desc) { _opt, _desc }, in usage() argument
/dragonfly/contrib/wpa_supplicant/wpa_supplicant/
HDconfig_winreg.c521 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/
HDah_internal.h98 #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/
HDmsdos.c81 #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/
HDpac.c88 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/
HDmodules18 eval mod_name=\$${m}_name
/dragonfly/usr.sbin/adduser/
HDadduser.sh220 _name=
235 _name="-n '$username'"
285 _pwcmd="$_upasswd ${PWCMD} useradd $_uid $_name $_group $_grouplist $_comment"
/dragonfly/contrib/openpam/include/security/
HDpam_appl.h96 const char *_name);
HDopenpam.h120 const char *_name,
/dragonfly/sys/dev/virtual/virtio/scsi/
HDvirtio_scsivar.h148 #define VTSCSI_LOCK_INIT(_sc, _name) lockinit(VTSCSI_MTX(_sc), \ argument
/dragonfly/contrib/elftoolchain/libelf/
HDlibelf.h209 unsigned long elf_hash(const char *_name);
/dragonfly/sys/dev/virtual/vmware/vmxnet3/
HDif_vmxvar.h262 #define VMXNET3_CORE_LOCK_INIT(_sc, _name) \ argument
/dragonfly/sys/netproto/802_11/
HDieee80211_dragonfly.h370 #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/
HDlpc.c72 static struct cmd *getcmd(const char *_name);
/dragonfly/contrib/ldns/ldns/
HDrr.h355 const char *_name; member
/dragonfly/crypto/libressl/include/
HDtls.h192 int tls_peer_cert_contains_name(struct tls *_ctx, const char *_name);

12