Searched defs:map (Results 1 - 3 of 3) sorted by relevance
/solaris-userland/components/openvswitch/files/lib/ |
H A D | netdev-solaris.c | 561 struct solaris_netdev_sdmap map [] = { local 586 snsp = map; 1395 kstat2_map_t map; local 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, "oerror [all...] |
H A D | dpif-solaris.c | 412 kstat2_map_t map; local 451 stat = kstat2_lookup_map(dpif_khandle, kuri, &map); 461 stats->n_hit += (get_nvvt_int(map, "ipkthit") + 462 get_nvvt_int(map, "opkthit")); 463 stats->n_missed += (get_nvvt_int(map, "ipktmiss") + 464 get_nvvt_int(map, "opktmiss")); 472 stat = kstat2_lookup_map(dpif_khandle, kuri, &map); 481 stats->n_flows += get_nvvt_int(map, "nflows");
|
H A D | util-solaris.c | 3577 get_nvvt_int(kstat2_map_t map, char *name) argument 3582 stat = kstat2_map_get(map, name, &val); 3912 kstat2_map_t map; local 3932 stat = kstat2_lookup_map(handle, kuri, &map); 3934 stat = kstat2_map_get(map, "core_id", &val);
|
Completed in 352 milliseconds