Lines Matching defs:map
561 struct solaris_netdev_sdmap map [] = {
586 snsp = map;
1395 kstat2_map_t map;
1454 stat = kstat2_lookup_map(nd_khandle, kuri, &map);
1460 stats->rx_packets = get_nvvt_int(map, "ipackets64");
1461 stats->tx_packets = get_nvvt_int(map, "opackets64");
1462 stats->rx_bytes = get_nvvt_int(map, "rbytes");
1463 stats->tx_bytes = get_nvvt_int(map, "obytes");
1464 stats->rx_errors = get_nvvt_int(map, "ierrors");
1465 stats->tx_errors = get_nvvt_int(map, "oerrors");
1467 stats->tx_packets = get_nvvt_int(map, "ipackets64");
1468 stats->rx_packets = get_nvvt_int(map, "opackets64");
1469 stats->tx_bytes = get_nvvt_int(map, "rbytes");
1470 stats->rx_bytes = get_nvvt_int(map, "obytes");
1471 stats->tx_errors = get_nvvt_int(map, "ierrors");
1472 stats->rx_errors = get_nvvt_int(map, "oerrors");
1474 stats->collisions = get_nvvt_int(map, "collisions");
1475 stats->multicast = get_nvvt_int(map, "multircv") +
1476 get_nvvt_int(map, "multixmt");
1481 stat = kstat2_lookup_map(nd_khandle, kuri, &map);
1487 stats->rx_dropped = get_nvvt_int(map, "idrops");
1488 stats->tx_dropped = get_nvvt_int(map, "odrops");
1490 stats->tx_dropped = get_nvvt_int(map, "idrops");
1491 stats->rx_dropped = get_nvvt_int(map, "odrops");
1520 stat = kstat2_lookup_map(nd_khandle, kuri, &map);
1527 stats->rx_length_errors = get_nvvt_int(map, "Recv_Length_Errors");
1528 stats->rx_missed_errors = get_nvvt_int(map, "Recv_Missed_Packets");
1529 stats->rx_over_errors = get_nvvt_int(map, "Recv_Oversize");