| /openbmc/phosphor-led-manager/test/ |
| H A D | led-test-map.hpp | 8 {"One", phosphor::led::Layout::Action::On, 0, 0, 9 phosphor::led::Layout::Action::Blink}, 17 {"One", phosphor::led::Layout::Action::Blink, 0, 0, 18 phosphor::led::Layout::Action::Blink}, 26 {"One", phosphor::led::Layout::Action::Blink, 0, 0, 27 phosphor::led::Layout::Action::On}, 35 {"One", phosphor::led::Layout::Action::On, 0, 0, 36 phosphor::led::Layout::Action::On}, 37 {"Two", phosphor::led::Layout::Action::On, 0, 0, 38 phosphor::led::Layout::Action::On}, [all …]
|
| H A D | utest-group-priority.cpp | 23 static void assertMap(std::map<LedName, Layout::LedAction> map, in assertMap() 24 std::map<LedName, Layout::Action> expect) in assertMap() 38 {"led1", Layout::Action::On, 0, 0, std::nullopt}, 39 {"led2", Layout::Action::On, 0, 0, std::nullopt}, 44 {"led3", Layout::Action::On, 0, 0, std::nullopt}, 45 {"led4", Layout::Action::On, 0, 0, std::nullopt}, 54 std::set<const Layout::GroupLayout*> assertedGroups; in TEST_F() 56 Layout::GroupLayout mygroup = in TEST_F() 61 std::map<LedName, Layout::LedAction> map = in TEST_F() 65 {"led1", Layout::Action::On}, in TEST_F() [all …]
|
| H A D | utest-config-validator.cpp | 26 {"led1", Layout::Action::On, 0, 0, Layout::Action::On}, in TEST() 27 {"led2", Layout::Action::On, 0, 0, Layout::Action::Blink}, in TEST() 29 Layout::GroupLayout group1 = {0, group1ActionSet}; in TEST() 38 {"led1", Layout::Action::On, 0, 0, std::nullopt}, in TEST() 39 {"led2", Layout::Action::On, 0, 0, std::nullopt}, in TEST() 42 {"led1", Layout::Action::On, 0, 0, std::nullopt}, in TEST() 43 {"led2", Layout::Action::On, 0, 0, std::nullopt}, in TEST() 45 Layout::GroupLayout group1 = {1, group1ActionSet}; in TEST() 46 Layout::GroupLayout group2 = {2, group1ActionSet}; in TEST() 58 {"led1", Layout::Action::On, 0, 0, Layout::Action::On}, in TEST() [all …]
|
| H A D | utest.cpp | 39 {"One", phosphor::led::Layout::Action::On, 0, 0, in TEST_F() 40 phosphor::led::Layout::Action::Blink}, in TEST_F() 71 {"One", phosphor::led::Layout::Action::Blink, 0, 0, in TEST_F() 72 phosphor::led::Layout::Action::Blink}, in TEST_F() 103 {"One", phosphor::led::Layout::Action::On, 0, 0, in TEST_F() 104 phosphor::led::Layout::Action::Blink}, in TEST_F() 149 {"One", phosphor::led::Layout::Action::On, 0, 0, in TEST_F() 150 phosphor::led::Layout::Action::On}, in TEST_F() 151 {"Two", phosphor::led::Layout::Action::On, 0, 0, in TEST_F() 152 phosphor::led::Layout::Action::On}, in TEST_F() [all …]
|
| H A D | utest-led-json.cpp | 29 ASSERT_EQ(group.action, phosphor::led::Layout::Action::On); in TEST() 32 ASSERT_EQ(group.priority, phosphor::led::Layout::Action::Blink); in TEST() 38 ASSERT_EQ(group.action, phosphor::led::Layout::Action::On); in TEST() 41 ASSERT_EQ(group.priority, phosphor::led::Layout::Action::On); in TEST() 46 ASSERT_EQ(group.action, phosphor::led::Layout::Action::Off); in TEST() 47 ASSERT_EQ(group.priority, phosphor::led::Layout::Action::Off); in TEST() 54 ASSERT_EQ(group.action, phosphor::led::Layout::Action::Blink); in TEST() 57 ASSERT_EQ(group.priority, phosphor::led::Layout::Action::Blink); in TEST() 61 ASSERT_EQ(group.action, phosphor::led::Layout::Action::Blink); in TEST() 64 ASSERT_EQ(group.priority, phosphor::led::Layout::Action::Blink); in TEST()
|
| /openbmc/phosphor-led-manager/manager/ |
| H A D | manager.hpp | 42 static bool ledComp(const phosphor::led::Layout::LedAction& left, in ledComp() 43 const phosphor::led::Layout::LedAction& right) in ledComp() 59 static bool ledLess(const phosphor::led::Layout::LedAction& left, in ledLess() 60 const phosphor::led::Layout::LedAction& right) in ledLess() 66 static bool ledEqual(const phosphor::led::Layout::LedAction& left, in ledEqual() 67 const phosphor::led::Layout::LedAction& right) in ledEqual() 90 static auto getNewMap(std::set<const Layout::GroupLayout*> assertedGroups) 91 -> std::map<LedName, Layout::LedAction>; 126 int drivePhysicalLED(const std::string& objPath, Layout::Action action, 142 std::set<const Layout::GroupLayout*> assertedGroups; [all …]
|
| H A D | grouplayout.hpp | 15 namespace Layout namespace 28 bool operator()(const Layout::GroupLayout* lhs, in operator ()() 29 const Layout::GroupLayout* rhs) const in operator ()() 37 using GroupMap = std::unordered_map<std::string, Layout::GroupLayout>;
|
| H A D | config-validator.cpp | 19 std::optional<phosphor::led::Layout::Action>>; 34 const std::optional<phosphor::led::Layout::Action>& priority) in priorityToString() 42 case phosphor::led::Layout::Action::Off: in priorityToString() 44 case phosphor::led::Layout::Action::On: in priorityToString() 46 case phosphor::led::Layout::Action::Blink: in priorityToString() 62 const std::optional<phosphor::led::Layout::Action>& priority, in validatePriority() 84 const phosphor::led::Layout::GroupLayout& group, PriorityMap& priorityMap) in validateConfigV1GroupForLedPriority() 120 const phosphor::led::Layout::GroupLayout& group) in validateConfigV1GroupForGroupPriority()
|
| H A D | json-parser.hpp | 23 std::optional<phosphor::led::Layout::Action>>; 60 phosphor::led::Layout::Action getAction(const std::string& action) in getAction() 64 return phosphor::led::Layout::Action::On; in getAction() 68 return phosphor::led::Layout::Action::Off; in getAction() 72 return phosphor::led::Layout::Action::Blink; in getAction() 76 return phosphor::led::Layout::Action::Blink; in getAction() 88 std::optional<phosphor::led::Layout::Action> priority = std::nullopt; in loadJsonConfigV1GroupMember() 95 phosphor::led::Layout::LedAction ledAction{name, action, dutyOn, period, in loadJsonConfigV1GroupMember() 118 phosphor::led::Layout::GroupLayout groupLayout{}; in loadJsonConfigV1Group()
|
| H A D | ledlayout.hpp | 16 namespace Layout namespace 53 using ActionSet = std::set<Layout::LedAction>;
|
| /openbmc/phosphor-led-manager/manager/lamptest/ |
| H A D | lamptest.cpp | 34 manager.drivePhysicalLED(path, Layout::Action::Off, it.dutyOn, in processLEDUpdates() 83 manager.drivePhysicalLED(path, Layout::Action::Off, 0, 0); in stop() 99 Layout::Action LampTest::getActionFromString(const std::string& str) in getActionFromString() 101 Layout::Action action = Layout::Action::Off; in getActionFromString() 105 action = Layout::Action::On; in getActionFromString() 109 action = Layout::Action::Blink; in getActionFromString() 165 phosphor::led::Layout::Action action = getActionFromString(state); in storePhysicalLEDsStates() 166 if (action != phosphor::led::Layout::Action::Off) in storePhysicalLEDsStates() 168 phosphor::led::Layout::LedAction ledAction{ in storePhysicalLEDsStates() 170 phosphor::led::Layout::Action::On}; in storePhysicalLEDsStates() [all …]
|
| H A D | lamptest.hpp | 137 static Layout::Action getActionFromString(const std::string& str);
|
| /openbmc/phosphor-bmc-code-mgmt/bios/ |
| H A D | README.md | 25 "Layout": "Flat", 34 ## Layout information 36 Sometimes another tool is needed if one does not have a flat image. Use "Layout"
|
| /openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/doc/ |
| H A D | README.lsch3_2 | 15 1)DDR Layout
|
| H A D | README.lsch3 | 12 DDR Layout 37 Flash Layout
|
| /openbmc/openbmc/meta-openembedded/meta-xfce/recipes-xfce/garcon/files/ |
| H A D | 0001-xfce-applications.menu-don-t-bloat-settings-menu-by-.patch | 31 <Layout>
|
| /openbmc/u-boot/doc/mvebu/ |
| H A D | armada-8k-memory.txt | 1 Memory Layout on Armada-8k SoC's
|
| /openbmc/openbmc/meta-openembedded/meta-webserver/ |
| H A D | README.md | 26 Layout section in meta-webserver
|
| /openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/ |
| H A D | 0001-binutils-crosssdk-Generate-relocatable-SDKs.patch | 27 @@ -5102,7 +5102,7 @@ Layout::create_interp(const Target* target)
|
| /openbmc/u-boot/board/lego/ev3/ |
| H A D | README | 29 Suggested Flash Memory Layout
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/wic/ |
| H A D | corstone1000-flash-firmware.wks.in | 2 # Layout and maximum sizes (to be defined):
|
| /openbmc/openbmc-test-automation/ |
| H A D | README.md | 143 ## Test Layout 180 ## Redfish Test Layout
|
| /openbmc/qemu/tests/migration-stress/guestperf/ |
| H A D | plot.py | 388 layout = go.Layout(title="Migration comparison",
|
| /openbmc/phosphor-pid-control/ |
| H A D | README.md | 114 ## Code Layout
|
| /openbmc/docs/architecture/code-update/ |
| H A D | flash-layout.md | 1 # OpenBMC Flash Layout and Filesystem Documentation
|