Searched refs:_name (Results 1 - 25 of 105) sorted by path

12345

/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_parser.h90 char *_name; /* string name of member */ member in struct:dt_node::__anon56::__anon61
103 char *_name; /* string name of provider */ member in struct:dt_node::__anon56::__anon63
131 #define dn_membname dn_u._member._name /* DT_NODE_MEMBER */
138 #define dn_provname dn_u._provider._name /* DT_NODE_PROVIDER */
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf.h101 typedef int (*Dwarf_Callback_Func)(char *_name, int _size,
105 typedef int (*Dwarf_Callback_Func_b)(char *_name, int _size,
/freebsd-11-stable/contrib/ldns/
H A Ddnssec_verify.c71 if (rr_descriptor && rr_descriptor->_name) {
72 fprintf(out, ";; qtype: %s\n", rr_descriptor->_name);
526 if (descriptor->_name) {
527 fprintf(out, " (%s", descriptor->_name);
H A Dhost2str.c522 ldns_rr_descript(data)->_name) {
524 ldns_buffer_printf(output, "%s",ldns_rr_descript(data)->_name);
601 if (descriptor && descriptor->_name) {
602 ldns_buffer_printf(output, "%s", descriptor->_name);
869 ldns_rr_descript(type)->_name){
872 ldns_rr_descript(type)->_name);
H A Drr.c2607 desc_name = desc->_name;
/freebsd-11-stable/contrib/ldns/drill/
H A Dchasetrace.c272 if (descriptor && descriptor->_name) {
273 printf(" %s\n", descriptor->_name);
H A Ddnssec.c308 if (descriptor && descriptor->_name) {
309 printf("%s ", descriptor->_name);
H A Dsecuretrace.c345 if (descriptor && descriptor->_name) {
346 printf(" %s", descriptor->_name);
356 if (descriptor && descriptor->_name) {
357 printf(" %s", descriptor->_name);
370 if (descriptor && descriptor->_name) {
371 printf("%s", descriptor->_name);
677 if (descriptor && descriptor->_name) {
678 printf(" %s", descriptor->_name);
687 if (descriptor && descriptor->_name) {
688 printf(" %s", descriptor->_name);
[all...]
/freebsd-11-stable/contrib/ldns/ldns/
H A Drr.h345 const char *_name; member in struct:ldns_struct_rr_descriptor
/freebsd-11-stable/contrib/libucl/tests/
H A Drun_tests.sh43 _name=`basename $i`
44 printf "running schema test suite $_name... "
H A Dschema.test8 _name=`basename $i`
9 printf "running schema test suite $_name... "
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py54 self._name = name
70 return self._name
75 name = "%s_%s" % (self._name, entry.Name())
91 print >>file, '/* Tag definition for %s */' % self._name
92 print >>file, 'enum %s_ {' % self._name.lower()
96 print >>file, ' %s_MAX_TAGS' % (self._name.upper())
100 print >>file, 'struct %s;' % self._name
103 print >>file, '/* Structure declaration for %s */' % self._name
104 print >>file, 'struct %s_access_ {' % self._name
115 print >>file, 'struct %s {' % self._name
[all...]
/freebsd-11-stable/crypto/heimdal/kcm/
H A Dkcm_locl.h51 #define KCM_LOG_REQUEST_NAME(_context, _client, _opcode, _name) do { \
53 kcm_op2string(_opcode), (_name), (_client)->pid, (_client)->uid); \
/freebsd-11-stable/crypto/openssh/regress/
H A Dkeygen-knownhosts.sh57 _name=$2
61 fail "didn't find $_name"
93 _name=$2
99 fail "didn't find $_name"
/freebsd-11-stable/etc/rc.d/
H A Dzfsbe29 while read _mp _name _canmount _mounted ; do
41 mount -t zfs $_name ${_mp#/$_be}
45 zfs mount $_name
/freebsd-11-stable/sbin/newfs_msdos/
H A Dmkfs_msdos.h63 #define AOPT(_opt, _type, _name, _min, _desc) _type _name;
/freebsd-11-stable/sys/arm/at91/
H A Dat91rm9200.c98 #define DEVICE(_name, _id, _unit) \
100 _name, _unit, \
H A Dat91sam9260.c96 #define DEVICE(_name, _id, _unit) \
98 _name, _unit, \
H A Dat91sam9g20.c96 #define DEVICE(_name, _id, _unit) \
98 _name, _unit, \
H A Dat91sam9g45.c99 #define DEVICE(_name, _id, _unit) \
101 _name, _unit, \
H A Dat91sam9x5.c97 #define DEVICE(_name, _id, _unit) \
99 _name, _unit, \
/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Dkcondvar.h50 const char *_name; \
52 for (_name = #cv; *_name != '\0'; _name++) { \
53 if (*_name >= 'a' && *_name <= 'z') \
56 if (*_name == '\0') \
57 _name = #cv; \
58 cv_init((cv), _name); \
H A Dmutex.h56 const char *_name; \
60 for (_name = #lock; *_name != '\0'; _name++) { \
61 if (*_name >= 'a' && *_name <= 'z') \
64 if (*_name == '\0') \
65 _name = #lock; \
66 sx_init_flags((lock), _name, MUTEX_FLAGS); \
H A Drwlock.h62 const char *_name; \
67 for (_name = #lock; *_name != '\0'; _name++) { \
68 if (*_name >= 'a' && *_name <= 'z') \
71 if (*_name == '\0') \
72 _name = #lock; \
73 sx_init_flags((lock), _name, RW_FLAGS); \
/freebsd-11-stable/sys/ddb/
H A Dddb.h128 #define _DB_SET(_suffix, _name, _func, list, _flag, _more) \
129 static struct command __CONCAT(_name,_suffix) = { \
130 .name = __STRING(_name), \
135 static void __CONCAT(__CONCAT(_name,_suffix),_add)(void *arg __unused) \
136 { db_command_register(&list, &__CONCAT(_name,_suffix)); } \
137 SYSINIT(__CONCAT(_name,_suffix), SI_SUB_KLD, SI_ORDER_ANY, \
138 __CONCAT(__CONCAT(_name,_suffix),_add), NULL); \
139 static void __CONCAT(__CONCAT(_name,_suffix),_del)(void *arg __unused) \
140 { db_command_unregister(&list, &__CONCAT(_name,_suffix)); } \
141 SYSUNINIT(__CONCAT(_name,_suffi
[all...]

Completed in 298 milliseconds

12345