/openbmc/pyphosphor/obmc/dbuslib/ |
H A D | bindings.py | 54 def Get(self, interface_name, property_name): argument 57 v = d[property_name] 61 "Unknown property: '{}'".format(property_name), 79 def Set(self, interface_name, property_name, new_value): argument 84 self.validator(interface_name, property_name, new_value) 87 old_value = self.properties[interface_name][property_name] 89 self.properties[interface_name][property_name] = new_value 92 interface_name, {property_name: new_value}, []) 95 self.properties[interface_name][property_name] = new_value 98 interface_name, {property_name: new_value}, []) [all …]
|
/openbmc/rest-dbus/ |
H A D | rest-dbus | 206 def handle_property(self, obj, interface_name, property_name): 209 value = iface.Get(interface_name, property_name) 218 'property': property_name, 259 property_name = parts.pop(0) 261 return self.handle_property(obj, interface_name, property_name)
|
/openbmc/pldm/libpldmresponder/test/ |
H A D | libpldmresponder_bios_string_attribute_test.cpp | 65 "property_name" : "Str_example1", in TEST_F() 128 "property_name" : "Str_example1", in TEST_F() 178 "property_name" : "Str_example1", in TEST_F()
|
H A D | libpldmresponder_bios_integer_attribute_test.cpp | 78 "property_name" : "Rail" in TEST_F() 139 "property_name" : "Rail" in TEST_F() 191 "property_name" : "Rail" in TEST_F()
|
H A D | libpldmresponder_bios_enum_attribute_test.cpp | 78 "property_name" : "Side", in TEST_F() 146 "property_name" : "Policy", in TEST_F() 199 "property_name" : "Policy", in TEST_F()
|
H A D | libpldmresponder_bios_attribute_test.cpp | 74 "property_name" : "Side", in TEST() 95 "property_name" : "Side" in TEST()
|
/openbmc/boost-dbus/include/dbus/ |
H A D | properties.hpp | 199 dbus_variant get_property(const std::string& property_name) { in get_property() argument 200 auto property = properties_map.find(property_name); in get_property() 210 void set_property(const std::string& property_name, const VALUE_TYPE value, in set_property() argument 216 v.emplace_back(property_name, value); in set_property() 317 const std::string& property_name) { in DbusObject() argument 324 auto property = properties_map.find(property_name); in DbusObject() 347 [&](const std::string& interface_name, const std::string& property_name, in DbusObject() 357 v.emplace_back(property_name, value); in DbusObject()
|
/openbmc/skeleton/libopenbmc_intf/ |
H A D | openbmc_intf.c | 1504 const gchar *property_name, in _hwmon_skeleton_handle_get_property() argument 1514 …_info_lookup_property ((GDBusInterfaceInfo *) &_hwmon_interface_info.parent_struct, property_name); in _hwmon_skeleton_handle_get_property() 1519 …_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); in _hwmon_skeleton_handle_get_property() 1537 const gchar *property_name, in _hwmon_skeleton_handle_set_property() argument 1548 …_info_lookup_property ((GDBusInterfaceInfo *) &_hwmon_interface_info.parent_struct, property_name); in _hwmon_skeleton_handle_set_property() 1553 …_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); in _hwmon_skeleton_handle_set_property() 3416 const gchar *property_name, in _fan_skeleton_handle_get_property() argument 3426 …ce_info_lookup_property ((GDBusInterfaceInfo *) &_fan_interface_info.parent_struct, property_name); in _fan_skeleton_handle_get_property() 3431 …_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); in _fan_skeleton_handle_get_property() 3449 const gchar *property_name, in _fan_skeleton_handle_set_property() argument [all …]
|
/openbmc/openbmc-test-automation/ipmi/ |
H A D | test_ipmi_fru_device.robot | 293 ${property_name}= Get From Dictionary ${ipmi_dbus_name_mapping} ${subkeys} 294 ${dbus_data}= Get Lines Containing String ${dbus_resp} ${property_name} 297 ${status}= Run Keyword And Return Status Should Contain ${property_name} DATE 304 ... message=${property_name} Property value mismatch with IPMI and DBUS 307 ... message=${property_name} Property value mismatch with IPMI and DBUS
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pydbus/ |
H A D | 0003-Support-transformation-between-D-Bus-errors-and-exce.patch | 265 def Get(self, interface_name, property_name): 266 type = self.readable_properties[interface_name + "." + property_name]
|
/openbmc/openbmc-test-automation/lib/ |
H A D | common_utils.robot | 1023 [Arguments] ${service_name} ${property_name} 1027 # property_name Property name. E.g. MainPID etc. 1033 ... systemctl show --property ${property_name} --value ${service_name}
|
/openbmc/phosphor-rest-server/module/obmc/wsgi/apps/ |
H A D | rest_dbus.py | 73 property_name): argument 83 (i.attrib['name'] == property_name):
|