/openbmc/phosphor-objmgr/src/test/ |
H A D | associations.cpp | 64 assocMaps.ifaces = createDefaultInterfaceAssociation(server); in TEST_F() 74 std::get<endpointsPos>(assocMaps.ifaces[defaultFwdPath]); in TEST_F() 76 intfEndpoints = std::get<endpointsPos>(assocMaps.ifaces[defaultRevPath]); in TEST_F() 87 assocMaps.ifaces = createDefaultInterfaceAssociation(server); in TEST_F() 90 addEndpointToInterfaceAssociation(assocMaps.ifaces); in TEST_F() 100 std::get<endpointsPos>(assocMaps.ifaces[defaultFwdPath]); in TEST_F() 102 intfEndpoints = std::get<endpointsPos>(assocMaps.ifaces[defaultRevPath]); in TEST_F() 114 assocMaps.ifaces = createDefaultInterfaceAssociation(server); in TEST_F() 122 std::get<endpointsPos>(assocMaps.ifaces[defaultFwdPath]); in TEST_F() 124 intfEndpoints = std::get<endpointsPos>(assocMaps.ifaces[defaultRevPath]); in TEST_F() [all …]
|
H A D | name_change.cpp | 46 assocMaps.ifaces = createDefaultInterfaceAssociation(server); in TEST_F() 59 std::get<endpointsPos>(assocMaps.ifaces[defaultFwdPath]); in TEST_F() 61 intfEndpoints = std::get<endpointsPos>(assocMaps.ifaces[defaultRevPath]); in TEST_F()
|
H A D | interfaces_added.cpp | 58 EXPECT_EQ(assocMaps.ifaces.size(), 2); in TEST_F()
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | xdp_redirect_multi.c | 26 static int ifaces[MAX_IFACE_NUM] = {}; variable 33 for (i = 0; ifaces[i] > 0; i++) { in int_exit() 34 if (bpf_xdp_query_id(ifaces[i], xdp_flags, &prog_id)) { in int_exit() 39 bpf_xdp_detach(ifaces[i], xdp_flags, NULL); in int_exit() 130 ifaces[i] = if_nametoindex(argv[optind + i]); in main() 131 if (!ifaces[i]) in main() 132 ifaces[i] = strtoul(argv[optind + i], NULL, 0); in main() 133 if (!if_indextoname(ifaces[i], ifname)) { in main() 137 if (ifaces[i] > MAX_INDEX_NUM) { in main() 141 printf(" %d", ifaces[i]); in main() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/webmin/files/ |
H A D | media-tomb.patch | 47 + my @ifaces = grep { &net::iface_type($_->{'fullname'}) =~ /ether/i } 49 + @ifaces = ( $act[0] ) if (!@ifaces && @act); 50 + if (@ifaces) { 51 + return wantarray ? ( map { $_->{'address'} } @ifaces ) 52 + : $ifaces[0]->{'address'};
|
/openbmc/phosphor-gpio-monitor/presence/ |
H A D | gpio_presence.hpp | 72 const std::vector<Interface>& ifaces, in Presence() argument 75 name(name), drivers(drivers), ifaces(ifaces) in Presence() 146 const std::vector<Interface> ifaces; member in phosphor::gpio::presence::Presence
|
H A D | main.cpp | 69 std::string ifaces{}; in main() local 89 "-e,--extra-ifaces", ifaces, in main() 121 if (!ifaces.empty()) in main() 123 std::stringstream ss(ifaces); in main()
|
H A D | gpio_presence.cpp | 147 for (auto& iface : ifaces) in getObjectMap()
|
/openbmc/phosphor-objmgr/src/ |
H A D | processing.cpp | 64 auto ifaces = pathIt->second.find(wellKnown); in processNameChangeDelete() local 65 if (ifaces != pathIt->second.end()) in processNameChangeDelete() 67 auto assoc = std::find(ifaces->second.begin(), ifaces->second.end(), in processNameChangeDelete() 69 if (assoc != ifaces->second.end()) in processNameChangeDelete()
|
H A D | associations.cpp | 14 auto iface = assocMaps.ifaces.find(assocPath); in updateEndpointsOnDbus() 15 if (iface == assocMaps.ifaces.end()) in updateEndpointsOnDbus() 45 assocMaps.ifaces.erase(iface); in updateEndpointsOnDbus() 60 auto iface = assocMaps.ifaces.find(assocPath); in scheduleUpdateEndpointsOnDbus() 61 if (iface == assocMaps.ifaces.end()) in scheduleUpdateEndpointsOnDbus() 140 auto assoc = assocMaps.ifaces.find(assocPath); in removeAssociationEndpoints() 141 if (assoc == assocMaps.ifaces.end()) in removeAssociationEndpoints() 226 auto& iface = assocMaps.ifaces[assocPath]; in addEndpointsToAssocIfaces() 560 auto assoc = assocMaps.ifaces.find(assocPath); in removeAssociationIfacesEntry() 561 if (assoc != assocMaps.ifaces.end()) in removeAssociationIfacesEntry()
|
H A D | handler.cpp | 287 auto findEndpoint = associationMaps.ifaces.find(associationPath.str); in getAssociatedSubTree() 288 if (findEndpoint == associationMaps.ifaces.end()) in getAssociatedSubTree() 317 auto findEndpoint = associationMaps.ifaces.find(associationPath.str); in getAssociatedSubTreePaths() 318 if (findEndpoint == associationMaps.ifaces.end()) in getAssociatedSubTreePaths()
|
H A D | types.hpp | 103 AssociationInterfaces ifaces; member
|
/openbmc/phosphor-fan-presence/control/ |
H A D | triggers.cpp | 48 auto ifaces = zone.getIfaces(); in signal() local 50 if (std::find(ifaces.begin(), ifaces.end(), in signal() 51 std::get<intfPos>(entry)) != ifaces.end()) in signal()
|
H A D | gen-fan-zone-defs.py | 775 ifaces = [] 810 ifaces.append(iface) 812 return ifaces 907 ifaces = [] 909 ifaces = getIfacesInZone(z["interfaces"]) 919 if ifaces: 920 zone["ifaces"] = ifaces
|
/openbmc/sdbusplus/src/ |
H A D | bus.cpp | 8 const std::vector<std::string>& ifaces) in emit_interfaces_added() argument 10 details::Strv s{ifaces}; in emit_interfaces_added() 16 const std::vector<std::string>& ifaces) in emit_interfaces_removed() argument 18 details::Strv s{ifaces}; in emit_interfaces_removed()
|
/openbmc/pyphosphor/obmc/dbuslib/ |
H A D | bindings.py | 128 def add_interfaces_to_class(cls, ifaces): argument 141 for iface in ifaces: 146 def add_interfaces(ifaces): argument 156 add_interfaces_to_class(cls, ifaces)
|
/openbmc/phosphor-health-monitor/ |
H A D | health_utils.cpp | 36 std::vector<std::string> ifaces = {iface}; in findPaths() local 37 co_return co_await mapper.get_sub_tree_paths(subpath, 0, ifaces); in findPaths()
|
/openbmc/qemu/tests/functional/ |
H A D | test_virtio_version.py | 164 dev_no_opts, ifaces = self.run_device(qemu_devtype) 167 self.assertIn('conventional-pci-device', ifaces) 168 self.assertIn('pci-express-device', ifaces)
|
/openbmc/openbmc/meta-quanta/meta-gbs/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
H A D | phosphor-gpio-presence@.service.replace | 11 …entory=${INVENTORY} --key=${KEY} --name=${NAME} --drivers=${DRIVERS} --extra-ifaces=${EXTRA_IFACES}
|
/openbmc/phosphor-gpio-monitor/ |
H A D | phosphor-gpio-presence@.service | 9 …entory=${INVENTORY} --key=${KEY} --name=${NAME} --drivers=${DRIVERS} --extra-ifaces=${EXTRA_IFACES}
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | xdp_bonding.c | 333 static const char * const ifaces[] = {"bond2", "veth2_1", "veth2_2"}; in test_xdp_bonding_redirect_multi() local 346 for (int i = 0; i < ARRAY_SIZE(ifaces); i++) { in test_xdp_bonding_redirect_multi() 347 int ifindex = if_nametoindex(ifaces[i]); in test_xdp_bonding_redirect_multi()
|
/openbmc/sdbusplus/include/sdbusplus/ |
H A D | bus.hpp | 458 const std::vector<std::string>& ifaces); 470 const std::vector<std::string>& ifaces);
|
/openbmc/phosphor-hwmon/ |
H A D | mainloop.hpp | 170 void updateSensorInterfaces(InterfaceMap& ifaces, SensorValueType value);
|
/openbmc/qemu/docs/sphinx/ |
H A D | dbusdomain.py | 290 ifaces = sorted( 298 for name, (docname, node_id, _) in ifaces:
|
/openbmc/phosphor-logging/extensions/openpower-pels/ |
H A D | data_interface.cpp | 919 std::string ifaces( in getAssociatedPaths() local 922 [](std::string ifaces, const std::string& iface) { in getAssociatedPaths() argument 923 return ifaces + ", " + iface; in getAssociatedPaths() 931 subtree, "IFACES", ifaces); in getAssociatedPaths()
|