Home
last modified time | relevance | path

Searched full:sub (Results 1 – 25 of 1093) sorted by relevance

12345678910>>...44

/openbmc/bmcweb/test/redfish-core/include/
H A Devent_matches_filter_test.cpp16 persistent_data::UserSubscription sub; in TEST() local
20 EXPECT_TRUE(eventMatchesFilter(sub, event, "Event")); in TEST()
25 persistent_data::UserSubscription sub; in TEST() local
26 sub.resourceTypes.emplace_back("Task"); in TEST()
27 EXPECT_FALSE(eventMatchesFilter(sub, event, "Event")); in TEST()
28 EXPECT_TRUE(eventMatchesFilter(sub, event, "Task")); in TEST()
33 persistent_data::UserSubscription sub; in TEST() local
34 sub.registryMsgIds.emplace_back("OpenBMC.PostComplete"); in TEST()
38 EXPECT_TRUE(eventMatchesFilter(sub, event, "Event")); in TEST()
42 EXPECT_FALSE(eventMatchesFilter(sub, event, "Event")); in TEST()
[all …]
/openbmc/qemu/tests/
H A Dmeson.build9 'test-qapi-commands-sub-sub-module.c',
10 'test-qapi-commands-sub-sub-module.h',
15 'test-qapi-events-sub-sub-module.c',
16 'test-qapi-events-sub-sub-module.h',
25 'test-qapi-types-sub-sub-module.c',
26 'test-qapi-types-sub-sub-module.h',
29 'test-qapi-visit-sub-sub-module.c',
30 'test-qapi-visit-sub-sub-module.h',
45 'qapi-schema/include/sub-module.json',
46 'qapi-schema/sub-sub-module.json'),
/openbmc/qemu/tests/include/
H A Dmeson.build3 'test-qapi-commands-sub-module.c',
4 'test-qapi-commands-sub-module.h',
5 'test-qapi-events-sub-module.c',
6 'test-qapi-events-sub-module.h',
7 'test-qapi-types-sub-module.c',
8 'test-qapi-types-sub-module.h',
9 'test-qapi-visit-sub-module.c',
10 'test-qapi-visit-sub-module.h',
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libsub/
H A Dlibsub-exporter-progressive-perl_0.001013.bb1 SUMMARY = "Sub::Exporter::Progressive - Only use Sub::Exporter if you need it."
2 DESCRIPTION = "\"Sub::Exporter\" is an incredibly powerful module, but with \
4 This module is a \"Sub::Exporter\" wrapper that will let your users just use \
6 \"Sub::Exporter\" if your users try to use \"Sub::Exporter's\" more advanced \
11 HOMEPAGE = "https://metacpan.org/pod/Sub-Exporter-Progressive/"
16 SRC_URI = "${CPAN_MIRROR}/authors/id/F/FR/FREW/Sub-Exporter-Progressive-${PV}.tar.gz"
19 S = "${WORKDIR}/Sub-Exporter-Progressive-${PV}"
/openbmc/phosphor-power/phosphor-power-sequencer/docs/
H A Dinternal_design.md12 - Sub-class of PowerInterface that provides a concrete implementation of the
16 - Creates a sub-class of PowerSequencerDevice that matches power sequencer
32 - Sub-class of PowerSequencerDevice that implements the standard pgood fault
35 - Sub-class of StandardDevice for power sequencer devices that are bound to a
38 - Sub-class of PMBusDriverDevice for the UCD90X family of power sequencer
41 - Sub-class of UCD90xDevice representing a UCD90160 power sequencer device.
43 - Sub-class of UCD90xDevice representing a UCD90320 power sequencer device.
48 - Sub-class of Services with real implementation of methods.
50 - Sub-class of Services with mock implementation of methods for automated
/openbmc/u-boot/doc/uImage.FIT/
H A Dsource_file_format.txt24 Additionally, old uImage format has been extended to support multi sub-images
87 To identify FIT sub-nodes representing images, hashes, configurations (which
88 are defined in the following sections), the "unit name" of the given sub-node
126 load addresses supplied within sub-image nodes. May be omitted when no
130 - images : This node contains a set of sub-nodes, each of them representing
131 single component sub-image (like kernel, ramdisk, etc.). At least one
132 sub-image is required.
142 This node is a container node for component sub-image nodes. Each sub-node of
146 |- description = "component sub-image description"
148 |- type = "sub-image type name"
[all …]
/openbmc/openbmc-test-automation/gui/gui_test/operations_menu/
H A Dtest_firmware_sub_menu.robot3 Documentation Test OpenBMC Firmware Update" sub menu of "Operations".
44 …Navigate To Required Sub Menu ${xpath_operations_menu} ${xpath_firmware_update_sub_menu} firmwa…
50 Verify Existence Of All Sub Sections Under BMC And Server Section At Poweroff State
51 …[Documentation] Verify existence of all sub sections under BMC and server section at poweroff sta…
55 …Navigate To Required Sub Menu ${xpath_operations_menu} ${xpath_firmware_update_sub_menu} firmwa…
66 Verify Existence Of All Sub Sections Under BMC And Server Section At Power On State
67 …[Documentation] Verify existence of all sub sections under BMC and server section at power on sta…
71 …Navigate To Required Sub Menu ${xpath_operations_menu} ${xpath_firmware_update_sub_menu} firmwa…
85 …Navigate To Required Sub Menu ${xpath_operations_menu} ${xpath_firmware_update_sub_menu} firmwa…
/openbmc/boost-dbus/include/dbus/impl/
H A Dmessage_iterator.ipp23 inline bool message_iterator::open_container(int code, const char *signature, message_iterator& sub)
26 …return dbus_message_iter_open_container(&DBusMessageIter_, code, signature, &sub.DBusMessageIter_);
29 inline bool message_iterator::close_container(message_iterator& sub)
32 return dbus_message_iter_close_container(&DBusMessageIter_, &sub.DBusMessageIter_);
35 inline void message_iterator::abandon_container(message_iterator& sub)
37 dbus_message_iter_abandon_container(&DBusMessageIter_, &sub.DBusMessageIter_);
76 inline void message_iterator::recurse(message_iterator& sub)
78 dbus_message_iter_recurse(&DBusMessageIter_, &sub.DBusMessageIter_);
/openbmc/u-boot/arch/x86/lib/
H A Dscu.c85 static int scu_ipc_cmd(struct ipc_regs *regs, u32 cmd, u32 sub, in scu_ipc_cmd() argument
93 scu_ipc_send_command(regs, (inlen << 16) | (sub << 12) | cmd); in scu_ipc_cmd()
107 * @sub: IPC command sub type
119 int scu_ipc_raw_command(u32 cmd, u32 sub, u32 *in, int inlen, u32 *out, in scu_ipc_raw_command() argument
152 return scu_ipc_cmd(scu->regs, cmd, sub, inbuf, inlen, out, outlen); in scu_ipc_raw_command()
158 * @sub: sub type
167 int scu_ipc_simple_command(u32 cmd, u32 sub) in scu_ipc_simple_command() argument
179 scu_ipc_send_command(scu->regs, sub << 12 | cmd); in scu_ipc_simple_command()
186 * @sub: sub type
194 int scu_ipc_command(u32 cmd, u32 sub, u32 *in, int inlen, u32 *out, int outlen) in scu_ipc_command() argument
[all …]
/openbmc/phosphor-mrw-tools/
H A Dgen_path_callouts.pl54 sub new
67 sub sourceChip
73 sub destChip
79 sub type
85 sub calloutList
94 sub new
104 sub i2cBus
110 sub i2cAddress
119 sub new
128 sub fsiLink
[all …]
H A DUtil.pm12 sub getBMCTarget
30 sub getChildUnitsWithTargetType
50 sub getSizeOfChildUnitsWithType
67 sub getObmcName
86 sub getDevicePath
106 sub adjustI2CAddress
121 sub getEnclosingFru
145 sub adjustI2CPort
155 sub getLocationCode
/openbmc/qemu/include/hw/xen/interface/arch-x86/
H A Dcpuid.h61 * Sub-leaf 0: EAX: bit 0: emulated tsc
68 * Sub-leaf 1: EAX: tsc offset low part
72 * Sub-leaf 2: EAX: host tsc frequency in kHz
78 * Sub-leaf 0: EAX: Features
79 * Sub-leaf 0: EBX: vcpu id (iff EAX has XEN_HVM_CPUID_VCPU_ID_PRESENT flag)
80 * Sub-leaf 0: ECX: domain id (iff EAX has XEN_HVM_CPUID_DOMID_PRESENT flag)
104 * Sub-leaf 0: EAX: max available sub-leaf
105 * Sub-leaf 0: EBX: bits 0-7: max machine address width
/openbmc/openbmc/meta-security/recipes-perl/perl/files/
H A Dlibwhisker2.patch28 @@ -171,7 +173,7 @@ sub command_install_pod {
37 @@ -219,7 +221,7 @@ sub command_install_pod {
38 sub command_uninstall_pod {
46 @@ -243,7 +245,7 @@ sub command_install_library {
55 @@ -271,7 +273,7 @@ sub command_install_library {
56 sub command_uninstall_library {
64 @@ -401,7 +403,7 @@ sub command_socket_diag {
65 sub command_install_compat {
/openbmc/qemu/tests/tcg/openrisc/
H A Dtest_sub.c12 ("l.sub %0, %0, %1\n\t" in main()
17 printf("sub error\n"); in main()
25 ("l.sub %0, %0, %1\n\t" in main()
30 printf("sub error\n"); in main()
H A Dtest_lf_sub.c12 ("lf.sub.s %0, %1, %2\n\t" in main()
17 printf("lf.sub.s error\n"); in main()
25 ("lf.sub.d %0, %1, %2\n\t" in main()
30 printf("lf.sub.d error\n"); in main()
/openbmc/openbmc/poky/meta/recipes-devtools/autoconf/autoconf/
H A Dautoreconf-exclude.patch18 --no-recursive don't rebuild sub-packages
35 @@ -161,6 +166,7 @@ sub parse_args ()
43 @@ -170,6 +176,8 @@ sub parse_args ()
52 @@ -493,8 +501,11 @@ sub autoreconf_current_directory ($)
64 @@ -691,9 +702,12 @@ sub autoreconf_current_directory ($)
77 @@ -730,8 +744,11 @@ sub autoreconf_current_directory ($)
89 @@ -769,7 +786,10 @@ sub autoreconf_current_directory ($)
100 @@ -790,7 +810,10 @@ sub autoreconf_current_directory ($)
111 @@ -807,7 +830,10 @@ sub autoreconf_current_directory ($)
/openbmc/u-boot/test/py/
H A Du_boot_spawn.py4 # Logic to spawn a sub-process and interact with its stdio.
14 """An exception sub-class that indicates that a timeout occurred."""
18 """Represents the stdio of a freshly created sub-process. Commands may be
26 """Spawn (fork/exec) the sub-process.
107 """Send data to the sub-process's stdin.
119 """Wait for the sub-process to emit specific data.
126 see in the sub-process' stdout.
183 self.buf = self.re_vt100.sub('', self.buf, count=1000000)
189 """Close the stdio connection to the sub-process.
191 This also waits a reasonable time for the sub-process to stop running.
/openbmc/boost-dbus/include/dbus/
H A Dmessage.hpp158 message::packer sub; in pack() local
162 if (iter_.open_container(signature[0], &signature[1], sub.iter_) == in pack()
167 if (!sub.pack(element)) { in pack()
171 return iter_.close_container(sub.iter_); in pack()
219 message::packer sub; in pack() local
220 iter_.open_container(element<dbus_variant>::code, type, sub.iter_); in pack()
221 boost::apply_visitor([&](const auto& val) { sub.pack(val); }, v); in pack()
222 iter_.close_container(sub.iter_); in pack()
317 message::unpacker sub; in unpack() local
318 iter_.recurse(sub.iter_); in unpack()
[all …]
/openbmc/openbmc-test-automation/gui/test/server_health/
H A Dtest_obmc_gui_hardware_status.robot
H A Dtest_obmc_gui_sensors.robot
/openbmc/qemu/tests/qapi-schema/
H A Dsub-sub-module.json4 # Sub-module of sub-module include/sub-module.json of qapi-schema-test.json
/openbmc/qemu/tests/qapi-schema/include/
H A Dsub-module.json4 # Sub-module of ../qapi-schema-test.json
6 { 'include': '../sub-sub-module.json' }
/openbmc/openbmc-test-automation/gui/gui_test/settings_menu/
H A Dtest_factory_reset_sub_menu.robot3 Documentation Test suite for OpenBMC GUI "Factory reset" sub-menu of "Settings" menu.
53 …Navigate To Required Sub Menu ${xpath_settings_menu} ${xpath_factory_reset_sub_menu} factory-re…
67 …Navigate To Required Sub Menu ${xpath_settings_menu} ${xpath_factory_reset_sub_menu} factory-re…
86 …Navigate To Required Sub Menu ${xpath_settings_menu} ${xpath_factory_reset_sub_menu} factory-re…
103 …Navigate To Required Sub Menu ${xpath_settings_menu} ${xpath_factory_reset_sub_menu} factory-re…
122 …Navigate To Required Sub Menu ${xpath_settings_menu} ${xpath_factory_reset_sub_menu} factory-re…
140 …Navigate To Required Sub Menu ${xpath_settings_menu} ${xpath_factory_reset_sub_menu} factory-re…
152 …Navigate To Required Sub Menu ${xpath_settings_menu} ${xpath_factory_reset_sub_menu} factory-re…
/openbmc/qemu/include/hw/xen/interface/
H A Darch-arm.h68 * The following hypercalls (and sub operations) are supported on the
73 * All generic sub-operations
76 * All generic sub-operations, with the exception of:
80 * All generic sub-operations, with the exception of:
84 * All generic sub-operations
87 * All generic sub-operations
90 * All generic sub-operations
93 * Exactly these sub-operations are supported:
98 * All generic sub-operations, with the exception of:
104 * Exactly these sub-operations are supported:
[all …]
/openbmc/u-boot/Documentation/
H A Dlinker_lists.rst75 is the sub-list name. Iterators for the whole list should use the
76 global list name ("outer"); iterators for only a sub-list should use
77 the full sub-list name ("outer_2_inner").
80 named "drivers", two sub-lists named "i2c" and "pci", and iterators
81 defined for the whole list and each sub-list:

12345678910>>...44