/openbmc/telemetry/tests/src/ |
H A D | test_transform.cpp | 14 std::vector<std::string> output = in TEST() local 17 EXPECT_TRUE(utils::detail::has_member_reserve<decltype(output)>); in TEST() 18 ASSERT_THAT(output, ElementsAre("1", "2", "3")); in TEST() 24 std::set<std::string> output = in TEST() local 27 EXPECT_FALSE(utils::detail::has_member_reserve<decltype(output)>); in TEST() 28 ASSERT_THAT(output, ElementsAre("1", "2", "3")); in TEST() 34 std::vector<std::string> output = utils::transform<std::vector>( in TEST() local 37 EXPECT_TRUE(utils::detail::has_member_reserve<decltype(output)>); in TEST() 38 ASSERT_THAT(output, ElementsAre("1", "2", "3")); in TEST()
|
/openbmc/phosphor-net-ipmid/ |
H A D | integrity_algo.cpp | 24 std::vector<uint8_t> output(SHA_DIGEST_LENGTH); in generateHMAC() local 27 if (HMAC(EVP_sha1(), k1.data(), k1.size(), input, len, output.data(), in generateHMAC() 37 output.resize(authCodeLength); in generateHMAC() 39 return output; in generateHMAC() 47 auto output = generateHMAC( in verifyIntegrityData() local 52 return (std::equal(output.begin(), output.end(), integrityDataBegin, in verifyIntegrityData() 90 std::vector<uint8_t> output(SHA256_DIGEST_LENGTH); in generateHMAC() local 103 output.resize(authCodeLength); in generateHMAC() 105 return output; in generateHMAC() 113 auto output = generateHMAC( in verifyIntegrityData() local [all …]
|
/openbmc/u-boot/scripts/coccinelle/net/ |
H A D | mdio_register.cocci | 36 - outputT *output 50 identifier update_read_sig.output; 59 + outputT output = 0; 63 + return *output; 70 + return *output; 76 + return *output; 82 identifier update_read_sig.output; 89 - *output 90 + output 92 - output [all …]
|
/openbmc/linux/fs/squashfs/ |
H A D | lzo_wrapper.c | 25 void *output; member 38 stream->output = vmalloc(block_size); in lzo_init() 39 if (stream->output == NULL) in lzo_init() 59 vfree(stream->output); in lzo_free() 67 struct squashfs_page_actor *output) in lzo_uncompress() argument 74 size_t out_len = output->length; in lzo_uncompress() 87 stream->output, &out_len); in lzo_uncompress() 92 data = squashfs_first_page(output); in lzo_uncompress() 93 buff = stream->output; in lzo_uncompress() 104 data = squashfs_next_page(output); in lzo_uncompress() [all …]
|
H A D | lz4_wrapper.c | 28 void *output; member 63 stream->output = vmalloc(block_size); in lz4_init() 64 if (stream->output == NULL) in lz4_init() 85 vfree(stream->output); in lz4_free() 93 struct squashfs_page_actor *output) in lz4_uncompress() argument 111 res = LZ4_decompress_safe(stream->input, stream->output, in lz4_uncompress() 112 length, output->length); in lz4_uncompress() 118 data = squashfs_first_page(output); in lz4_uncompress() 119 buff = stream->output; in lz4_uncompress() 130 data = squashfs_next_page(output); in lz4_uncompress() [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/sdk/cases/ |
H A D | maturin.py | 30 output = self._run(cmd) 31 self.assertRegex(output, r"^ 1 python interpreter found:\n") 33 output, 72 output = self._run(cmd) 73 self.assertRegex(output, r" Found pyo3 bindings with abi3 support for Python ≥ 3.8") 74 self.assertRegex(output, r" Not using a specific python interpreter") 75 self.assertRegex(output, r" Using build options features from pyproject.toml") 76 self.assertRegex(output, r"Compiling guessing-game v0.1.0") 77 self.assertRegex(output, r" Built wheel for abi3 Python ≥ 3.8") 78 self.assertRegex(output, r" Installed guessing-game-0.1.0")
|
/openbmc/linux/Documentation/devicetree/bindings/sound/ |
H A D | st,sta350.txt | 22 - st,output-conf: number, Selects the output configuration: 30 - st,ch1-output-mapping: Channel 1 output mapping 31 - st,ch2-output-mapping: Channel 2 output mapping 32 - st,ch3-output-mapping: Channel 3 output mapping 49 The FFX power output mode selects how the FFX output timing is 72 power output is enabled. 89 - st,activate-mute-output: 120 st,output-conf = /bits/ 8 <0x3>; // set output to 2-channel 123 st,ch1-output-mapping = /bits/ 8 <0>; // set channel 1 output ch 1 124 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1 [all …]
|
H A D | st,sta32x.txt | 26 - st,output-conf: number, Selects the output configuration: 34 - st,ch1-output-mapping: Channel 1 output mapping 35 - st,ch2-output-mapping: Channel 2 output mapping 36 - st,ch3-output-mapping: Channel 3 output mapping 56 Only required for "st,ffx-power-output-mode" == 68 power output is enabled. 90 st,output-conf = /bits/ 8 <0x3>; // set output to 2-channel 93 st,ch1-output-mapping = /bits/ 8 <0>; // set channel 1 output ch 1 94 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1 95 st,ch3-output-mapping = /bits/ 8 <0>; // set channel 3 output ch 1 [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
H A D | rtc.py | 30 (status, output) = self.target.run('hwclock -r') 31 self.assertEqual(status, 0, msg='Failed to get RTC time, output: %s' % output) 37 (status, output) = self.target.run('date %s ; hwclock -w ; hwclock -r' % example_datetime) 38 check_hwclock = re.search('2008-06-23 09:45:..', output) 39 … self.assertTrue(check_hwclock, msg='The RTC time was not set correctly, output: %s' % output) 41 (status, output) = self.target.run('date %s' % current_datetime) 42 self.assertEqual(status, 0, msg='Failed to reset system date & time, output: %s' % output) 44 (status, output) = self.target.run('hwclock -w') 45 self.assertEqual(status, 0, msg='Failed to reset RTC time, output: %s' % output)
|
H A D | pam.py | 22 status, output = self.target.run('login --help') 24 'Status and output:%s and %s' % (status, output)) 27 status, output = self.target.run('passwd --help') 29 'Status and output:%s and %s' % (status, output)) 32 status, output = self.target.run('su --help') 34 'Status and output:%s and %s' % (status, output)) 37 status, output = self.target.run('useradd --help') 39 'Status and output:%s and %s' % (status, output))
|
H A D | maturin.py | 18 status, output = self.target.run("maturin list-python") 23 self.assertEqual(output, " 1 python interpreter found:\n" 51 status, output = self.target.run(cmd) 52 self.assertRegex(output, r" Found pyo3 bindings with abi3 support for Python ≥ 3.8") 53 self.assertRegex(output, r" Not using a specific python interpreter") 54 self.assertRegex(output, r" Using build options features from pyproject.toml") 55 self.assertRegex(output, r"Compiling guessing-game v0.1.0") 56 self.assertRegex(output, r" Built wheel for abi3 Python ≥ 3.8") 57 self.assertRegex(output, r" Installed guessing-game-0.1.0")
|
/openbmc/linux/arch/arm/boot/dts/ti/omap/ |
H A D | omap3xxx-clocks.dtsi | 294 clock-output-names = "pclk_fck"; 314 clock-output-names = "atclk_fck"; 674 clock-output-names = "l3_ick"; 683 clock-output-names = "l4_ick"; 717 clock-output-names = "rm_ick"; 774 clock-output-names = "i2c3_fck"; 782 clock-output-names = "i2c2_fck"; 790 clock-output-names = "i2c1_fck"; 862 clock-output-names = "hdq_fck"; 922 clock-output-names = "sdrc_ick"; [all …]
|
/openbmc/openbmc/meta-security/lib/oeqa/runtime/cases/ |
H A D | sssd.py | 15 status, output = self.target.run('sssctl --help') 17 'Status and output:%s and %s' % (status, output)) 22 status, output = self.target.run('sssctl domain-status') 23 match = re.search('ConfDB initialization has failed', output) 26 'Status and output:%s and %s' % (status, output)) 31 status, output = self.target.run('sssctl domain-list') 32 match = re.search('No domains configured, fatal error!', output) 35 'Status and output:%s and %s' % (status, output))
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Power/ |
H A D | meson.build | 6 output: [ 'ACPIPowerState.md' ], 10 '--output', meson.current_build_dir(), 21 output: [ 'Cap.md' ], 25 '--output', meson.current_build_dir(), 36 output: [ 'CapLimits.md' ], 40 '--output', meson.current_build_dir(), 51 output: [ 'IdlePowerSaver.md' ], 55 '--output', meson.current_build_dir(), 66 output: [ 'Mode.md' ], 81 output: [ 'RestorePolicy.md' ], [all …]
|
/openbmc/u-boot/arch/arm/dts/ |
H A D | keystone-k2l-clocks.dtsi | 33 clock-output-names = "papllclk"; 51 clock-output-names = "dfe"; 61 clock-output-names = "pcie"; 71 clock-output-names = "gem1"; 81 clock-output-names = "gem2"; 91 clock-output-names = "gem3"; 101 clock-output-names = "tac"; 111 clock-output-names = "rac"; 141 clock-output-names = "osr"; 171 clock-output-names = "vcp-0"; [all …]
|
/openbmc/linux/arch/arm/boot/dts/ti/keystone/ |
H A D | keystone-k2l-clocks.dtsi | 13 clock-output-names = "arm-pll-clk"; 30 clock-output-names = "papllclk"; 48 clock-output-names = "dfe"; 58 clock-output-names = "pcie"; 68 clock-output-names = "gem1"; 78 clock-output-names = "gem2"; 88 clock-output-names = "gem3"; 98 clock-output-names = "tac"; 108 clock-output-names = "rac"; 138 clock-output-names = "osr"; [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | locales.py | 30 status, output = qemu.run_serial(cmd) 32 self.assertEqual(status, 1, msg='locale test command failed: output: %s' % output) 33 self.assertIn("fr_FR", output, msg='locale -a test failed: output: %s' % output) 36 status, output = qemu.run_serial(cmd) 38 self.assertEqual(status, 1, msg='localedef test command failed: output: %s' % output) 39 self.assertIn("fr_FR.utf8", output, msg='localedef test failed: output: %s' % output)
|
H A D | imagefeatures.py | 43 status, output = ssh.run("true") 69 status, output = ssh.run("true") 157 data = json.loads(result.output) 161 self.fail("Could not parse '%ss'" % result.output) 298 … self.assertTrue("udevadm" in result.output, msg='Failed to find udevadm: %s' % result.output) 299 dbg_symbols_targets = result.output.splitlines() 303 … self.assertTrue("debug" in result.output, msg='Failed to find debug symbol: %s' % result.output) 329 status, output = qemu.run_serial("apropos 8859") 331 self.assertIn("iso_8859_15", output) 334 status, output = qemu.run_serial("man --pager=cat modprobe") [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/iio/cdc/ |
H A D | adi,ad7746.yaml | 34 adi,exca-output-en: 35 description: Enables the EXCA pin as the excitation output. 38 adi,exca-output-invert: 40 Inverts the excitation output in the EXCA pin. 46 adi,excb-output-en: 47 description: Enables the EXCB pin as the excitation output. 50 adi,excb-output-invert: 71 adi,exca-output-en; 72 adi,exca-output-invert; 73 adi,excb-output-en; [all …]
|
/openbmc/linux/arch/um/drivers/ |
H A D | net_user.c | 56 if (output == NULL) { in read_output() 57 output = &c; in read_output() 61 *output = '\0'; in read_output() 74 ret = read(fd, output, expected); in read_output() 196 read_output(fds[0], output, output_len); in change_tramp() 214 char *output; in change() local 224 if (output == NULL) in change() 230 kfree(output); in change() 234 if (output != NULL) { in change() 235 printk("%s", output); in change() [all …]
|
/openbmc/phosphor-objmgr/src/ |
H A D | handler.cpp | 123 output.begin()) in getObject() 193 output.begin()) != output.begin() || in getSubTree() 307 return output; in getAssociatedSubTree() 329 std::vector<std::string> output; in getAssociatedSubTreePaths() local 337 return output; in getAssociatedSubTreePaths() 364 std::vector<std::string> output; in getSubTreePathsById() local 393 return output; in getSubTreePathsById() 417 output.insert(output.end(), associatedSubTree.begin(), in getAssociatedSubTreeById() 420 return output; in getAssociatedSubTreeById() 443 output.insert(output.end(), associatedSubTree.begin(), in getAssociatedSubTreePathsById() [all …]
|
/openbmc/linux/tools/power/cpupower/bench/ |
H A D | main.c | 82 if (config->output != NULL) in main() 83 fclose(config->output); in main() 85 config->output = prepare_output(optarg); in main() 87 if (config->output == NULL) in main() 114 if (config->output != NULL) in main() 115 fclose(config->output); in main() 149 if (config->output != NULL) in main() 150 fclose(config->output); in main() 182 if (config->output != stdout) in main() 183 fclose(config->output); in main()
|
/openbmc/openbmc-test-automation/security/ |
H A D | test_slp.robot | 36 Verify Service Agents ${output} ${parameter} 43 ${output}= Run which slptool 44 Should Not Be Empty ${output} 50 [Documentation] Run SLPTool command and return output. 55 ${rc} ${output}= Run And Return Rc And Output 58 RETURN ${output} 61 [Documentation] Verifies the output of service types. 79 [Documentation] Verifies the output of srvs. 80 [Arguments] ${output} ${service_agent} 81 # Example of output [all …]
|
/openbmc/qemu/tests/tcg/hexagon/ |
H A D | hvx_misc.c | 32 void *pout = output; in test_load_tmp() 96 void *pout = output; in test_load_cur() 119 void *pout = output; in test_load_aligned() 135 void *pout = output; in test_load_unaligned() 152 void *pout = output; in test_store_aligned() 168 void *pout = output; in test_store_unaligned() 186 void *pout = output; in test_masked_store() 235 void *pout = output; in test_new_value_store() 264 void *pout = output; in test_max_temps() 393 void *pout = output; in test_load_tmp_predicated() [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 154 | 72 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 95 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 118 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 158 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 188 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 218 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 237 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 253 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 268 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map 284 $QEMU_IMG map --output=json "$TEST_IMG" | _filter_qemu_img_map [all …]
|