Searched refs:_intf (Results 1 – 7 of 7) sorted by relevance
/openbmc/sdbusplus/include/sdbusplus/ |
H A D | message.hpp | 85 _intf(std::move(intf)), _msg(_intf->sd_bus_message_ref(m)) in message() 96 _intf(intf), _msg(m) in message() 103 message(msgp_t m, std::false_type) : _intf(&sdbus_impl), _msg(m) {} in message() 110 _intf(other._intf), _msg(sd_bus_message_ref(other._msg.get())) in message() 120 _intf = other._intf; in operator =() 144 sdbusplus::message::append(_intf, _msg.get(), in append() 156 sdbusplus::message::read(_intf, _msg.get(), in read() 204 return _intf->sd_bus_message_get_signature(_msg.get(), true); in get_signature() 213 return _intf->sd_bus_message_get_path(_msg.get()); in get_path() 222 return _intf->sd_bus_message_get_interface(_msg.get()); in get_interface() [all …]
|
H A D | bus.hpp | 178 int r = _intf->sd_bus_flush(_bus.get()); in flush() 188 _intf->sd_bus_close(_bus.get()); in close() 194 int r = _intf->sd_bus_is_open(_bus.get()); in is_open() 208 int r = _intf->sd_bus_wait(_bus.get(), timeout_us); in wait() 225 int r = _intf->sd_bus_process(_bus.get(), &m); in process() 236 return message_t(m, _intf, std::false_type()); in process() 243 int r = _intf->sd_bus_process(_bus.get(), nullptr); in process_discard() 274 int r = _intf->sd_bus_request_name( in request_name() 296 int r = _intf->sd_bus_message_new_method_call(_bus.get(), &m, service, in new_method_call() 303 return message_t(m, _intf, std::false_type()); in new_method_call() [all …]
|
/openbmc/phosphor-fan-presence/control/ |
H A D | functor.hpp | 92 _path(""), _intf(""), _prop(""), _handler(std::forward<U>(handler)) in Properties() 96 _path(path), _intf(intf), _prop(prop), in Properties() 112 if (intf != _intf) in operator ()() 129 zone.getPropertyValueVisitor<T>(_intf, _prop, it->second); in operator ()() 131 _handler(zone, _path, _intf, _prop, std::forward<T>(value)); in operator ()() 137 auto val = zone.getPropertyByName<T>(_path, _intf, _prop); in operator ()() 138 _handler(zone, _path, _intf, _prop, std::forward<T>(val)); in operator ()() 184 const char* _intf; member 239 _path(path), _intf(intf), _prop(prop), in InterfacesAdded() 265 auto itIntf = intfProp.find(_intf); in operator ()() [all …]
|
/openbmc/sdbusplus/src/ |
H A D | bus.cpp | 11 _intf->sd_bus_emit_interfaces_added_strv(_bus.get(), path, in emit_interfaces_added() 19 _intf->sd_bus_emit_interfaces_removed_strv(_bus.get(), path, in emit_interfaces_removed() 102 _intf(intf), _bus(_intf->sd_bus_ref(b), details::BusDeleter(intf)) in bus() 116 _intf(&sdbus_impl), in bus() 117 _bus(_intf->sd_bus_ref(b), details::BusDeleter(&sdbus_impl)) in bus() 131 _intf(&sdbus_impl), _bus(b, details::BusDeleter(&sdbus_impl)) in bus()
|
/openbmc/phosphor-hwmon/ |
H A D | hwmonio.cpp | 109 _p(path), _intf(intf) in HwmonIO() 123 val = _intf->read(fullPath); in read() 185 _intf->write(fullPath, val); in write()
|
H A D | hwmonio.hpp | 134 const FileSystemInterface* _intf; member in hwmonio::HwmonIO
|
/openbmc/ipmitool/include/ipmitool/ |
H A D | ipmi_sdr.h | 855 #define BRIDGE_TO_SENSOR(_intf, _addr, _chan) \ argument 856 ( !((_chan == 0 && _intf->target_ipmb_addr && \ 857 _intf->target_ipmb_addr == _addr) || \ 858 (_addr == _intf->target_addr && _chan == _intf->target_channel)) )
|