/openbmc/phosphor-led-manager/manager/ |
H A D | group.hpp | 18 sdbusplus::xyz::openbmc_project::Led::server::Group>; 23 class Group : public GroupInherit class 26 Group() = delete; 27 ~Group() override = default; 28 Group(const Group&) = delete; 29 Group& operator=(const Group&) = delete; 30 Group(Group&&) = delete; 31 Group& operator=(Group&&) = delete; 41 Group(sdbusplus::bus_t& bus, const std::string& objPath, Manager& manager, in Group() function in phosphor::led::Group 43 std::function<bool(Group*, bool)> callBack = nullptr) : in Group() argument [all …]
|
H A D | group.cpp | 14 bool Group::asserted(bool value) in asserted() 24 return sdbusplus::xyz::openbmc_project::Led::server::Group:: in asserted() 30 return sdbusplus::xyz::openbmc_project::Led::server::Group::asserted(); in asserted() 35 sdbusplus::xyz::openbmc_project::Led::server::Group::asserted()) in asserted() 61 return sdbusplus::xyz::openbmc_project::Led::server::Group::asserted( in asserted()
|
/openbmc/phosphor-fan-presence/control/json/ |
H A D | group.hpp | 43 class Group : public ConfigBase class 49 Group() = delete; 50 Group(Group&&) = delete; 51 Group& operator=(const Group&) = delete; 52 Group& operator=(Group&&) = delete; 53 ~Group() = default; 61 explicit Group(const json& jsonObj); 69 Group(const Group& origObj);
|
H A D | group.cpp | 27 std::set<std::string> Group::_allMembers{}; 29 Group::Group(const json& jsonObj) : ConfigBase(jsonObj), _service("") in Group() function in phosphor::fan::control::json::Group 39 Group::Group(const Group& origObj) : ConfigBase(origObj) in Group() function in phosphor::fan::control::json::Group 50 void Group::setMembers(const json& jsonObj) in setMembers() 65 void Group::setService(const json& jsonObj) in setService()
|
H A D | event.hpp | 105 std::map<configKey, std::unique_ptr<Group>>&& groups) in setAllGroups() 118 static std::map<configKey, std::unique_ptr<Group>>& getAllGroups( 129 static void configGroup(Group& group, const json& jsonObj); 142 std::vector<Group>& groups); 159 std::vector<Group> _groups; 171 static std::map<configKey, std::unique_ptr<Group>> allGroups;
|
/openbmc/phosphor-fan-presence/monitor/ |
H A D | trust_group.hpp | 43 class Group class 46 Group() = delete; 47 virtual ~Group() = default; 48 Group(const Group&) = delete; 49 Group& operator=(const Group&) = delete; 50 Group(Group&&) = default; 51 Group& operator=(Group&&) = default; 58 explicit Group(const std::vector<GroupDefinition>& names) : _names(names) {} in Group() function in phosphor::fan::trust::Group
|
/openbmc/openbmc/meta-quanta/meta-gbs/recipes-phosphor/ipmi/phosphor-ipmi-host/ |
H A D | gbs-ipmid-whitelist.conf | 63 0x2C:0x00 //<Group Extension>:<Group Extension Command> 64 0x2C:0x01 //<Group Extension>:<Get DCMI Capabilities> 65 0x2C:0x02 //<Group Extension>:<Get Power Reading> 66 0x2C:0x03 //<Group Extension>:<Get Power Limit> 67 0x2C:0x06 //<Group Extension>:<Get Asset Tag> 68 0x2C:0x07 //<Group Extension>:<Get Sensor Info> 69 0x2C:0x09 //<Group Extension>:<Get Management Controller Identifier String> 70 0x2C:0x0A //<Group Extension>:<Set Management Controller Identifier String> 71 0x2C:0x10 //<Group Extension>:<Get Temperature Readings> 72 0x2C:0x12 //<Group Extension>:<Set DCMI Configuration Parameters> [all …]
|
/openbmc/phosphor-fan-presence/control/json/triggers/ |
H A D | signal.hpp | 53 void propertiesChanged(Manager* mgr, const Group& group, 63 void interfacesAdded(Manager* mgr, const Group& group, TriggerActions& actions, 73 void interfacesRemoved(Manager* mgr, const Group& group, 83 void nameOwnerChanged(Manager* mgr, const Group& group, TriggerActions& actions, 93 void member(Manager* mgr, const Group& group, TriggerActions& actions, 98 std::function<void(Manager*, const Group&, TriggerActions&, const json&)>;
|
H A D | init.hpp | 41 void getProperties(Manager* mgr, const Group& group); 49 void nameHasOwner(Manager* mgr, const Group& group); 52 using methodHandler = std::function<void(Manager*, const Group&)>;
|
/openbmc/phosphor-host-ipmid/ |
H A D | host-ipmid-whitelist.conf | 45 0x2C:0x00 //<Group Extension>:<Group Extension Command> 46 0x2C:0x01 //<Group Extension>:<Get DCMI Capabilities> 47 0x2C:0x02 //<Group Extension>:<Get Power Reading> 48 0x2C:0x03 //<Group Extension>:<Get Power Limit> 49 0x2C:0x06 //<Group Extension>:<Get Asset Tag> 50 0x2C:0x07 //<Group Extension>:<Get Sensor Info> 51 0x2C:0x10 //<Group Extension>:<Get Temperature Readings>
|
/openbmc/phosphor-fan-presence/control/json/actions/ |
H A D | mapped_floor.hpp | 146 MappedFloor(const json& jsonObj, const std::vector<Group>& groups); 214 std::optional<PropertyVariantType> getMaxGroupValue(const Group& group); 225 const Group* getGroup(const std::string& name); 236 const Group* _keyGroup; 239 const Group* _conditionGroup = nullptr; 254 std::variant<const Group*, std::string> groupOrParameter;
|
/openbmc/phosphor-fan-presence/control/ |
H A D | zone.hpp | 115 void setActiveAllow(const Group* group, bool isActiveAllow); 123 inline void setFloorChangeAllow(const Group* group, bool isAllow) in setFloorChangeAllow() 134 inline void setDecreaseAllow(const Group* group, bool isAllow) in setDecreaseAllow() 297 void removeService(const Group* group, const std::string& name); 306 void setServiceOwner(const Group* group, const std::string& name, 314 void setServices(const Group* group); 323 inline auto getGroupServices(const Group* group) in getGroupServices() 508 const Group& eventGroup, const std::vector<Action>& eventActions, 519 void addTimer(const std::string& name, const Group& group, 529 void timerExpired(const Group& eventGroup, [all …]
|
H A D | types.hpp | 45 using Group = std::vector<std::tuple<std::string, std::string, std::string>>; typedef 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&, 56 using ActionData = std::vector<std::tuple<Group, std::vector<Action>>>; 85 std::tuple<std::string, Group, ActionData, std::vector<Trigger>>; 92 std::tuple<Group, std::string, SignalHandler, std::vector<Action>>;
|
/openbmc/linux/rust/macros/ |
H A D | paste.rs | 3 use proc_macro::{Delimiter, Group, Ident, Spacing, Span, TokenTree}; 51 if let TokenTree::Group(group) = token { in expand() 66 let mut group = Group::new(delimiter, stream.into_iter().collect()); in expand() 68 *token = TokenTree::Group(group); in expand() 82 TokenTree::Group(group) if group.delimiter() == Delimiter::None => { in expand() 89 TokenTree::Group(group) if group.delimiter() == Delimiter::None => { in expand()
|
H A D | quote.rs | 17 impl ToTokens for proc_macro::Group { implementation 70 $v.push(::proc_macro::TokenTree::Group(::proc_macro::Group::new( 79 $v.push(::proc_macro::TokenTree::Group(::proc_macro::Group::new( 88 $v.push(::proc_macro::TokenTree::Group(::proc_macro::Group::new(
|
H A D | vtable.rs | 3 use proc_macro::{Delimiter, Group, TokenStream, TokenTree}; 25 Some(TokenTree::Group(group)) if group.delimiter() == Delimiter::Brace => group, in vtable() 94 tokens.push(TokenTree::Group(Group::new(Delimiter::Brace, new_body))); in vtable()
|
/openbmc/phosphor-host-ipmid/include/ipmid/ |
H A D | oemrouter.hpp | 17 using Group = std::array<std::uint8_t, groupMagicSize>; typedef 68 constexpr Number toOemNumber(const Group& oeg) in toOemNumber() 77 constexpr Group toOemGroup(Number oen) in toOemGroup() 79 return Group{static_cast<std::uint8_t>(oen), in toOemGroup()
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | Apache-1.0 | 3 * Copyright (c) 1995-1999 The Apache Group. All rights reserved. 19 * "This product includes software developed by the Apache Group 22 * 4. The names "Apache Server" and "Apache Group" must not be used to 29 * permission of the Apache Group. 33 * "This product includes software developed by the Apache Group 51 * individuals on behalf of the Apache Group and was originally based 54 * For more information on the Apache Group and the Apache HTTP server
|
H A D | PHP-3.0 | 4 Copyright (c) 1999 - 2010 The PHP Group. All rights reserved. 29 5. The PHP Group may publish revised and/or new versions of the 36 published by the PHP Group. No one other than the PHP Group has 61 individuals on behalf of the PHP Group. 63 The PHP Group can be contacted via Email at group@php.net. 65 For more information on the PHP Group and the PHP project,
|
H A D | PHP-3.01 | 3 Copyright (c) 1999 - 2012 The PHP Group. All rights reserved. 15 …Group may publish revised and/or new versions of the license from time to time. Each version will … 21 …s software consists of voluntary contributions made by many individuals on behalf of the PHP Group. 23 The PHP Group can be contacted via Email at group@php.net. 25 For more information on the PHP Group and the PHP project, please see <http://www.php.net>.
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Led/ |
H A D | meson.build | 2 subdir('Group') subdir 9 input: ['../../../../yaml/xyz/openbmc_project/Led/Group.interface.yaml'], 10 output: ['Group.md'], 22 'xyz/openbmc_project/Led/Group',
|
/openbmc/linux/Documentation/filesystems/ext4/ |
H A D | blocks.rst | 43 * - Blocks Per Block Group 48 * - Inodes Per Block Group 53 * - Block Group Size 105 * - Blocks Per Block Group 110 * - Inodes Per Block Group 115 * - Block Group Size
|
/openbmc/linux/arch/sparc/kernel/ |
H A D | syscalls.S | 217 cmp %g1, NR_syscalls ! IEU1 Group 220 sll %g1, 2, %l4 ! IEU0 Group 223 srl %i1, 0, %o1 ! IEU0 Group 227 srl %i2, 0, %o2 ! IEU0 Group 231 5: call %l7 ! CTI Group brk forced 241 cmp %g1, NR_syscalls ! IEU1 Group 244 sll %g1, 2, %l4 ! IEU0 Group 247 4: mov %i2, %o2 ! IEU0 Group 251 mov %i4, %o4 ! IEU0 Group 253 bne,pn %icc, linux_syscall_trace ! CTI Group [all …]
|
/openbmc/phosphor-led-manager/ |
H A D | README.md | 21 For example, Group 1 says LED1 should be "Blink", and Group 2 says it should be 24 ## Configuration: LED Group Priority 27 to always be consistent, Group Priority can be used to enforce the consistent 30 The Group `Priority` is optional and a higher priority means that when 2 groups 34 ## Configuration Example with Group Priorities (JSON) 142 xyz.openbmc_project.Led.Group interface - - - 155 xyz.openbmc_project.Led.Group Asserted b true
|
/openbmc/openbmc/meta-openembedded/meta-oe/licenses/ |
H A D | OGPL | 7 (c) Copyright 1989 - 1994, 1996 - 1999 The Open Group 31 source systems. You must contact The Open Group for a license allowing 60 notice and should not be construed as a commitment by The Open Group 71 (c) Copyright 1996, 1997, 1998, 1999, 2000 The Open Group. 80 The Open Group LLC 89 Open Group, Apex Plaza, Forbury Road, Reading, Berkshire, RG1 1AX, UK. 95 (c) Copyright 1996, 1997, 1998, 1999, 2000 The Open Group. ALL RIGHTS 98 The Open Group, Open Software Foundation, OSF, OSF/Motif, and Motif are 99 Trademarks of The Open Group
|