Home
last modified time | relevance | path

Searched refs:output (Results 251 – 275 of 6198) sorted by relevance

1...<<11121314151617181920>>...248

/openbmc/phosphor-ipmi-flash/bmc/log-handler/
H A Dlog_handlers_builder.cpp44 HandlerConfig<LogBlobHandler::ActionPack> output; in buildHandlerFromJson() local
47 item.at("blob").get_to(output.blobId); in buildHandlerFromJson()
52 if (!std::regex_search(output.blobId, matches, regexpr)) in buildHandlerFromJson()
63 output.handler = std::make_unique<FileHandler>(path); in buildHandlerFromJson()
108 output.actions = std::move(pack); in buildHandlerFromJson()
109 handlers.push_back(std::move(output)); in buildHandlerFromJson()
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dbblock.py71 % (recipe, task, result.output),
139 self.assertNotIn(info_message, result.output)
140 self.assertNotIn(warn_message, result.output)
161 for line in result.output.splitlines():
177 self.assertIn(info_message, result.output)
180 self.assertNotIn(warn_message, result.output)
188 self.assertIn(info_message, result.output)
191 self.assertIn(warn_message, result.output)
197 self.assertNotIn(info_message, result.output)
200 self.assertNotIn(warn_message, result.output)
/openbmc/ipmitool/src/plugins/lanplus/
H A Dlanplus_crypt_impl.c155 uint8_t * output, in lanplus_encrypt_aes_cbc_128() argument
185 if(!EVP_EncryptUpdate(&ctx, output, (int *)bytes_written, input, input_length)) in lanplus_encrypt_aes_cbc_128()
195 if(!EVP_EncryptFinal_ex(&ctx, output + *bytes_written, (int *)&tmplen)) in lanplus_encrypt_aes_cbc_128()
230 uint8_t * output, in lanplus_decrypt_aes_cbc_128() argument
260 if (!EVP_DecryptUpdate(&ctx, output, (int *)bytes_written, input, input_length)) in lanplus_decrypt_aes_cbc_128()
271 if (!EVP_DecryptFinal_ex(&ctx, output + *bytes_written, (int *)&tmplen)) in lanplus_decrypt_aes_cbc_128()
291 printbuf(output, *bytes_written, "Decrypted this data"); in lanplus_decrypt_aes_cbc_128()
/openbmc/linux/Documentation/hwmon/
H A Dmax16601.rst79 in2_input VCORE output voltage.
84 and output current.
100 curr[N+4]_input VCORE output current.
101 curr[N+4]_crit Critical output current.
103 curr[N+4]_max Maximum output current.
107 curr[N+P+5]_input VCORE phase P output current.
110 curr[2*N+5]_input VSA output current.
111 curr[2*N+5]_highest Historical maximum VSA output current.
113 curr[2*N+5]_crit Critical output current.
115 curr[2*N+5]_max Maximum output current.
[all …]
/openbmc/qemu/tests/tcg/multiarch/
H A Dfloat_convs.c47 double output; in convert_single_to_double() local
52 output = input; in convert_single_to_double()
55 out_fmt = fmt_f64(output); in convert_single_to_double()
67 TYPE ## _t output; \
71 output = input; \
73 printf("%11s: %" FMT " (%s)\n", to, output, flag_fmt); \
H A Dfloat_convd.c47 float output; in convert_double_to_single() local
52 output = input; in convert_double_to_single()
55 out_fmt = fmt_f32(output); in convert_double_to_single()
67 TYPE ## _t output; \
71 output = input; \
73 printf("%11s: %" FMT " (%s)\n", to, output, flag_fmt); \
/openbmc/linux/sound/pci/echoaudio/
H A Dindigoio_dsp.c32 static int set_vmixer_gain(struct echoaudio *chip, u16 output, u16 pipe,
106 static int set_vmixer_gain(struct echoaudio *chip, u16 output, u16 pipe, in set_vmixer_gain() argument
112 output >= num_busses_out(chip))) in set_vmixer_gain()
118 chip->vmixer_gain[output][pipe] = gain; in set_vmixer_gain()
119 index = output * num_pipes_out(chip) + pipe; in set_vmixer_gain()
123 "set_vmixer_gain: pipe %d, out %d = %d\n", pipe, output, gain); in set_vmixer_gain()
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Board/
H A Dmeson.build5 output: [ 'common.hpp', 'server.cpp', 'server.hpp', 'aserver.hpp', 'client.hpp', ],
9 '--output', meson.current_build_dir(),
20 output: [ 'IOBoard.md' ],
24 '--output', meson.current_build_dir(),
35 output: [ 'Motherboard.md' ],
39 '--output', meson.current_build_dir(),
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Host/
H A Dmeson.build5output: [ 'error.cpp', 'error.hpp', 'common.hpp', 'server.cpp', 'server.hpp', 'aserver.hpp', 'clie…
9 '--output', meson.current_build_dir(),
20 output: [ 'NMI.md' ],
24 '--output', meson.current_build_dir(),
35 output: [ 'TurboAllowed.md' ],
39 '--output', meson.current_build_dir(),
/openbmc/openbmc-test-automation/oem/nuvoton/
H A Dtest_ipmi_flash.robot110 ${output} ${stderr} ${rc}= OS Execute Command inb 0x4f
111 ${output}= Evaluate ${output} + 4
112 ${b0}= Convert To Hex ${output} length=2
115 ${output} ${stderr} ${rc}= OS Execute Command inb 0x4f
116 ${b1}= Convert To Hex ${output} length=2
120 ${b2}= Convert To Hex ${output} length=2
124 ${b3}= Convert To Hex ${output} length=2
138 ${output} ${stderr} ${rc}= BMC Execute Command ${cmd}
189 ${output} ${stderr} ${rc}= OS Execute Command ${cmd}
206 Should Contain ${output} Result=success
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Ddump.py67 def _write_dump(self, command, output): argument
72 json.dump(output, json_file, indent=4)
75 dump_file.write(output)
98 (status, output) = self.runner.run_serial(cmd)
101 self._write_dump(cmd.split()[0], output)
135 output = self.runner.run_monitor(cmd_name, cmd_data)
137 output = self.runner.run_monitor(cmd_name)
138 self._write_dump(cmd_name, output)
H A Dsshcontrol.py31 self.output = None
50 output = ''
64 output += data
80 output += lastline
82 output = self.process.communicate()[0]
83 self.log(output.rstrip())
86 self.output = output.rstrip()
98 return (self.status, self.output)
127 status, output = proc.run(command, timeout, logfile=self.logfile)
132 …se AssertionError("Command '%s' returned non-zero exit status %d:\n%s" % (command, status, output))
[all …]
/openbmc/linux/arch/arm/boot/dts/ti/keystone/
H A Dkeystone-k2e-clocks.dtsi21 clock-output-names = "papllclk";
30 clock-output-names = "ddr-3a-pll-clk";
39 clock-output-names = "usb1";
49 clock-output-names = "hyperlink-0";
59 clock-output-names = "pcie1";
69 clock-output-names = "xge";
85 clock-output-names = "tsipclka";
92 clock-output-names = "tsipclkb";
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/
H A D0005-adb-add-base64-implementation.patch120 + output string.
171 + uint8_t output[4];
180 + output[0] = input[0] >> 2;
184 + Assert(output[0] < 64);
185 + Assert(output[1] < 64);
186 + Assert(output[2] < 64);
187 + Assert(output[3] < 64);
204 + output[0] = input[0] >> 2;
207 + Assert(output[0] < 64);
208 + Assert(output[1] < 64);
[all …]
/openbmc/linux/drivers/pwm/
H A Dpwm-lp3943.c45 pwm_map->output = pdata->pwms[hwpwm]->output; in lp3943_pwm_request_map()
49 offset = pwm_map->output[i]; in lp3943_pwm_request_map()
80 offset = pwm_map->output[i]; in lp3943_pwm_free_map()
148 index = pwm_map->output[i]; in lp3943_pwm_set_mode()
229 enum lp3943_pwm_output *output; in lp3943_pwm_parse_dt() local
253 output = devm_kcalloc(dev, num_outputs, sizeof(*output), in lp3943_pwm_parse_dt()
255 if (!output) in lp3943_pwm_parse_dt()
258 err = of_property_read_u32_array(node, name[i], output, in lp3943_pwm_parse_dt()
267 pwm_map->output = output; in lp3943_pwm_parse_dt()
/openbmc/linux/Documentation/devicetree/bindings/sound/
H A Dtlv320adcx140.yaml121 1 - GPIO1 is configured as a general-purpose output (GPO)
123 3 - GPIO1 is configured as a secondary ASI output (SDOUT2)
124 4 - GPIO1 is configured as a PDM clock output (PDMCLK)
139 output drive type for the GPIO pin can be one of the following:
140 0 - Hi-Z output
169 GPO output configuration can be one of the following:
172 1 - GPOX is configured as a general-purpose output (GPO)
173 2 - GPOX is configured as a device interrupt output (IRQ)
174 3 - GPOX is configured as a secondary ASI output (SDOUT2)
175 4 - GPOX is configured as a PDM clock output (PDMCLK)
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D026.out.nocache1 QA output created by 026
7 write failed: Input/output error
12 write failed: Input/output error
19 write failed: Input/output error
26 write failed: Input/output error
57 write failed: Input/output error
58 read failed: Input/output error
65 write failed: Input/output error
66 read failed: Input/output error
74 read failed: Input/output error
[all …]
H A D223176 $QEMU_IMG map --output=json --image-opts \
178 $QEMU_IMG map --output=json --image-opts \
186 $QEMU_IMG map --output=json --image-opts \
194 $QEMU_IMG map --output=json --image-opts \
221 $QEMU_IMG map --output=json --image-opts \
226 $QEMU_IMG map --output=json --image-opts --max-length=12345 \
228 $QEMU_IMG map --output=json --image-opts --start-offset=12345 \
/openbmc/linux/drivers/media/platform/nxp/imx8-isi/
H A Dimx8-isi-pipe.c39 .output = MEDIA_BUS_FMT_YUV8_1X24,
44 .output = MEDIA_BUS_FMT_YUV8_1X24,
51 .output = MEDIA_BUS_FMT_RGB888_1X24,
64 .output = MEDIA_BUS_FMT_Y8_1X8,
70 .output = MEDIA_BUS_FMT_Y10_1X10,
76 .output = MEDIA_BUS_FMT_Y12_1X12,
82 .output = MEDIA_BUS_FMT_Y14_1X14,
415 code->code = info->output; in mxc_isi_pipe_enum_mbus_code()
500 format->code = info->output; in mxc_isi_pipe_set_fmt()
517 mf->code = info->output; in mxc_isi_pipe_set_fmt()
[all …]
/openbmc/linux/arch/mips/boot/dts/mscc/
H A Dserval_common.dtsi89 output-low;
94 output-high;
99 output-high;
104 output-high;
109 output-high;
114 output-high;
119 output-high;
/openbmc/linux/arch/arm64/boot/dts/arm/
H A Djuno-clocks.dtsi15 clock-output-names = "juno:uartclk";
22 clock-output-names = "clk48mhz";
29 clock-output-names = "smc_clk";
36 clock-output-names = "apb_pclk";
43 clock-output-names = "faxi_clk";
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-bus-intel_th-output-devices5 Description: (RW) Writes of 1 or 0 enable or disable trace output to this
6 output device. Reads return current status. Requires that the
7 correstponding output port driver be loaded.
13 Description: (RO) Port number, corresponding to this output device on the
14 switch (GTH) or "unassigned" if the corresponding output
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-g-audioout.rst13 VIDIOC_G_AUDOUT - VIDIOC_S_AUDOUT - Query or select the current audio output
38 To query the current audio output applications zero out the ``reserved``
43 output.
46 current audio output applications can initialize the ``index`` field and
49 ``VIDIOC_S_AUDOUT`` ioctl. Drivers switch to the requested output or
51 write-only ioctl, it does not return the current audio output attributes
70 - Identifies the audio output, set by the driver or application.
73 - Name of the audio output, a NUL-terminated ASCII string, for
97 No audio outputs combine with the current video output, or the
98 number of the selected audio output is out of bounds or it does not
/openbmc/qemu/qapi/
H A Dmeson.build9 'qobject-output-visitor.c',
11 'string-output-visitor.c',
118 output: qapi_util_outputs + qapi_specific_outputs + qapi_nonmodule_outputs,
124 # These loops must be synchronized with the output of the above custom target.
127 foreach output : qapi_util_outputs
128 if output.endswith('.h')
131 if output.endswith('.trace-events')
138 foreach output : qapi_specific_outputs + qapi_nonmodule_outputs
139 if output.endswith('.h')
142 if output.endswith('.trace-events')
/openbmc/linux/drivers/gpu/drm/radeon/
H A Dradeon_atpx_handler.c163 struct atpx_px_params output; in radeon_atpx_validate() local
170 memset(&output, 0, sizeof(output)); in radeon_atpx_validate()
178 size = min(sizeof(output), size); in radeon_atpx_validate()
180 memcpy(&output, info->buffer.pointer, size); in radeon_atpx_validate()
182 valid_bits = output.flags & output.valid_flags; in radeon_atpx_validate()
230 struct atpx_verify_interface output; in radeon_atpx_verify_interface() local
238 memset(&output, 0, sizeof(output)); in radeon_atpx_verify_interface()
246 size = min(sizeof(output), size); in radeon_atpx_verify_interface()
248 memcpy(&output, info->buffer.pointer, size); in radeon_atpx_verify_interface()
252 output.version, output.function_bits); in radeon_atpx_verify_interface()
[all …]

1...<<11121314151617181920>>...248