Home
last modified time | relevance | path

Searched full:ad (Results 1 – 25 of 163) sorted by relevance

1234567

/openbmc/phosphor-logging/test/openpower-pels/
H A Dadditional_data_test.cpp26 AdditionalData ad{data}; in TEST() local
28 EXPECT_TRUE(ad.getValue("KEY1")); in TEST()
29 EXPECT_EQ(*(ad.getValue("KEY1")), "VALUE1"); in TEST()
31 EXPECT_TRUE(ad.getValue("KEY2")); in TEST()
32 EXPECT_EQ(*(ad.getValue("KEY2")), "VALUE2"); in TEST()
34 EXPECT_FALSE(ad.getValue("x")); in TEST()
36 auto value3 = ad.getValue("KEY3"); in TEST()
40 EXPECT_FALSE(ad.getValue("HELLOWORLD")); in TEST()
41 EXPECT_FALSE(ad.getValue("VALUE5")); in TEST()
43 auto json = ad.toJSON(); in TEST()
[all …]
H A Devent_logger_test.cpp28 const EventLogger::ADMap& ad) in create() argument
33 _prevAD = ad; in create()
76 AdditionalData ad; in TEST() local
77 ad.add("key1", "value1"); in TEST()
79 eventLogger.log("one", Entry::Level::Error, ad); in TEST()
88 EXPECT_EQ(ch._prevAD, ad.getData()); in TEST()
92 eventLogger.log("two", Entry::Level::Error, ad); in TEST()
93 eventLogger.log("three", Entry::Level::Error, ad); in TEST()
109 eventLogger.log("three", Entry::Level::Error, ad); in TEST()
110 eventLogger.log("two", Entry::Level::Error, ad); in TEST()
[all …]
H A Duser_header_test.cpp115 AdditionalData ad; in TEST() local
117 UserHeader uh(regEntry, phosphor::logging::Entry::Level::Error, ad, in TEST()
142 UserHeader uh(regEntry, phosphor::logging::Entry::Level::Error, ad, in TEST()
156 AdditionalData ad; in TEST() local
169 UserHeader uh(regEntry, phosphor::logging::Entry::Level::Error, ad, in TEST()
176 UserHeader uh(regEntry, phosphor::logging::Entry::Level::Error, ad, in TEST()
183 UserHeader uh(regEntry, phosphor::logging::Entry::Level::Error, ad, in TEST()
206 AdditionalData ad; in TEST() local
208 UserHeader uh(regEntry, phosphor::logging::Entry::Level::Error, ad, in TEST()
228 AdditionalData ad; in TEST() local
[all …]
H A Dregistry_test.cpp464 // Callouts without AD, that depend on system type, in TEST_F()
508 AdditionalData ad; in TEST_F() local
511 auto callouts = Registry::getCallouts(json, systemNames, ad); in TEST_F()
537 callouts = Registry::getCallouts(json, systemNames, ad); in TEST_F()
554 AdditionalData ad; in TEST_F() local
556 EXPECT_THROW(Registry::getCallouts(json, systemNames, ad), in TEST_F()
561 // Callouts without AD, that depend on system type, in TEST_F()
594 AdditionalData ad; in TEST_F() local
597 auto callouts = Registry::getCallouts(json, systemNames, ad); in TEST_F()
611 callouts = Registry::getCallouts(json, systemNames, ad); in TEST_F()
[all …]
H A Dsrc_test.cpp206 AdditionalData ad{adData}; in TEST_F() local
211 SRC src{entry, ad, dataIface}; in TEST_F()
267 AdditionalData ad{adData}; in TEST_F() local
279 SRC src{entry, ad, dataIface}; in TEST_F()
286 SRC src{entry, ad, dataIface}; in TEST_F()
293 SRC src{entry, ad, dataIface}; in TEST_F()
312 AdditionalData ad{adData}; in TEST_F() local
315 SRC src{*entry, ad, dataIface}; in TEST_F()
335 AdditionalData ad{adData}; in TEST_F() local
346 SRC src{entry, ad, dataIface}; in TEST_F()
[all …]
H A Dpel_test.cpp166 AdditionalData ad{data}; in TEST_F() local
172 ad, ffdc, dataIface, journal}; in TEST_F()
207 EXPECT_EQ(udCount, 2); // AD section and sysInfo section in TEST_F()
217 ad, ffdc, in TEST_F()
241 AdditionalData ad{data}; in TEST_F() local
246 ad, ffdc, dataIface, journal}; in TEST_F()
259 EXPECT_EQ(udCount, 2); // AD section and sysInfo section in TEST_F()
362 std::map<std::string, std::string> ad{{"KEY1", "VALUE1"}, in TEST_F() local
366 AdditionalData additionalData{ad}; in TEST_F()
411 std::map<std::string, std::string> ad{{"_PID", std::to_string(getpid())}}; in TEST_F() local
[all …]
/openbmc/qemu/hw/ide/
H A Dahci.c41 static bool ahci_write_fis_d2h(AHCIDevice *ad, bool d2h_fis_i);
42 static void ahci_clear_cmd_issue(AHCIDevice *ad, uint8_t slot);
43 static void ahci_init_d2h(AHCIDevice *ad);
45 static bool ahci_map_clb_address(AHCIDevice *ad);
46 static bool ahci_map_fis_address(AHCIDevice *ad);
47 static void ahci_unmap_clb_address(AHCIDevice *ad);
48 static void ahci_unmap_fis_address(AHCIDevice *ad);
235 * @ad: Device to dis/engage.
239 static int ahci_cond_start_engines(AHCIDevice *ad) in ahci_cond_start_engines() argument
241 AHCIPortRegs *pr = &ad->port_regs; in ahci_cond_start_engines()
[all …]
/openbmc/ibm-logging/test/
H A Dtest_policy.cpp290 std::vector<std::string> ad{"FOO=BAR"s, "CALLOUT_INVENTORY_PATH=mod2"s}; in TEST_F() local
293 {"AdditionalData"s, ad}}; in TEST_F()
302 std::vector<std::string> ad{"FOO=BAR"s, in TEST_F() local
306 {"AdditionalData"s, ad}}; in TEST_F()
315 std::vector<std::string> ad{"FOO=BAR"s, in TEST_F() local
319 {"AdditionalData"s, ad}}; in TEST_F()
328 std::vector<std::string> ad{"FOO=BAR"s, "PROCEDURE=109"s}; in TEST_F() local
331 {"AdditionalData"s, ad}}; in TEST_F()
340 std::vector<std::string> ad{"FOO=BAR"s, "RAIL_NAME=RAIL_5"s}; in TEST_F() local
343 {"AdditionalData"s, ad}}; in TEST_F()
[all …]
/openbmc/u-boot/drivers/video/
H A Dfsl_diu_fb.c226 struct diu_ad *ad; in allocate_fb() local
237 ad = addr.vaddr; in allocate_fb()
238 ad->addr = cpu_to_le32(addr.paddr + ad_size); in allocate_fb()
239 ad->aoi_size = cpu_to_le32((yres << 16) | xres); in allocate_fb()
240 ad->src_size_g_alpha = cpu_to_le32((yres << 12) | xres); in allocate_fb()
241 ad->offset_xyi = 0; in allocate_fb()
242 ad->offset_xyd = 0; in allocate_fb()
247 return ad; in allocate_fb()
253 struct diu_ad *ad; in fsl_diu_init() local
305 ad = allocate_fb(info.var.xres, info.var.yres, in fsl_diu_init()
[all …]
/openbmc/u-boot/doc/uImage.FIT/
H A Dcommand_syntax_extensions.txt47 Ad. 1. This is equivalent to cases 2,3,8, depending on the type of image at
51 Ad. 2. Boot kernel image located at <addr1>.
54 Ad. 3. First and second components of the image at <addr1> are assumed to be a
66 Ad. 4. Similar to case 3, but the kernel is booted without initrd. Second
70 Ad. 5. Boot kernel image located at <addr1> with initrd loaded with ramdisk
74 Ad. 6. <addr1> is the address of a kernel image, <addr2> is the address of a
79 Ad. 7. <addr1> is the address of a kernel image and <addr3> is the address of
83 Ad. 8. Image at <addr1> is assumed to contain a default configuration, which
88 Ad. 9. Similar to case 2: boot kernel stored in <subimg1> from the image at
92 Ad. 10. Boot configuration <conf> from the image at <addr1>.
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/opkg-utils/opkg-utils/
H A D0001-update-alternatives-correctly-match-priority.patch24 - if grep -qw "$priority" $ad/$name; then
25 + if grep -qw "$priority"$ $ad/$name; then
26 …ernatives: $name has multiple providers with the same priority, please check $ad/$name for details"
28 echo "$path $priority" >> $ad/$name
/openbmc/qemu/tests/qtest/
H A Dtco-test.c254 QDict *ad; in test_tco_second_timeout_pause() local
267 ad = get_watchdog_action(&td); in test_tco_second_timeout_pause()
268 g_assert(!strcmp(qdict_get_str(ad, "action"), "pause")); in test_tco_second_timeout_pause()
269 qobject_unref(ad); in test_tco_second_timeout_pause()
279 QDict *ad; in test_tco_second_timeout_reset() local
292 ad = get_watchdog_action(&td); in test_tco_second_timeout_reset()
293 g_assert(!strcmp(qdict_get_str(ad, "action"), "reset")); in test_tco_second_timeout_reset()
294 qobject_unref(ad); in test_tco_second_timeout_reset()
304 QDict *ad; in test_tco_second_timeout_shutdown() local
317 ad = get_watchdog_action(&td); in test_tco_second_timeout_shutdown()
[all …]
/openbmc/u-boot/arch/m68k/include/asm/
H A Dimmap_5445x.h120 u8 podr_fbadh; /* Flexbus AD High Port Output Data Register */
121 u8 podr_fbadmh; /* Flexbus AD Med-High Port Output Data Register */
122 u8 podr_fbadml; /* Flexbus AD Med-Low Port Output Data Register */
123 u8 podr_fbadl; /* Flexbus AD Low Port Output Data Register */
143 u8 pddr_fbadh; /* Flexbus AD High Port Data Direction Register */
144 u8 pddr_fbadmh; /* Flexbus AD Med-High Port Data Direction Register */
145 u8 pddr_fbadml; /* Flexbus AD Med-Low Port Data Direction Register */
146 u8 pddr_fbadl; /* Flexbus AD Low Port Data Direction Register */
166 u8 ppdsdr_fbadh; /* Flexbus AD High Port Pin Data/Set Data Register */
167 u8 ppdsdr_fbadmh; /* Flexbus AD Med-High Port Pin Data/Set Data Register */
[all …]
/openbmc/phosphor-fan-presence/presence/
H A Dgpio.cpp99 std::map<std::string, std::string> ad; in logConflict() local
105 ad.emplace("_PID", std::to_string(getpid())); in logConflict()
106 ad.emplace("CALLOUT_INVENTORY_PATH", fanInventoryPath); in logConflict()
107 ad.emplace("GPIO_NUM", std::to_string(pin)); in logConflict()
108 ad.emplace("GPIO_DEVICE_PATH", (phys.c_str())); in logConflict()
118 severity, ad); in logConflict()
/openbmc/phosphor-fan-presence/monitor/
H A Dfan_error.cpp85 auto ad = getAdditionalData(isPowerOffError); in commit() local
119 "CreateWithFFDCFiles", _errorName, sev, ad, ffdc); in commit()
133 std::map<std::string, std::string> ad; in getAdditionalData() local
135 ad.emplace("_PID", std::to_string(getpid())); in getAdditionalData()
139 ad.emplace("CALLOUT_INVENTORY_PATH", _fanName); in getAdditionalData()
144 ad.emplace("FAN_SENSOR", _sensorName); in getAdditionalData()
152 ad.emplace("SEVERITY_DETAIL", "SYSTEM_TERM"); in getAdditionalData()
155 return ad; in getAdditionalData()
/openbmc/u-boot/scripts/
H A Dcheck-config.sh6 # ad-hoc CONFIG options
8 # Use scripts/build-whitelist.sh to generate the list of current ad-hoc
54 echo >&2 "The following new ad-hoc CONFIG options were detected:"
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/samba/
H A Dsamba_4.19.8.bb60 SYSTEMD_PACKAGES = "${PN}-base ${PN}-ad-dc winbind ctdb"
62 SYSTEMD_SERVICE:${PN}-ad-dc = "${@bb.utils.contains('PACKAGECONFIG', 'ad-dc', 'samba.service', '', …
66 # There are prerequisite settings to enable ad-dc, so disable the service by default.
69 SYSTEMD_AUTO_ENABLE:${PN}-ad-dc = "disable"
96 PACKAGECONFIG[ad-dc] = "--with-experimental-mit-ad-dc,--without-ad-dc,python3-markdown python3-dnsp…
158 if [ "${@bb.utils.contains('PACKAGECONFIG', 'ad-dc', 'yes', 'no', d)}" = "no" ]; then
217 ${PN}-common ${PN}-base ${PN}-ad-dc \
252 FILES:${PN}-ad-dc = "${sbindir}/samba \
257 RDEPENDS:${PN}-ad-dc = "krb5-kdc"
/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dadditional_data.hpp37 * @param[in] ad - the AdditionalData property vector with
40 explicit AdditionalData(const std::map<std::string, std::string>& ad) : in AdditionalData() argument
41 _data(ad) in AdditionalData()
H A Devent_logger.hpp72 * @param[in] ad - The additional data property of the event log
75 phosphor::logging::Entry::Level severity, const AdditionalData& ad) in log() argument
79 _eventsToCreate.emplace(message, severity, ad); in log()
/openbmc/qemu/target/arm/tcg/
H A Dcrypto_helper.c57 AESState *ad = (AESState *)(vd + i); in HELPER() local
71 ad->d[0] = t.d[1]; in HELPER()
72 ad->d[1] = t.d[0]; in HELPER()
75 aesenc_SB_SR_AK(ad, &t, &aes_zero, false); in HELPER()
86 AESState *ad = (AESState *)(vd + i); in HELPER() local
96 ad->d[0] = t.d[1]; in HELPER()
97 ad->d[1] = t.d[0]; in HELPER()
100 aesdec_ISB_ISR_AK(ad, &t, &aes_zero, false); in HELPER()
111 AESState *ad = (AESState *)(vd + i); in HELPER() local
120 ad->d[0] = t.d[1]; in HELPER()
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/User/Ldap/
H A DCreate.interface.yaml38 Specifies the the configured server is ActiveDirectory(AD) or
41 has to react differently for AD vs openldap.
/openbmc/qemu/tests/tcg/m68k/
H A Dtrap.c29 #define FMT_INS [ad] "a"(&expect_si_addr), [pc] "a"(&expect_mc_pc)
31 "move.l #1f, (%[ad])\n\tmove.l #1f, (%[pc])\n" S "\n1:\n"
33 "move.l #0f, (%[ad])\n\tmove.l #1f, (%[pc])\n" S "\n1:\n"
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Network/Experimental/
H A DBond.interface.yaml25 balance-xor, 802.3ad, and tlb modes.
51 IEEE 802.3ad Dynamic link aggregation.
/openbmc/u-boot/board/freescale/t104xrdb/
H A Ddiu.c22 * Note that we need to byte-swap the value before it's written to the AD
25 * AD register on the MPC8610 and on the P1022.
/openbmc/phosphor-fan-presence/sensor-monitor/
H A Dthreshold_alarm_logger.cpp274 std::map<std::string, std::string> ad; in createEventLog() local
296 ad.emplace("SENSOR_NAME", sensorPath); in createEventLog()
297 ad.emplace("_PID", std::to_string(getpid())); in createEventLog()
304 ad.emplace("SENSOR_VALUE", std::to_string(sensorValue)); in createEventLog()
326 ad.emplace("CALLOUT_INVENTORY_PATH", callout); in createEventLog()
341 ad.emplace("THRESHOLD_VALUE", std::to_string(thresholdValue)); in createEventLog()
364 "Create", errorName, convertForMessage(severity), ad); in createEventLog()

1234567