/openbmc/sdeventplus/src/sdeventplus/source/ |
H A D | base.cpp | 14 sd_event_source* Base::get() const in get() 19 const Event& Base::get_event() const in get_event() 24 const char* Base::get_description() const in get_description() 33 void Base::set_description(const char* description) const in set_description() 40 void Base::set_prepare(Callback&& callback) in set_prepare() 56 bool Base::get_pending() const in get_pending() 63 int64_t Base::get_priority() const in get_priority() 72 void Base::set_priority(int64_t priority) const in set_priority() 79 Enabled Base::get_enabled() const in get_enabled() 88 void Base::set_enabled(Enabled enabled) const in set_enabled() [all …]
|
H A D | base.hpp | 43 class Base class 46 using Callback = fu2::unique_function<void(Base& source)>; 48 Base(Base&& other) = default; 49 Base& operator=(Base&& other) = default; 50 Base(const Base& other) = default; 51 Base& operator=(const Base& other) = default; 52 virtual ~Base() = default; 155 Base(const Event& event, sd_event_source* source, std::false_type); 166 Base(const Base& other, sdeventplus::internal::NoOwn); 255 class BaseData : public Base [all …]
|
H A D | signal.cpp | 16 Base(event, create_source(event, sig), std::false_type()) in Signal() 23 Base(other, sdeventplus::internal::NoOwn()) in Signal() 40 return static_cast<detail::SignalData&>(Base::get_userdata()); in get_userdata()
|
H A D | child.cpp | 16 Base(event, create_source(event, pid, options), std::false_type()) in Child() 23 Base(other, sdeventplus::internal::NoOwn()) in Child() 42 return static_cast<detail::ChildData&>(Base::get_userdata()); in get_userdata()
|
H A D | event.cpp | 20 Base(other, sdeventplus::internal::NoOwn()) in EventBase() 25 Base(event, create_source(name, create, event), std::false_type()) in EventBase() 33 return static_cast<detail::EventBaseData&>(Base::get_userdata()); in get_userdata()
|
/openbmc/linux/Documentation/devicetree/bindings/clock/ |
H A D | lpc1850-cgu.txt | 42 specific LPC part. Base clocks are numbered from 0 to 27. 45 0 BASE_SAFE_CLK Base safe clock (always on) for WWDT 46 1 BASE_USB0_CLK Base clock for USB0 47 2 BASE_PERIPH_CLK Base clock for Cortex-M0SUB subsystem, 49 3 BASE_USB1_CLK Base clock for USB1 52 5 BASE_SPIFI_CLK Base clock for SPIFI 53 6 BASE_SPI_CLK Base clock for SPI 54 7 BASE_PHY_RX_CLK Base clock for Ethernet PHY Receive clock 55 8 BASE_PHY_TX_CLK Base clock for Ethernet PHY Transmit clock 56 9 BASE_APB1_CLK Base clock for APB peripheral block # 1 [all …]
|
/openbmc/phosphor-host-ipmid/ |
H A D | host-interface.cpp | 26 namespace Base = sdbusplus::server::xyz::openbmc_project::control; 37 {CMD_HEARTBEAT, Base::Host::Command::Heartbeat}, 38 {CMD_POWER, Base::Host::Command::SoftOff}}; 45 {Base::Host::Command::Heartbeat, std::make_pair(CMD_HEARTBEAT, 0x00)}, 46 {Base::Host::Command::SoftOff, std::make_pair(CMD_POWER, SOFT_OFF)}}; 49 void Host::execute(Base::Host::Command command) in execute() 92 ipmiCommand.at(Base::Host::Command::Heartbeat), in currentFirmwareCondition()
|
/openbmc/u-boot/drivers/usb/eth/ |
H A D | Kconfig | 30 Supports 10Base-T/ 100Base-TX/1000Base-T. 40 Supports 10Base-T/ 100Base-TX/1000Base-T.
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | Frameworx-1.0 | 3 …licensee hereunder, effective as of Your acceptance of the Frameworx Code Base or an Downstream Di… 6 …Base, and the source code for improvements and innovations to it, remain free and open to the comm… 12 (a) Frameworx Code Base means the software developed by The Frameworx Company and made availabl… 14 …, the Frameworx Code Base or any portion or element thereof and (ii) in which rights to use and di… 22 (a) use the Frameworx Code Base, in either Source Code or machine-readable form; 24 …e modifications, additions and deletions to the content or structure of the Frameworx Code Base; or 26 (c) create larger works or derivative works including the Frameworx Code Base or any portion or… 32 …ontains, or depends for its intended functionality on, the Frameworx Code Base, or any portion or … 38 …(i) include all portions and elements of the Frameworx Code Base required to build the … 40 …ude, in each file containing any portion or element of the Frameworx Code Base, the following iden… [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/perl/ |
H A D | libxml-sax-base-perl_1.09.bb | 1 SUMMARY = "Base class SAX Drivers and Filters" 2 HOMEPAGE = "http://search.cpan.org/dist/XML-SAX-Base/" 15 SRC_URI = "http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-SAX-Base-${PV}.tar.gz" 20 S = "${WORKDIR}/XML-SAX-Base-${PV}"
|
/openbmc/sdeventplus/test/source/ |
H A D | base.cpp | 38 class BaseImpl : public Base 44 Base(other, sdeventplus::internal::NoOwn()) in BaseImpl() 47 using Base::get_prepare; 59 std::false_type) : Base(event, source, std::false_type()) in BaseImpl() 119 base.set_prepare([](Base&) {}); in set_prepare_placeholder() argument 301 Base::Callback callback = [&completed](Base&) { completed = true; }; in TEST_F() argument 316 Base::Callback callback = [](Base&) {}; in TEST_F() argument 331 base->set_prepare([](Base&) {}); in TEST_F() argument 334 Base::Callback callback = [](Base&) {}; in TEST_F() argument 346 base->set_prepare([](Base&) {}); in TEST_F() argument
|
/openbmc/openpower-host-ipmi-oem/ |
H A D | host-interface.hpp | 13 namespace Base = sdbusplus::org::open_power::Control::server; 21 class Host : public sdbusplus::server::object_t<Base::Host> 30 sdbusplus::server::object_t<Base::Host>(bus, objPath), bus(bus) in Host()
|
H A D | host-interface.cpp | 27 {IPMI_CMD_OCC_RESET, Base::Host::Command::OCCReset}}; 30 void Host::execute(Base::Host::Command command, std::variant<uint8_t> data) in execute() 40 if (command == Base::Host::Command::OCCReset) in execute()
|
/openbmc/bios-settings-mgr/src/ |
H A D | manager.cpp | 37 auto pendingAttrs = Base::pendingAttributes(); in setAttribute() 68 auto table = Base::baseBIOSTable(); in getAttribute() 78 auto pending = Base::pendingAttributes(); in getAttribute() 100 auto baseTable = Base::baseBIOSTable(value, false); in baseBIOSTable() 102 Base::resetBIOSSettings(Base::ResetFlag::NoAction); in baseBIOSTable() 209 auto pendingAttrs = Base::pendingAttributes({}, false); in pendingAttributes() 215 BaseTable biosTable = Base::baseBIOSTable(); in pendingAttributes() 295 PendingAttributes pendingAttribute = Base::pendingAttributes(); in pendingAttributes() 308 auto pendingAttrs = Base::pendingAttributes(pendingAttribute, false); in pendingAttributes()
|
/openbmc/openbmc/poky/meta/lib/patchtest/tests/ |
H A D | base.py | 37 class Base(unittest.TestCase): class 45 shortlog=Base.shortlog(msg['subject']), 46 commit_message=Base.commit_message(payload), 85 cls.commits.append(Base.msg_to_commit(msg)) 116 return super(Base, self).fail(json.dumps(value)) 127 return super(Base, self).skipTest(json.dumps(value)) 135 class Metadata(Base):
|
/openbmc/phosphor-user-manager/ |
H A D | users.hpp | 30 namespace Base = sdbusplus::xyz::openbmc_project; 31 using UsersIface = Base::User::server::Attributes; 33 using TOTPAuthenticatorIface = Base::User::server::TOTPAuthenticator; 34 using DeleteIface = Base::Object::server::Delete;
|
/openbmc/openbmc/meta-evb/meta-evb-arm/meta-evb-fvp-base/ |
H A D | README.md | 3 This layer contains a reference implementation of OpenBMC for Armv-A Base RevC AEM FVP. 6 where the Base FVP represents the management controller which is communicating 17 | Base FVP | PLDM over | | 36 1. Start Base FVP with OpenBMC Image 44 3. Connect the UART's of MCP to Base FVP with 59 - Base FVP Download https://developer.arm.com/Tools%20and%20Software/Fixed%20Virtual%20Platforms
|
/openbmc/phosphor-host-ipmid/softoff/ |
H A D | softoff.hpp | 17 namespace Base = sdbusplus::server::xyz::openbmc_project::ipmi::internal; 24 using SoftPowerOffInherit = sdbusplus::server::object_t<Base::SoftPowerOff>; 84 using Base::SoftPowerOff::responseReceived;
|
/openbmc/linux/Documentation/hwmon/ |
H A D | smsc47b397.rst | 40 pair is located at the HWM Base Address + 0 and the HWM Base Address + 1. The 41 HWM Base address can be obtained from Logical Device 8, registers 0x60 (MSB) 42 and 0x61 (LSB). Currently we are using 0x480 for the HWM Base Address and 170 Obtaining the HWM Base Address 173 The following is an example of how to read the HWM Base Address located in 191 OUT DX,AL ; Point to HWM Base Addr MSB 193 IN AL,DX ; Get MSB of HWM Base Addr
|
/openbmc/openpower-occ-control/ |
H A D | powermode.hpp | 29 namespace Base = sdbusplus::xyz::openbmc_project::Control::Power::server; 30 using ModeInterface = sdbusplus::server::object_t<Base::Mode>; 31 using IpsInterface = sdbusplus::server::object_t<Base::IdlePowerSaver>; 332 Base::Mode::PowerMode powerMode(Base::Mode::PowerMode value) override;
|
/openbmc/phosphor-watchdog/src/ |
H A D | watchdog.hpp | 21 namespace Base = sdbusplus::xyz::openbmc_project::State::server; 22 using WatchdogInherits = sdbusplus::server::object_t<Base::Watchdog>; 106 using Base::Watchdog::enabled;
|
/openbmc/qemu/tests/qapi-schema/ |
H A D | alternate-base.json | 2 { 'struct': 'Base', 5 'base': 'Base',
|
H A D | union-empty.json | 3 { 'struct': 'Base', 'data': { 'type': 'Empty' } } 4 { 'union': 'Union', 'base': 'Base', 'discriminator': 'type', 'data': { } }
|
H A D | union-base-no-discriminator.json | 8 { 'struct': 'Base', 12 'base': 'Base',
|
H A D | struct-base-clash.json | 3 { 'struct': 'Base', 6 'base': 'Base',
|