| /openbmc/phosphor-fan-presence/control/json/ |
| H A D | zone.hpp | 55 class Zone : public ConfigBase class 61 Zone() = delete; 62 Zone(const Zone&) = delete; 63 Zone(Zone&&) = delete; 64 Zone& operator=(const Zone&) = delete; 65 Zone& operator=(Zone&&) = delete; 66 ~Zone() = default; 76 Zone(const json& jsonObj, const sdeventplus::Event& event, Manager* mgr); 385 std::forward<T>(value)](DBusZone& dbusZone, Zone& zone) { in setProperty() 411 return [=](DBusZone&, Zone& zone) { in setPropertyPersist() [all …]
|
| H A D | zone.cpp | 44 std::map<std::string, std::function<std::function<void(DBusZone&, Zone&)>( 46 Zone::_intfPropHandlers = { 51 Zone::Zone(const json& jsonObj, const sdeventplus::Event& event, Manager* mgr) : in Zone() function in phosphor::fan::control::json::Zone 55 _incTimer(event, std::bind(&Zone::incTimerExpired, this)), 56 _decTimer(event, std::bind(&Zone::decTimerExpired, this)) 108 void Zone::enable() in enable() 138 void Zone::addFan(std::unique_ptr<Fan> fan) in addFan() 143 void Zone::setTarget(uint64_t target) in setTarget() 161 void Zone::lockFanTarget(const std::string& fname, uint64_t target) in lockFanTarget() 180 void Zone::unlockFanTarget(const std::string& fname, uint64_t target) in unlockFanTarget() [all …]
|
| H A D | dbus_zone.hpp | 27 class Zone; 50 explicit DBusZone(const Zone& zone); 69 const Zone& _zone;
|
| H A D | event.hpp | 71 std::map<configKey, std::unique_ptr<Zone>>& zones); 159 std::map<configKey, std::unique_ptr<Zone>>& _zones;
|
| /openbmc/phosphor-fan-presence/control/ |
| H A D | zone.cpp | 49 Zone::Zone(Mode mode, sdbusplus::bus_t& bus, const std::string& path, in Zone() function in phosphor::fan::control::Zone 60 _incTimer(event, std::bind(&Zone::incTimerExpired, this)), 61 _decTimer(event, std::bind(&Zone::decTimerExpired, this)), _eventLoop(event) 100 void Zone::setSpeed(uint64_t speed) in setSpeed() 112 void Zone::setFullSpeed() in setFullSpeed() 124 void Zone::setActiveAllow(const Group* group, bool isActiveAllow) in setActiveAllow() 139 void Zone::removeService(const Group* group, const std::string& name) in removeService() 160 void Zone::setServiceOwner(const Group* group, const std::string& name, in setServiceOwner() 185 void Zone::setServices(const Group* group) in setServices() 209 void Zone::setFloor(uint64_t speed) in setFloor() [all …]
|
| H A D | zone.hpp | 42 class Zone : public ThermalObject class 45 Zone() = delete; 46 Zone(const Zone&) = delete; 47 Zone(Zone&&) = delete; 48 Zone& operator=(const Zone&) = delete; 49 Zone& operator=(Zone&&) = delete; 50 ~Zone() = default; 63 Zone(Mode mode, sdbusplus::bus_t& bus, const std::string& path,
|
| H A D | types.hpp | 17 class Zone; 46 using ZoneHandler = std::function<void(Zone&)>; 48 std::function<void(sdbusplus::bus_t&, sdbusplus::message_t&, Zone&)>; 49 using MethodHandler = std::function<void(Zone&, const Group&)>; 50 using Action = std::function<void(Zone&, const Group&)>; 51 using Trigger = std::function<void(Zone&, const std::string&, const Group&,
|
| H A D | actions.cpp | 18 control::Zone& zone, const Group& group) { in call_actions_based_on_timer() 54 void default_floor_on_missing_owner(Zone& zone, const Group& group) in default_floor_on_missing_owner() 72 return [speed](control::Zone& zone, const Group& group) { in set_speed_on_missing_owner() 89 void set_request_speed_base_with_max(control::Zone& zone, const Group& group) in set_request_speed_base_with_max()
|
| H A D | triggers.cpp | 17 control::Zone& zone, const std::string& name, const Group& group, in timer() 26 control::Zone& zone, const std::string& name, const Group& group, in signal() 37 std::bind(std::mem_fn(&Zone::handleEvent), &zone, in signal() 68 control::Zone& zone, const std::string& /*name*/, in init()
|
| H A D | functor.hpp | 13 class Zone; 103 Zone& zone) const in operator ()() 155 void operator()(Zone& zone, const Group& group) const in operator ()() 246 Zone& zone) const in operator ()() 333 Zone& zone) const in operator ()() 403 Zone& zone) const in operator ()() 426 void operator()(Zone& zone, const Group& group) const in operator ()()
|
| H A D | actions.hpp | 43 void default_floor_on_missing_owner(Zone& zone, const Group& group); 70 void set_request_speed_base_with_max(Zone& zone, const Group& group); 132 return [val_to_speed = std::move(val_to_speed)](control::Zone& zone, in set_floor_from_average_sensor_value() 191 std::move(val_to_speed)](Zone& zone, const Group& group) { in set_ceiling_from_average_sensor_value() 487 valueToSpeed = std::move(valueToSpeed)](control::Zone& zone, in set_floor_from_median_sensor_value()
|
| /openbmc/phosphor-fan-presence/control/json/actions/ |
| H A D | action.hpp | 86 std::vector<std::reference_wrapper<Zone>>& zones) in createAction() 142 virtual void setZones(std::vector<std::reference_wrapper<Zone>>& zones) in setZones() 153 virtual void addZone(Zone& zone) in addZone() 157 [&zone](std::reference_wrapper<Zone>& z) { in addZone() 162 _zones.emplace_back(std::reference_wrapper<Zone>(zone)); in addZone() 174 virtual void run(Zone& zone) = 0; 185 [this](Zone& zone) { this->run(zone); }); in run() 250 std::vector<std::reference_wrapper<Zone>> _zones; 323 std::vector<std::reference_wrapper<Zone>>&& zones) in getAction() 350 std::vector<std::reference_wrapper<Zone>>&)>>
|
| H A D | override_fan_target.hpp | 100 void run(Zone& zone) override; 124 void lockFans(Zone& zone); 132 void unlockFans(Zone& zone);
|
| H A D | get_managed_objects.hpp | 92 void run(Zone& zone) override; 101 void setZones(std::vector<std::reference_wrapper<Zone>>& zones) override;
|
| H A D | timer_based_actions.hpp | 84 void run(Zone& zone) override; 115 std::vector<std::reference_wrapper<Zone>>& zones) override;
|
| H A D | override_fan_target.cpp | 42 void OverrideFanTarget::run(Zone& zone) in run() 81 void OverrideFanTarget::lockFans(Zone& zone) in lockFans() 106 void OverrideFanTarget::unlockFans(Zone& zone) in unlockFans()
|
| H A D | get_managed_objects.cpp | 33 void GetManagedObjects::run(Zone& zone) in run() 94 std::vector<std::reference_wrapper<Zone>>& zones) in setZones()
|
| H A D | request_target_base.hpp | 72 void run(Zone& zone) override;
|
| H A D | default_floor.hpp | 66 void run(Zone& zone) override;
|
| H A D | missing_owner_target.hpp | 68 void run(Zone& zone) override;
|
| H A D | net_target_increase.hpp | 83 void run(Zone& zone) override;
|
| /openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Debug/Pid/ |
| H A D | meson.build | 3 subdir('Zone') subdir 34 '../../../../../yaml/xyz/openbmc_project/Debug/Pid/Zone.interface.yaml', 36 output: ['Zone.md'], 48 'xyz/openbmc_project/Debug/Pid/Zone',
|
| /openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Debug/Pid/Zone/ |
| H A D | meson.build | 3 sdbusplus_current_path = 'xyz/openbmc_project/Debug/Pid/Zone' 8 '../../../../../../yaml/xyz/openbmc_project/Debug/Pid/Zone.interface.yaml', 28 'xyz/openbmc_project/Debug/Pid/Zone',
|
| /openbmc/u-boot/lib/optee/ |
| H A D | Kconfig | 18 hex "Amount of Trust-Zone RAM for the OPTEE image" 21 The size of pre-allocated Trust Zone DRAM to allocate for the OPTEE 25 hex "Base address of Trust-Zone RAM for the OPTEE image" 28 The base address of pre-allocated Trust Zone DRAM for
|
| /openbmc/bmcweb/redfish-core/include/generated/enums/ |
| H A D | chassis.hpp | 23 Zone, enumerator 110 {ChassisType::Zone, "Zone"},
|