Home
last modified time | relevance | path

Searched refs:obj_path (Results 1 – 10 of 10) sorted by relevance

/openbmc/skeleton/fanctl/
H A Dfan_control.c56 obj_path, in get_connection()
84 if (!bus || !obj_path) in set_dbus_sensor()
96 obj_path, in set_dbus_sensor()
105 obj_path, strerror(-rc)); in set_dbus_sensor()
124 if (!bus || !obj_path) in read_dbus_sensor()
137 obj_path, in read_dbus_sensor()
147 obj_path, strerror(-rc)); in read_dbus_sensor()
177 snprintf(obj_path, sizeof(obj_path), in fan_set_speed()
218 snprintf(obj_path, sizeof(obj_path), in fan_get_speed()
242 snprintf(obj_path, sizeof(obj_path), in fan_set_present()
[all …]
/openbmc/pyphosphor/obmc/dbuslib/
H A Dpropertycacher.py29 def getCacheFilename(obj_path, iface_name): argument
30 name = obj_path.replace('/', '.')
35 def save(obj_path, iface_name, properties): argument
36 print("Caching: "+ obj_path)
37 filename = getCacheFilename(obj_path, iface_name)
54 def load(obj_path, iface_name, properties): argument
56 filename = getCacheFilename(obj_path, iface_name)
/openbmc/skeleton/flashbios/
H A Dflash_bios_obj.c27 update(Flash* flash, const char* obj_path) in update() argument
37 status = execlp(name, name, inst, filename, obj_path, NULL); in update()
54 const gchar* obj_path = g_dbus_object_get_object_path((GDBusObject*)user_data); in on_init() local
55 int rc = update(f,obj_path); in on_init()
61 rc = update(f,obj_path); in on_init()
200 const gchar* obj_path = g_dbus_object_get_object_path((GDBusObject*)user_data); in on_update() local
201 rc = update(flash,obj_path); in on_update()
/openbmc/skeleton/pysystemmgr/
H A Dsystem_manager.py40 obj_path = ""
43 obj_path = System.ID_LOOKUP[category][key]
44 parts = obj_path.split("/")
51 return [obj_path, intf_name]
/openbmc/skeleton/pyinventorymgr/
H A Dinventory_items.py105 obj_path = f.replace("<inventory_root>", obmc.inventory.INVENTORY_ROOT) variable
106 obj = InventoryItem(bus, obj_path, FRUS[f])
107 obj_parent.add(obj_path, obj)
/openbmc/phosphor-ipmi-flash/bmc/
H A Dgeneral_systemd.cpp60 sdbusplus::message::object_path obj_path; in trigger() local
61 bus.call(method).read(obj_path); in trigger()
62 job = std::move(obj_path); in trigger()
/openbmc/skeleton/op-flasher/
H A Dflasher_obj.c75 flash_message(GDBusConnection* connection,char* obj_path,char* method, char* error_msg) in flash_message() argument
85 obj_path, /* object path */ in flash_message()
192 …Control* flash_control, enum flash_access chip, uint32_t address, char* write_file, char* obj_path) in flash() argument
/openbmc/rest-dbus/
H A Drest-dbus103 def get_object_or_404(self, bus_name, obj_path):
105 obj = self.bus.get_object(bus_name, obj_path)
/openbmc/linux/tools/bpf/bpftool/
H A Dgen.c2041 static int btfgen_record_obj(struct btfgen_info *info, const char *obj_path) in btfgen_record_obj() argument
2054 btf = btf__parse(obj_path, &btf_ext); in btfgen_record_obj()
2057 p_err("failed to parse BPF object '%s': %s", obj_path, strerror(errno)); in btfgen_record_obj()
2063 obj_path, BTF_EXT_ELF_SEC); in btfgen_record_obj()
/openbmc/google-ipmi-sys/test/
H A Dhandler_unittest.cpp194 const char* obj_path = object_path) in ExpectGetManagedObjects() argument
231 .WillOnce(DoAll(AssignReadVal<const char*>(obj_path), Return(1))); in ExpectGetManagedObjects()