Home
last modified time | relevance | path

Searched refs:ifmt_string (Results 1 – 4 of 4) sorted by relevance

/dflybsd-src/sbin/ifconfig/
H A Difmedia.c476 desc->ifmt_string != NULL; desc++, ttos++) in get_media_subtype()
479 if (desc->ifmt_string == NULL) in get_media_subtype()
500 desc->ifmt_string != NULL; desc++, ttos++) in get_media_mode()
503 if (desc->ifmt_string == NULL) in get_media_mode()
529 desc->ifmt_string != NULL; desc++, ttos++) in get_media_options()
532 if (desc->ifmt_string == NULL) in get_media_options()
559 for (; desc->ifmt_string != NULL; desc++) in lookup_media_word()
560 if (strcasecmp(desc->ifmt_string, val) == 0) in lookup_media_word()
570 for (desc = ifm_type_descriptions; desc->ifmt_string != NULL; desc++) in get_toptype_desc()
583 desc->ifmt_string != NULL; desc++, ttos++) in get_toptype_ttos()
[all …]
/dflybsd-src/sys/net/
H A Dif_media.c505 desc->ifmt_string != NULL; desc++, ttos++) in ifmedia_printword()
508 if (desc->ifmt_string == NULL) { in ifmedia_printword()
512 kprintf("%s", desc->ifmt_string); in ifmedia_printword()
519 desc->ifmt_string != NULL; desc++) in ifmedia_printword()
523 for (desc = ttos->subtypes; desc->ifmt_string != NULL; desc++) in ifmedia_printword()
526 if (desc->ifmt_string == NULL) { in ifmedia_printword()
532 kprintf(" %s", desc->ifmt_string); in ifmedia_printword()
538 desc->ifmt_string != NULL; desc++) { in ifmedia_printword()
543 desc->ifmt_string); in ifmedia_printword()
550 for (desc = ttos->options; desc->ifmt_string != NULL; desc++) { in ifmedia_printword()
[all …]
H A Dif_media.h368 const char *ifmt_string; /* description */ member
/dflybsd-src/sbin/devd/
H A Ddevd.cc327 for (int i = 0; media_types[i].ifmt_string != NULL; ++i) in media()
328 if (strcasecmp(type, media_types[i].ifmt_string) == 0) { in media()