/openbmc/sdeventplus/src/sdeventplus/utility/ |
H A D | timer.cpp | 14 template <ClockId Id> 15 Timer<Id>::Timer(const Event& event, Callback&& callback, in Timer() 17 typename source::Time<Id>::Accuracy accuracy) : in Timer() 20 Clock<Id>(event).now() + interval.value_or(Duration::zero()), in Timer() 23 auto timerData = std::make_unique<detail::TimerData<Id>>( in Timer() 28 source::Time<Id>&, typename source::Time<Id>::TimePoint) { in Timer() argument 35 template <ClockId Id> 36 Timer<Id>::Timer(const Timer<Id>& other, sdeventplus::internal::NoOwn) : in Timer() 41 template <ClockId Id> 42 void Timer<Id>::set_callback(Callback&& callback) in set_callback() [all …]
|
H A D | timer.hpp | 19 template <ClockId Id> 34 template <ClockId Id> 41 using Duration = typename Clock<Id>::duration; 46 using Callback = fu2::unique_function<void(Timer<Id>&)>; 63 typename source::Time<Id>::Accuracy accuracy = 192 detail::TimerData<Id>* userdata; 194 source::Time<Id> timeSource; 201 friend detail::TimerData<Id>; 207 template <ClockId Id> 208 class TimerData : public Timer<Id> [all …]
|
/openbmc/sdeventplus/src/sdeventplus/source/ |
H A D | time.cpp | 16 template <ClockId Id> 17 Time<Id>::Time(const Event& event, TimePoint time, Accuracy accuracy, in Time() 22 std::make_unique<detail::TimeData<Id>>(*this, std::move(callback))); in Time() 25 template <ClockId Id> 26 Time<Id>::Time(const Time<Id>& other, sdeventplus::internal::NoOwn) : in Time() 30 template <ClockId Id> 31 void Time<Id>::set_callback(Callback&& callback) in set_callback() 36 template <ClockId Id> 37 typename Time<Id>::TimePoint Time<Id>::get_time() const in get_time() 43 return Time<Id>::TimePoint(SdEventDuration(usec)); in get_time() [all …]
|
H A D | time.hpp | 19 template <ClockId Id> 27 template <ClockId Id> 32 using TimePoint = typename Clock<Id>::time_point; 102 detail::TimeData<Id>& get_userdata() const; 134 template <ClockId Id> 135 class TimeData : public Time<Id>, public BaseData 138 typename Time<Id>::Callback callback; 141 TimeData(const Time<Id>& base, typename Time<Id>::Callback&& callback); 143 friend Time<Id>;
|
/openbmc/sdeventplus/src/sdeventplus/ |
H A D | clock.cpp | 11 template <ClockId Id> 12 Clock<Id>::Clock(const Event& event) : event(event) in Clock() 15 template <ClockId Id> 16 Clock<Id>::Clock(Event&& event) : event(std::move(event)) in Clock() 19 template <ClockId Id> 20 typename Clock<Id>::time_point Clock<Id>::now() const in now() 25 event.get(), static_cast<clockid_t>(Id), &now)); in now()
|
H A D | clock.hpp | 29 template <ClockId Id> 39 static constexpr bool is_steady = Id == ClockId::Monotonic;
|
/openbmc/telemetry/tests/src/mocks/ |
H A D | sensor_mock.hpp | 17 explicit SensorMock(Id sensorId) : mockSensorId(sensorId) in SensorMock() 22 static Id makeId(std::string_view service, std::string_view path) in makeId() 24 return Id("SensorMock", service, path); in makeId() 43 MOCK_METHOD(Id, id, (), (const, override)); 54 Id mockSensorId = Id("SensorMock", "", "");
|
/openbmc/phosphor-host-ipmid/scripts/ |
H A D | entity-example.md | 30 # Container Entity Id and Container Entity Instance = (0x13, 0x81) 31 # Contained Entity Id and Contained Entity Instance = (0x0A, 0x1), 36 # Entity Id and entity Instance for the container entity 56 # Container Entity Id and Container Entity Instance = (0x18, 0x2) 57 # Contained Entity Id and Contained Entity Instance = (0x1D, 0x1), 66 # below record have the same container entity Id and container entity 84 # above record have the same container entity Id and container entity 97 # Container Entity Id and Container Entity Instance = (0x1E, 0x1) 98 # Contained Entity Id and Contained Entity Instance = (0x20, 0x1), 117 # Container Entity Id and Container Entity Instance = (0x1E, 0x3) [all …]
|
/openbmc/telemetry/src/interfaces/ |
H A D | sensor.hpp | 21 struct Id struct in interfaces::Sensor 23 Id(std::string_view type, std::string_view service, in Id() function 31 bool operator<(const Id& other) const in operator <() argument 45 virtual Id id() const = 0;
|
/openbmc/telemetry/tests/src/helpers/interfaces/ |
H A D | sensor_id_helpers.hpp | 10 inline void PrintTo(const Sensor::Id& o, std::ostream* os) in PrintTo() 16 inline bool operator==(const Sensor::Id& left, const Sensor::Id& right) in operator ==()
|
/openbmc/telemetry/src/ |
H A D | sensor.hpp | 21 Sensor(interfaces::Sensor::Id sensorId, const std::string& sensorMetadata, 28 static Id makeId(std::string_view service, std::string_view path); 30 Id id() const override; 50 interfaces::Sensor::Id sensorId;
|
H A D | sensor.cpp | 11 Sensor::Sensor(interfaces::Sensor::Id sensorId, in Sensor() 18 Sensor::Id Sensor::makeId(std::string_view service, std::string_view path) in makeId() 20 return Id("Sensor", service, path); in makeId() 23 Sensor::Id Sensor::id() const in id()
|
/openbmc/phosphor-snmp/ |
H A D | snmp_conf_manager.hpp | 17 using ClientList = std::map<Id, std::unique_ptr<Client>>; 58 void deleteSNMPClient(Id id); 88 Id lastClientId = 0;
|
H A D | snmp_client.hpp | 24 using Id = size_t; typedef 86 Id id;
|
/openbmc/bios-bmc-smm-error-logger/test/ |
H A D | external_storer_file_test.cpp | 69 "Id":"Metrics" in TEST_F() 80 "@odata.type": "#LogService.v1_1_0.LogService","Id":"6F7-C1A7C" in TEST_F() 104 "@odata.type": "#LogService.v1_1_0.LogService","Id":"6F7-C1A7C" in TEST_F() 138 "@odata.type": "#LogService.v1_1_0.LogService","Id":"6F7-C1A7C" in TEST_F() 219 "Id":"Metrics" in TEST_F() 232 "Id": "Metrics" in TEST_F()
|
/openbmc/openbmc-test-automation/redfish/systems/eventlog/ |
H A D | test_event_logging.robot | 69 …edfish.Delete /redfish/v1/Systems/${SYSTEM_ID}/LogServices/EventLog/Entries/${elog_entry[0]["Id"]} 91 ... from entry "Id" 1. 107 # "Id": "1", <----- Event log ID 133 Should Be Equal ${elogs[0]["Id"]} 2 msg=Event log entry is not 2 168 # "Id": "1", 205 Redfish.Patch ${EVENT_LOG_URI}Entries/${elog_entry[0]["Id"]} body={'Resolved':True} 217 # "Id": "2045", 352 ${log_entries}= Filter Struct ${event_log} [('Id', '1')] 354 Should Be Equal As Strings ${log_entries[0]["Id"]} 1 356 ${log_entries}= Filter Struct ${event_log} [('Id', '${max_num_event_logs}')] [all …]
|
/openbmc/qemu/docs/interop/ |
H A D | dbus-vmstate.rst | 10 ``org.qemu.VMState1`` D-Bus name owners and query their ``Id``. It 13 It will then save arbitrary data of each Id to be transferred in the 24 ``Id`` list.
|
/openbmc/bmcweb/redfish-core/include/utils/ |
H A D | dbus_event_log_entry.hpp | 19 uint32_t Id = 0; member 38 "Id", entry.Id, in fillDbusEventLogEntryFromPropertyMap()
|
/openbmc/phosphor-webui/app/common/directives/ |
H A D | log-event.js | 25 APIUtils.resolveLogs([{Id: event.Id}]) property in AnonymousFunction18a56c820200.AnonymousClass18a56c820701.AnonymousClass18a56c820801
|
/openbmc/phosphor-user-manager/phosphor-ldap-config/ |
H A D | ldap_mapper_entry.hpp | 22 using Id = size_t; typedef 90 Id id;
|
H A D | ldap_config.hpp | 218 void deletePrivilegeMapper(Id id); 264 Id entryId = 0; 267 std::map<Id, std::unique_ptr<LDAPMapperEntry>> PrivilegeMapperList;
|
/openbmc/openpower-host-ipmi-oem/ |
H A D | oemhandler.hpp | 74 using Id = uint8_t; typedef 82 Id sensorID;
|
/openbmc/phosphor-host-ipmid/include/ipmid/ |
H A D | types.hpp | 191 using Id = uint8_t; typedef 192 using IdInfoMap = std::map<Id, Info>; 205 Id sensorID; 238 using EntityInfoMap = std::map<Id, EntityInfo>;
|
/openbmc/openbmc-test-automation/lib/ |
H A D | dump_utils.robot | 34 ... Run Keyword And Return Get The Dump Id ${resp} 39 Get The Dump Id 85 ... Run Keyword And Return Get The Dump Id ${resp} 275 Initiate BMC Dump Using Redfish And Return Task Id 286 # "Id": "0", 290 RETURN ${resp.dict['Id']} 310 # "Id": "0", 314 Run Keyword If ${skip_dump_completion} != 0 Return From Keyword ${resp.dict['Id']} 315 Wait Until Keyword Succeeds 5 min 15 sec Check Task Completion ${resp.dict['Id']} 316 ${task_id}= Set Variable ${resp.dict['Id']} [all …]
|
/openbmc/webui-vue/src/store/modules/HardwareStatus/ |
H A D | FanStore.js | 15 Id, 23 id: Id,
|