/work/build/src/basic/arphrd-to-name.inc
Line | Count | Source (jump to first uncovered line) |
1 | 0 | const char *arphrd_to_name(int id) { |
2 | 0 | switch (id) { |
3 | 0 | case ARPHRD_6LOWPAN: return "6LOWPAN"; |
4 | 0 | case ARPHRD_ADAPT: return "ADAPT"; |
5 | 0 | case ARPHRD_APPLETLK: return "APPLETLK"; |
6 | 0 | case ARPHRD_ARCNET: return "ARCNET"; |
7 | 0 | case ARPHRD_ASH: return "ASH"; |
8 | 0 | case ARPHRD_ATM: return "ATM"; |
9 | 0 | case ARPHRD_AX25: return "AX25"; |
10 | 0 | case ARPHRD_BIF: return "BIF"; |
11 | 0 | case ARPHRD_CAIF: return "CAIF"; |
12 | 0 | case ARPHRD_CAN: return "CAN"; |
13 | 0 | case ARPHRD_CHAOS: return "CHAOS"; |
14 | 0 | case ARPHRD_CISCO: return "CISCO"; |
15 | 0 | case ARPHRD_CSLIP: return "CSLIP"; |
16 | 0 | case ARPHRD_CSLIP6: return "CSLIP6"; |
17 | 0 | case ARPHRD_DDCMP: return "DDCMP"; |
18 | 0 | case ARPHRD_DLCI: return "DLCI"; |
19 | 0 | case ARPHRD_ECONET: return "ECONET"; |
20 | 0 | case ARPHRD_EETHER: return "EETHER"; |
21 | 0 | case ARPHRD_ETHER: return "ETHER"; |
22 | 0 | case ARPHRD_EUI64: return "EUI64"; |
23 | 0 | case ARPHRD_FCAL: return "FCAL"; |
24 | 0 | case ARPHRD_FCFABRIC: return "FCFABRIC"; |
25 | 0 | case ARPHRD_FCPL: return "FCPL"; |
26 | 0 | case ARPHRD_FCPP: return "FCPP"; |
27 | 0 | case ARPHRD_FDDI: return "FDDI"; |
28 | 0 | case ARPHRD_FRAD: return "FRAD"; |
29 | 0 | case ARPHRD_HIPPI: return "HIPPI"; |
30 | 0 | case ARPHRD_HWX25: return "HWX25"; |
31 | 0 | case ARPHRD_IEEE1394: return "IEEE1394"; |
32 | 0 | case ARPHRD_IEEE802: return "IEEE802"; |
33 | 0 | case ARPHRD_IEEE80211: return "IEEE80211"; |
34 | 0 | case ARPHRD_IEEE80211_PRISM: return "IEEE80211_PRISM"; |
35 | 0 | case ARPHRD_IEEE80211_RADIOTAP: return "IEEE80211_RADIOTAP"; |
36 | 0 | case ARPHRD_IEEE802154: return "IEEE802154"; |
37 | 0 | case ARPHRD_IEEE802154_MONITOR: return "IEEE802154_MONITOR"; |
38 | 0 | case ARPHRD_IEEE802_TR: return "IEEE802_TR"; |
39 | 0 | case ARPHRD_INFINIBAND: return "INFINIBAND"; |
40 | 0 | case ARPHRD_IP6GRE: return "IP6GRE"; |
41 | 0 | case ARPHRD_IPDDP: return "IPDDP"; |
42 | 0 | case ARPHRD_IPGRE: return "IPGRE"; |
43 | 0 | case ARPHRD_IRDA: return "IRDA"; |
44 | 0 | case ARPHRD_LAPB: return "LAPB"; |
45 | 0 | case ARPHRD_LOCALTLK: return "LOCALTLK"; |
46 | 0 | case ARPHRD_LOOPBACK: return "LOOPBACK"; |
47 | 0 | case ARPHRD_MCTP: return "MCTP"; |
48 | 0 | case ARPHRD_METRICOM: return "METRICOM"; |
49 | 0 | case ARPHRD_NETLINK: return "NETLINK"; |
50 | 0 | case ARPHRD_NETROM: return "NETROM"; |
51 | 0 | case ARPHRD_NONE: return "NONE"; |
52 | 0 | case ARPHRD_PHONET: return "PHONET"; |
53 | 0 | case ARPHRD_PHONET_PIPE: return "PHONET_PIPE"; |
54 | 0 | case ARPHRD_PIMREG: return "PIMREG"; |
55 | 0 | case ARPHRD_PPP: return "PPP"; |
56 | 0 | case ARPHRD_PRONET: return "PRONET"; |
57 | 0 | case ARPHRD_RAWHDLC: return "RAWHDLC"; |
58 | 0 | case ARPHRD_RAWIP: return "RAWIP"; |
59 | 0 | case ARPHRD_ROSE: return "ROSE"; |
60 | 0 | case ARPHRD_RSRVD: return "RSRVD"; |
61 | 0 | case ARPHRD_SIT: return "SIT"; |
62 | 0 | case ARPHRD_SKIP: return "SKIP"; |
63 | 0 | case ARPHRD_SLIP: return "SLIP"; |
64 | 0 | case ARPHRD_SLIP6: return "SLIP6"; |
65 | 0 | case ARPHRD_TUNNEL: return "TUNNEL"; |
66 | 0 | case ARPHRD_TUNNEL6: return "TUNNEL6"; |
67 | 0 | case ARPHRD_VOID: return "VOID"; |
68 | 0 | case ARPHRD_VSOCKMON: return "VSOCKMON"; |
69 | 0 | case ARPHRD_X25: return "X25"; |
70 | 0 | default: return NULL; |
71 | 0 | } |
72 | 0 | } |