/openbmc/phosphor-logging/test/openpower-pels/ |
H A D | src_callout_test.cpp | 46 Callout callout{stream}; in TEST() 86 Callout callout{stream}; in TEST() 123 Callout callout{stream}; in TEST() 158 Callout callout{stream}; in TEST() 169 Callout callout{CalloutPriority::high, "U99-42.5-P1-C2-E1", "1234567", in TEST() 178 Callout::calloutType | Callout::fruIdentIncluded); in TEST() 193 Callout callout{CalloutPriority::high, "123", "1234567", "ABCD", in TEST() 204 Callout callout{CalloutPriority::high, "1234", "1234567", "ABCD", in TEST() 216 Callout callout{CalloutPriority::high, locCode, "1234567", "ABCD", in TEST() 231 Callout callout{CalloutPriority::high, locCode, "1234567", "ABCD", in TEST() [all …]
|
H A D | service_indicators_test.cpp | 23 using CalloutVector = std::vector<std::unique_ptr<src::Callout>>; 73 auto callout = std::make_unique<src::Callout>( in TEST() 97 std::make_unique<src::Callout>(CalloutPriority::high, "U27-P1", in TEST() 107 callouts.push_back(std::make_unique<src::Callout>( in TEST() 117 callouts.push_back(std::make_unique<src::Callout>( in TEST() 128 std::make_unique<src::Callout>(CalloutPriority::high, "bmc_code")); in TEST() 148 std::make_unique<src::Callout>(CalloutPriority::high, "U27-P1", in TEST() 151 std::make_unique<src::Callout>(CalloutPriority::high, "U27-P2", in TEST() 154 std::make_unique<src::Callout>(CalloutPriority::medium, "U27-P3", in TEST() 159 std::make_unique<src::Callout>(CalloutPriority::high, "U27-P4", in TEST() [all …]
|
H A D | src_callouts_test.cpp | 105 auto callout = std::make_unique<Callout>( in TEST() 120 auto callout = std::make_unique<Callout>(CalloutPriority::high, "U1-P1", in TEST() 134 auto c0 = std::make_unique<Callout>(CalloutPriority::high, "U1-P1", in TEST() 139 auto c1 = std::make_unique<Callout>(CalloutPriority::medium, "U1-P2", in TEST() 144 auto c2 = std::make_unique<Callout>(CalloutPriority::low, "U1-P3", in TEST() 149 auto c3 = std::make_unique<Callout>(CalloutPriority::high, "U1-P4", in TEST() 154 auto c4 = std::make_unique<Callout>(CalloutPriority::high, "U1-P5", in TEST() 159 auto c5 = std::make_unique<Callout>(CalloutPriority::low, "U1-P6", in TEST() 164 auto c6 = std::make_unique<Callout>(CalloutPriority::medium, "U1-P7", in TEST() 169 auto c7 = std::make_unique<Callout>(CalloutPriority::mediumGroupA, "U1-P8", in TEST() [all …]
|
H A D | device_callouts_test.cpp | 243 bool operator!=(const Callout& left, const Callout& right) in operator !=() 251 bool operator==(const std::vector<Callout>& left, in operator ==() 252 const std::vector<Callout>& right) in operator ==() 486 std::vector<Callout> expected{ in TEST_F() 522 std::vector<Callout> expected{ in TEST_F() 546 std::vector<Callout> expected{ in TEST_F() 572 std::vector<Callout> expected{ in TEST_F()
|
/openbmc/phosphor-logging/extensions/openpower-pels/ |
H A D | callout.hpp | 35 class Callout class 51 Callout() = delete; 52 ~Callout() = default; 53 Callout(const Callout&) = delete; 54 Callout& operator=(const Callout&) = delete; 55 Callout(Callout&&) = delete; 56 Callout& operator=(Callout&&) = delete; 65 explicit Callout(Stream& pel); 79 Callout(CalloutPriority priority, const std::string& locationCode, 97 Callout(CalloutPriority priority, const std::string& locationCode, [all …]
|
H A D | callout.cpp | 31 Callout::Callout(Stream& pel) in Callout() function in openpower::pels::src::Callout 81 Callout::Callout(CalloutPriority priority, const std::string& locationCode, in Callout() function in openpower::pels::src::Callout 84 Callout(priority, locationCode, partNumber, ccin, serialNumber, in Callout() 88 Callout::Callout(CalloutPriority priority, const std::string& locationCode, in Callout() function in openpower::pels::src::Callout 111 Callout::Callout(CalloutPriority priority, const std::string& procedure, in Callout() function in openpower::pels::src::Callout 125 Callout::Callout(CalloutPriority priority, const std::string& symbolicFRU, in Callout() function in openpower::pels::src::Callout 141 void Callout::setLocationCode(const std::string& locationCode) in setLocationCode() 172 size_t Callout::flattenedSize() const in flattenedSize() 184 void Callout::flatten(Stream& pel) const in flatten() 208 bool Callout::operator==(const Callout& right) const in operator ==() [all …]
|
H A D | device_callouts.cpp | 217 std::vector<Callout> extractCallouts(const nlohmann::json& calloutJSON, in extractCallouts() 220 std::vector<Callout> callouts; in extractCallouts() 232 Callout c; in extractCallouts() 276 std::vector<device_callouts::Callout> calloutI2C( in calloutI2C() 314 std::vector<device_callouts::Callout> calloutI2CUsingPath( in calloutI2CUsingPath() 330 std::vector<device_callouts::Callout> calloutFSI( in calloutFSI() 362 std::vector<device_callouts::Callout> calloutFSII2C( in calloutFSII2C() 408 std::vector<device_callouts::Callout> calloutFSISPI( in calloutFSISPI() 448 std::vector<device_callouts::Callout> findCallouts(const std::string& devPath, in findCallouts() 451 std::vector<Callout> callouts; in findCallouts() [all …]
|
H A D | device_callouts.hpp | 80 struct Callout struct 102 std::vector<Callout> getCallouts( 116 std::vector<Callout> getI2CCallouts( 155 std::vector<device_callouts::Callout> calloutI2C(
|
H A D | callouts.hpp | 76 const std::vector<std::unique_ptr<Callout>>& callouts() const in callouts() 86 void addCallout(std::unique_ptr<Callout> callout); 109 std::vector<std::unique_ptr<Callout>> _callouts;
|
/openbmc/ibm-logging/ |
H A D | callout.hpp | 25 class Callout : public CalloutObject class 28 Callout() = delete; 29 Callout(const Callout&) = delete; 30 Callout& operator=(const Callout&) = delete; 31 Callout(Callout&&) = default; 32 Callout& operator=(Callout&&) = default; 33 ~Callout() = default; 47 Callout(sdbusplus::bus_t& bus, const std::string& objectPath, 62 Callout(sdbusplus::bus_t& bus, const std::string& objectPath, size_t id,
|
H A D | callout.cpp | 30 CEREAL_CLASS_VERSION(ibm::logging::Callout, CALLOUT_CLASS_VERSION); 47 void save(Archive& archive, const Callout& callout, const std::uint32_t version) in save() 62 void load(Archive& archive, Callout& callout, const std::uint32_t version) in load() 85 Callout::Callout(sdbusplus::bus_t& bus, const std::string& objectPath, in Callout() function in ibm::logging::Callout 91 Callout::Callout(sdbusplus::bus_t& bus, const std::string& objectPath, in Callout() function in ibm::logging::Callout 132 void Callout::serialize(const fs::path& dir) in serialize() 141 bool Callout::deserialize(const fs::path& dir) in deserialize()
|
/openbmc/openpower-hw-diags/test/ |
H A D | test-pll-unlock.cpp | 66 "Callout Type": "Clock Callout", in TEST() 71 "Callout Type": "Hardware Callout", in TEST() 139 "Callout Type": "Clock Callout", in TEST() 144 "Callout Type": "Hardware Callout", in TEST() 150 "Callout Type": "Hardware Callout", in TEST() 204 "Callout Type": "Hardware Callout", in TEST() 210 "Callout Type": "Hardware Callout", in TEST() 276 "Callout Type": "Hardware Callout", in TEST() 282 "Callout Type": "Hardware Callout", in TEST() 288 "Callout Type": "Hardware Callout", in TEST() [all …]
|
H A D | test-lpc-timeout.cpp | 49 "Callout Type": "Procedure Callout", in TEST() 104 "Callout Type": "Part Callout", in TEST() 109 "Callout Type": "Clock Callout", in TEST() 114 "Callout Type": "Hardware Callout", in TEST()
|
H A D | test-resolution.cpp | 183 "Callout Type": "Hardware Callout", in TEST() 257 "Callout Type": "Connected Callout", in TEST() 265 "Callout Type": "Connected Callout", in TEST() 273 "Callout Type": "Connected Callout", in TEST() 345 "Callout Type": "Hardware Callout", in TEST() 352 "Callout Type": "Connected Callout", in TEST() 360 "Callout Type": "Bus Callout", in TEST() 408 "Callout Type": "Clock Callout", in TEST() 452 "Callout Type": "Procedure Callout", in TEST() 498 "Callout Type": "Part Callout", in TEST()
|
H A D | test-tod-step-check-fault.cpp | 95 "Callout Type": "Clock Callout", in TEST() 100 "Callout Type": "Hardware Callout", in TEST()
|
/openbmc/openbmc-test-automation/redfish/systems/eventlog/ |
H A D | test_event_association.robot | 27 Create Test Error Callout And Verify 31 Create Test Error With Callout 32 Verify Test Error Log And Callout 35 Create Test Error Callout And Verify AdditionalData 36 [Documentation] Create Test Error Callout And Verify AdditionalData. 47 Create Test Error With Callout 55 Create Test Error Callout And Verify Associations 68 Create Test Error With Callout 78 Create Test Error Callout And Delete 79 [Documentation] Create Test Error Callout And Delete. [all …]
|
/openbmc/openbmc-test-automation/openpower/ras/ |
H A D | test_host_ras.robot | 29 Verify Recoverable Callout Handling For MCA With Threshold 1 39 Verify Recoverable Callout Handling For MCA With Threshold 32 49 Verify Unrecoverable Callout Handling For MCA 60 Verify Recoverable Callout Handling For MCI With Threshold 1 70 Verify Unrecoverable Callout Handling For MCI 81 Verify Recoverable Callout Handling For CXA With Threshold 5 91 Verify Recoverable Callout Handling For CXA With Threshold 32 101 Verify Unrecoverable Callout Handling For CXA 113 Verify Recoverable Callout Handling For OBUS With Threshold 32 125 Verify Recoverable Callout Handling For NPU0 With Threshold 32 [all …]
|
H A D | test_bmc_ras.robot | 32 Verify Pdbg Recoverable Callout Handling For MCA With Threshold 1 42 Verify Pdbg Recoverable Callout Handling For MCA With Threshold 32 52 Verify Pdbg Unrecoverable Callout Handling For MCA 64 Verify Pdbg Recoverable Callout Handling For MCI With Threshold 1 74 Verify Pdbg Unrecoverable Callout Handling For MCI 87 Verify Pdbg Recoverable Callout Handling For CXA With Threshold 5 97 Verify Pdbg Recoverable Callout Handling For CXA With Threshold 32 107 Verify Pdbg Unrecoverable Callout Handling For CXA 119 Verify Pdbg Recoverable Callout Handling For OBUS With Threshold 32 131 Verify Pdbg Recoverable Callout Handling For NPU0 With Threshold 32 [all …]
|
H A D | test_host_boot_ras.robot | 29 Verify Pdbg Recoverable Callout Handling For MCA During Host Boot 43 Verify Pdbg Recoverable Callout Handling For MCI During Host Boot 55 Verify Pdbg Recoverable Callout Handling For NXDMAENG During Host Boot 69 Verify Pdbg Recoverable Callout Handling For L2FIR During Host Boot 84 Verify Pdbg Recoverable Callout Handling For OCC During Host Boot 98 Verify Pdbg Recoverable Callout Handling For NCUFIR During Host Boot 110 Verify Pdbg Unrecoverable Callout Handling For NCUFIR During Host Boot 121 Verify Pdbg Unrecoverable Callout Handling For L3FIR During Host Boot 132 Verify Pdbg Unrecoverable Callout Handling For L2FIR During Host Boot 143 Verify Pdbg Unrecoverable Callout Handling For CXA During Host Boot [all …]
|
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Common/ |
H A D | meson.build | 2 subdir('Callout') subdir 8 input: ['../../../../yaml/org/open_power/Common/Callout.errors.yaml'], 9 output: ['Callout.md'], 21 'org/open_power/Common/Callout',
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Common/Callout/ |
H A D | README.md | 7 would be `xyz.openbmc_project.Error.Callout.IIC`, to indicate an IIC callout. 18 xyz.openbmc_project.Error.Callout.IIC) : 41 - xyz.openbmc_project.Error.Callout.IIC 45 include Callout.IIC's as well, so an application wanting to add an IIC callout 47 to the presence of the Callout.IIC metadata, the error handling component can 51 `xyz.openbmc_project.Error.Callout.Device`, which has metadata common to 65 metadata fields for both Callout.Device and Callout.IIC, but provide values only 66 for Callout.Callout. That way the error handling component can still decipher
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/Callout/ |
H A D | meson.build | 3 sdbusplus_current_path = 'xyz/openbmc_project/Common/Callout' 8 '../../../../../yaml/xyz/openbmc_project/Common/Callout.errors.yaml', 22 'xyz/openbmc_project/Common/Callout',
|
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Common/Callout/ |
H A D | meson.build | 3 sdbusplus_current_path = 'org/open_power/Common/Callout' 7 input: ['../../../../../yaml/org/open_power/Common/Callout.errors.yaml'], 20 'org/open_power/Common/Callout',
|
/openbmc/ibm-logging/test/ |
H A D | test_callout.cpp | 60 auto callout = std::make_unique<Callout>(bus, objectPath, calloutPath, in TEST_F() 69 auto callout = std::make_unique<Callout>(bus, objectPath, id, ts); in TEST_F() 89 auto callout = std::make_unique<Callout>(bus, objectPath, id, ts + 1); in TEST_F()
|
/openbmc/phosphor-fan-presence/presence/ |
H A D | gpio.cpp | 68 using namespace sdbusplus::xyz::openbmc_project::Common::Callout::Error; in fail() 70 using namespace xyz::openbmc_project::Common::Callout; in fail() 72 report<sdbusplus::xyz::openbmc_project::Common::Callout::Error::GPIO>( in fail()
|