/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/ |
H A D | 0001-move-fprintf-into-same-block-where-modname-and-symna.patch | 15 output.c | 7 +++---- 18 diff --git a/output.c b/output.c 20 --- a/output.c 21 +++ b/output.c 26 + /* This mimics the output produced by libunwind below. */ 27 + fprintf(options.output, " > %s(%s+0x%" PRIx64 ") [%" PRIx64 "]\n", 31 - /* This mimics the output produced by libunwind below. */ 32 - fprintf(options.output, " > %s(%s+0x%" PRIx64 ") [%" PRIx64 "]\n",
|
/openbmc/phosphor-fan-presence/ |
H A D | hwmon_ffdc.cpp | 22 std::vector<std::string> output; in executeCommand() local 33 return output; in executeCommand() 37 output.emplace_back(buffer.data()); in executeCommand() 40 return output; in executeCommand() 88 std::vector<std::string> output; in getDmesgFFDC() local 103 output.push_back(line); in getDmesgFFDC() 104 if (output.back().back() == '\n') in getDmesgFFDC() 106 output.back().pop_back(); in getDmesgFFDC() 113 return output; in getDmesgFFDC()
|
/openbmc/linux/drivers/gpio/ |
H A D | gpio-en7523.c | 26 void __iomem *output; member 39 u32 output = ioread32(ctrl->output); in airoha_dir_set() local 44 output |= BIT(gpio); in airoha_dir_set() 47 output &= ~BIT(gpio); in airoha_dir_set() 55 iowrite32(output, ctrl->output); in airoha_dir_set() 102 ctrl->output = devm_platform_ioremap_resource(pdev, 3); in airoha_gpio_probe() 103 if (IS_ERR(ctrl->output)) in airoha_gpio_probe() 104 return PTR_ERR(ctrl->output); in airoha_gpio_probe()
|
/openbmc/u-boot/cmd/ |
H A D | md5sum.c | 78 u8 output[16]; in do_md5sum() local 102 md5_wd(buf, len, output, CHUNKSZ_MD5); in do_md5sum() 108 printf("%02x", output[i]); in do_md5sum() 112 store_result(output, *av); in do_md5sum() 121 if (memcmp(output, vsum, 16) != 0) { in do_md5sum() 125 printf("%02x", output[i]); in do_md5sum() 141 u8 output[16]; in do_md5sum() local 151 md5_wd(buf, len, output, CHUNKSZ_MD5); in do_md5sum() 156 printf("%02x", output[i]); in do_md5sum() 160 store_result(output, argv[3]); in do_md5sum()
|
/openbmc/linux/Documentation/sphinx/ |
H A D | maintainers_include.py | 87 output = None 90 output = "| %s" % (line.replace("\\", "\\\\")) 111 output = field_content + "\n\n" 116 output = output + "%s\n%s" % (heading, "~" * len(heading)) 139 output = field_content + "\n" 144 output = line 147 if output != None: 148 for separated in output.split('\n'): 166 output = "\n".join(result) 171 statemachine.string2lines(output), path)
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Threshold/ |
H A D | meson.build | 16 output: ['error.cpp', 'error.hpp', 'event.cpp', 'event.hpp'], 22 '--output', 45 output: ['Critical.md'], 51 '--output', 69 output: ['HardShutdown.md'], 75 '--output', 93 output: ['PerformanceLoss.md'], 99 '--output', 117 output: ['SoftShutdown.md'], 123 '--output', [all …]
|
/openbmc/linux/drivers/media/pci/ddbridge/ |
H A D | ddbridge-core.c | 151 if (dev->port[i].output) in ddb_set_dma_tables() 152 ddb_set_dma_table(dev->port[i].output); in ddb_set_dma_tables() 185 if (port->output->dma->running) { in ddb_unredirect() 189 oredi = port->output->redi; in ddb_unredirect() 197 iredo->port->output->redi = oredi; in ddb_unredirect() 210 port->output->redi = NULL; in ddb_unredirect() 231 if (!port->output) in ddb_redirect() 244 if (port->output->dma->running || input->dma->running) { in ddb_redirect() 257 input->redo = port->output; in ddb_redirect() 258 port->output->redi = input; in ddb_redirect() [all …]
|
/openbmc/linux/arch/hexagon/include/asm/ |
H A D | atomic.h | 36 int output; \ 43 : "=&r" (output) \ 52 int output; \ 59 : "=&r" (output) \ 63 return output; \ 69 int output, val; \ 76 : "=&r" (output), "=&r" (val) \ 80 return output; \
|
/openbmc/openbmc/meta-security/lib/oeqa/runtime/cases/ |
H A D | clamav.py | 33 status, output = self.target.run('freshclam --help ') 35 'Status and output:%s and %s' % (status, output)) 43 (status, output) = self.tc.target.copyTo(self.tmp_path, dst) 44 msg = 'File could not be copied. Output: %s' % output 47 …status, output = self.target.run('ping -c 1 database.clamav.net || curl http://database.clamav.net… 48 msg = ('ping database.clamav.net failed: output is:\n%s' % output) 54 status, output = self.target.run('freshclam --show-progress') 56 'Status and output:%s and %s' % (status, output))
|
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
H A D | suspend.py | 15 (status, output) = self.target.run('date') 16 self.assertEqual(status, 0, msg = 'Failed to run date command, output : %s' % output) 23 status, output = self.target.run('pidof ping') 24 self.target.run('kill -9 %s' % output) 25 …self.assertEqual(status, 0, msg = 'Not able to find process that runs ping, output : %s' % output)… 28 (status, output) = self.target.run('sudo rtcwake -m mem -s 10') 29 … self.assertEqual(status, 0, msg = 'Failed to suspends your system to RAM, output : %s' % output)
|
/openbmc/u-boot/test/py/ |
H A D | multiplexed_log.py | 104 self.output = None 139 output = '' 142 output += 'stdout:\n' 143 output += stdout 146 output += 'stderr:\n' 147 output += stderr 151 output = cpe.output 155 output = '' 158 if output and not output.endswith('\n'): 159 output += '\n' [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | for_each_hash_map_elem.c | 25 int output; member 40 data->output = 3; /* impossible path */ in check_hash_elem() 42 data->output = 4; in check_hash_elem() 44 data->output = data->input; in check_hash_elem() 70 data.output = 0; in check_percpu_elem() 72 percpu_output = data.output; in check_percpu_elem() 88 data.output = 0; in test_pkt_access() 90 hashmap_output = data.output; in test_pkt_access()
|
/openbmc/openbmc/meta-security/meta-tpm/lib/oeqa/runtime/cases/ |
H A D | tpm2.py | 41 status, output = self.target.run(cmd) 42 self.assertEqual(status, 0, msg='\n'.join([cmd, output])) 46 (status, output) = self.target.run('tpm2_pcrread') 56 self.check_endlines(output, expected_endlines) 63 (status, output) = self.target.run('p11-kit list-modules -v') 64 self.assertEqual(status, 0, msg="Modules missing: %s" % output) 68 (status, output) = self.target.run('swtpm_ioctl -i --tcp :2322') 69 self.assertEqual(status, 0, msg="swtpm reset failed: %s" % output)
|
/openbmc/linux/Documentation/hwmon/ |
H A D | dps920ab.rst | 21 This driver implements support for Delta DPS920AB 920W 54V DC single output 45 curr2_input Measured output current 46 curr2_max Maximum output current 47 curr2_rated_max Maximum rated output current 54 in2_input Measured output voltage 55 in2_rated_min Minimum rated output voltage 56 in2_rated_max Maximum rated output voltage 64 power2_input Measured output power 65 power2_rated_max Maximum rated output power
|
H A D | ir35221.rst | 45 curr[2-3]_input Measured output current 48 curr[2-3]_highest Highest output current 49 curr[2-3]_lowest Lowest output current 63 in[2-3]_input Measured output voltage 64 in[2-3]_lcrit Critical minimum output voltage 66 in[2-3]_crit Critical maximum output voltage 68 in[2-3]_highest Highest output voltage 69 in[2-3]_lowest Lowest output voltage 70 in[2-3]_max Maximum output voltage 72 in[2-3]_min Minimum output voltage [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | postactions.py | 25 (status, output) = tc.target.run('df -h') 27 f.write(output) 38 output = subprocess.run(['df', '-hl'], check=True, text=True, stdout=f, env={}) 52 status, output = target.run(cmd) 53 if status != 0 or not output: 55 result += output.split() 69 (status, output) = tc.target.run(cmd, raw = True) 70 if status != 0 or not output: 74 f.write(output)
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/VirtualMedia/ |
H A D | meson.build | 15 output: ['Legacy.md'], 21 '--output', 39 output: ['MountPoint.md'], 45 '--output', 63 output: ['Process.md'], 69 '--output', 87 output: ['Proxy.md'], 93 '--output', 111 output: ['Stats.md'], 117 '--output',
|
/openbmc/phosphor-net-ipmid/ |
H A D | crypt_algo.cpp | 128 std::vector<uint8_t> output(inputLen + AESCBC128BlockSize); in decryptData() local 140 if (!EVP_DecryptUpdate(ctxPtr.get(), output.data(), &outputLen, input, in decryptData() 146 output.resize(outputLen); in decryptData() 148 return output; in decryptData() 154 std::vector<uint8_t> output(inputLen + AESCBC128BlockSize); in encryptData() local 157 if (!RAND_bytes(output.data(), AESCBC128ConfHeader)) in encryptData() 176 output.data())) in encryptData() 199 if (!EVP_EncryptUpdate(ctxPtr.get(), output.data() + AESCBC128ConfHeader, in encryptData() 206 output.resize(AESCBC128ConfHeader + outputLen); in encryptData() 208 return output; in encryptData()
|
/openbmc/linux/arch/um/os-Linux/drivers/ |
H A D | ethertap_user.c | 40 char *output; in etap_change() local 53 output = uml_kmalloc(UM_KERN_PAGE_SIZE, UM_GFP_KERNEL); in etap_change() 54 if (output == NULL) in etap_change() 57 read_output(fd, output, UM_KERN_PAGE_SIZE); in etap_change() 58 if (output != NULL) { in etap_change() 59 printk("%s", output); in etap_change() 60 kfree(output); in etap_change() 140 char *output; in etap_open() local 166 output = uml_kmalloc(output_len, UM_GFP_KERNEL); in etap_open() 167 read_output(control_fds[0], output, output_len); in etap_open() [all …]
|
/openbmc/linux/arch/arm/boot/dts/st/ |
H A D | ste-nomadik-pinctrl.dtsi | 21 ste,output = <OUTPUT_HIGH>; 25 ste,output = <OUTPUT_LOW>; 45 ste,output = <OUTPUT_LOW>; 50 ste,output = <OUTPUT_HIGH>; 107 ste,sleep-output = <SLPM_OUTPUT_LOW>; 113 ste,sleep-output = <SLPM_OUTPUT_HIGH>; 119 ste,sleep-output = <SLPM_OUTPUT_HIGH>; 126 ste,sleep-output = <SLPM_OUTPUT_LOW>; 133 ste,sleep-output = <SLPM_OUTPUT_LOW>; 140 ste,sleep-output = <SLPM_DIR_OUTPUT>; [all …]
|
/openbmc/linux/drivers/gpu/drm/vkms/ |
H A D | vkms_crtc.c | 14 struct vkms_output *output = container_of(timer, struct vkms_output, in vkms_vblank_simulate() local 16 struct drm_crtc *crtc = &output->crtc; in vkms_vblank_simulate() 23 ret_overrun = hrtimer_forward_now(&output->vblank_hrtimer, in vkms_vblank_simulate() 24 output->period_ns); in vkms_vblank_simulate() 28 spin_lock(&output->lock); in vkms_vblank_simulate() 33 state = output->composer_state; in vkms_vblank_simulate() 34 spin_unlock(&output->lock); in vkms_vblank_simulate() 36 if (state && output->composer_enabled) { in vkms_vblank_simulate() 42 spin_lock(&output->composer_lock); in vkms_vblank_simulate() 50 spin_unlock(&output->composer_lock); in vkms_vblank_simulate() [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 083.out | 1 QA output created by 083 44 read failed: Input/output error 56 read failed: Input/output error 60 read failed: Input/output error 64 read failed: Input/output error 68 read failed: Input/output error 72 read failed: Input/output error 76 read failed: Input/output error 80 read failed: Input/output error 109 read failed: Input/output error [all …]
|
/openbmc/linux/arch/arm/boot/dts/aspeed/ |
H A D | aspeed-bmc-lenovo-hr630.dts | 411 output-high; 418 output-low; 425 output-high; 432 output-low; 439 output-low; 446 output-high; 453 output-high; 460 output-high; 467 output-high; 474 output-high; [all …]
|
/openbmc/u-boot/test/py/tests/ |
H A D | test_log.py | 43 output = u_boot_console.run_command('log test %d' % testnum) 44 split = output.replace('\r', '').splitlines() 117 output = cons.run_command('log format %s' % fmt) 118 assert output == '' 119 output = cons.run_command('log rec arch notice file.c 123 func msg') 120 assert output == expected_output 125 output = cons.run_command('log format') 126 assert output == 'Log format: clFLfm'
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Boot/ |
H A D | meson.build | 15 output: ['Mode.md'], 21 '--output', 39 output: ['RebootAttempts.md'], 45 '--output', 63 output: ['RebootPolicy.md'], 69 '--output', 87 output: ['Source.md'], 93 '--output', 111 output: ['Type.md'], 117 '--output',
|