/linux/Documentation/userspace-api/media/rc/ |
A D | keytable.c.rst | 33 void prtcode (int *codes) 39 printf("scancode 0x%04x = %s (0x%02x)\\n", codes[0], p->name, codes[1]); 44 if (isprint (codes[1])) 45 printf("scancode %d = '%c' (0x%02x)\\n", codes[0], codes[1], codes[1]); 47 printf("scancode %d = 0x%02x\\n", codes[0], codes[1]); 66 int codes[2]; 98 prtcode(codes); 155 // printf("\\t%04x=%04x\\n",codes[0], codes[1]); 162 prtcode(codes); 171 if (!ioctl(fd, EVIOCGKEYCODE, codes) && codes[1] != KEY_RESERVED) [all …]
|
A D | lirc-set-transmitter-mask.rst | 13 LIRC_SET_TRANSMITTER_MASK - Enables send codes on a given set of transmitters 37 send IR codes. 50 appropriately. The generic error codes are described at the
|
/linux/drivers/input/keyboard/ |
A D | dlink-dir685-touchkeys.c | 24 u16 codes[7]; member 84 tk->input->keycode = tk->codes; in dir685_tk_probe() 85 tk->codes[0] = KEY_UP; in dir685_tk_probe() 86 tk->codes[1] = KEY_DOWN; in dir685_tk_probe() 87 tk->codes[2] = KEY_LEFT; in dir685_tk_probe() 88 tk->codes[3] = KEY_RIGHT; in dir685_tk_probe() 89 tk->codes[4] = KEY_ENTER; in dir685_tk_probe() 90 tk->codes[5] = KEY_WPS_BUTTON; in dir685_tk_probe() 95 tk->codes[6] = KEY_RESERVED; in dir685_tk_probe() 98 for (i = 0; i < ARRAY_SIZE(tk->codes); i++) in dir685_tk_probe() [all …]
|
A D | ipaq-micro-keys.c | 26 u16 *codes; member 50 input_report_key(keys->input, keys->codes[key], down); in micro_key_receive() 105 keys->codes = devm_kmemdup(&pdev->dev, micro_keycodes, in micro_key_probe() 108 keys->input->keycode = keys->codes; in micro_key_probe()
|
/linux/drivers/staging/media/imx/ |
A D | imx-media-utils.c | 19 .codes = IMX_BUS_FMTS( 27 .codes = IMX_BUS_FMTS( 74 .codes = IMX_BUS_FMTS( 135 .codes = IMX_BUS_FMTS( 146 .codes = IMX_BUS_FMTS( 157 .codes = IMX_BUS_FMTS( 168 .codes = IMX_BUS_FMTS( 179 .codes = IMX_BUS_FMTS( 318 if (!fmt->codes) in imx_media_enum_pixel_formats() 326 if (!fmt->codes[j]) in imx_media_enum_pixel_formats() [all …]
|
/linux/drivers/media/i2c/ |
A D | ir-kbd-i2c.c | 369 u8 codes[61]; member 502 u8 codes[174]; in zilog_ir_format() local 533 codes[c++] = (p << 4) | s; in zilog_ir_format() 553 codes[c++] = (p << 4) | s; in zilog_ir_format() 565 if (!memcmp(&codes[c - rep * 3], &codes[c - rep * 2], rep) && in zilog_ir_format() 566 !cmp_no_trail(&codes[c - rep], &codes[c - rep * 2], rep)) { in zilog_ir_format() 582 copy_codes(code_block->codes, codes, leading); in zilog_ir_format() 584 copy_codes(code_block->codes + leading + 1, codes + leading, in zilog_ir_format() 587 code_block->codes[c++] = 0xc0; in zilog_ir_format() 595 code_block->codes[0] = 0x82; in zilog_ir_format() [all …]
|
A D | imx219.c | 432 static const u32 codes[] = { variable 658 for (i = 0; i < ARRAY_SIZE(codes); i++) in imx219_get_format_code() 659 if (codes[i] == code) in imx219_get_format_code() 662 if (i >= ARRAY_SIZE(codes)) in imx219_get_format_code() 668 return codes[i]; in imx219_get_format_code() 811 if (code->index >= (ARRAY_SIZE(codes) / 4)) in imx219_enum_mbus_code() 815 code->code = imx219_get_format_code(imx219, codes[code->index * 4]); in imx219_enum_mbus_code() 911 for (i = 0; i < ARRAY_SIZE(codes); i++) in imx219_set_pad_format() 912 if (codes[i] == fmt->format.code) in imx219_set_pad_format() 914 if (i >= ARRAY_SIZE(codes)) in imx219_set_pad_format() [all …]
|
/linux/Documentation/input/ |
A D | event-codes.rst | 1 .. _input-event-codes: 4 Input event codes 32 Codes section for details on valid codes for each type. 86 Event codes 89 Event codes define the precise type of event. 130 A few EV_KEY codes have special meanings: 186 instead of EV_REL codes. 188 A few EV_REL codes have special meanings: 196 see REL_WHEEL_HI_RES. These event codes are legacy codes and 220 A few EV_ABS codes have special meanings: [all …]
|
/linux/Documentation/driver-api/usb/ |
A D | error-codes.rst | 1 .. _usb-error-codes: 3 USB Error codes 8 This is the documentation of (hopefully) all possible error codes (and 17 Error codes returned by :c:func:`usb_submit_urb` 80 Error codes returned by ``in urb->status`` or in ``iso_frame_desc[n].status`` (for ISO) 97 may report more status codes. 180 Error codes like ``-EPROTO``, ``-EILSEQ`` and ``-EOVERFLOW`` normally 186 This is also one of several codes that different kinds of host 193 Error codes returned by usbcore-functions 196 .. note:: expect also other submit and transfer status codes
|
/linux/Documentation/i2c/ |
A D | fault-codes.rst | 6 codes in the I2C/SMBus stack. 21 In short, your I2C driver code may need to know these codes in order 26 I2C and SMBus fault codes 34 codes that may be returned, and other cases where these codes should 35 be returned. However, drivers should not return other codes for these 38 Also, codes returned by adapter probe methods follow rules which are
|
/linux/Documentation/admin-guide/media/ |
A D | remote-controller.rst | 14 pulse/space sequences and then to scan codes, returning such codes to 27 switch the protocol and to test the reception of scan codes; 62 linux input layer (via event device). It also supports receiving IR codes
|
/linux/lib/zlib_inflate/ |
A D | inftrees.c | 23 int zlib_inflate_table(codetype type, unsigned short *lens, unsigned codes, in zlib_inflate_table() argument 95 for (sym = 0; sym < codes; sym++) in zlib_inflate_table() 132 for (sym = 0; sym < codes; sym++) in zlib_inflate_table()
|
/linux/drivers/media/platform/vsp1/ |
A D | vsp1_entity.c | 246 const unsigned int *codes, unsigned int ncodes) in vsp1_subdev_enum_mbus_code() argument 254 code->code = codes[code->index]; in vsp1_subdev_enum_mbus_code() 361 const unsigned int *codes, unsigned int ncodes, in vsp1_subdev_set_pad_format() argument 393 if (fmt->format.code == codes[i]) in vsp1_subdev_set_pad_format() 397 format->code = i < ncodes ? codes[i] : codes[0]; in vsp1_subdev_set_pad_format()
|
A D | vsp1_entity.h | 181 const unsigned int *codes, unsigned int ncodes, 187 const unsigned int *codes, unsigned int ncodes);
|
A D | vsp1_rwpf.c | 34 static const unsigned int codes[] = { in vsp1_rwpf_enum_mbus_code() local 40 if (code->index >= ARRAY_SIZE(codes)) in vsp1_rwpf_enum_mbus_code() 43 code->code = codes[code->index]; in vsp1_rwpf_enum_mbus_code()
|
/linux/Documentation/devicetree/bindings/input/ |
A D | qcom,pm8941-pwrkey.yaml | 42 Use the linux event codes defined in 43 include/dt-bindings/input/linux-event-codes.h
|
/linux/Documentation/devicetree/bindings/misc/ |
A D | xlnx,sd-fec.txt | 6 customer specified Quasi-cyclic (QC) codes. The Turbo decode functionality 7 principally covers codes used by LTE. The FEC Engine offers significant 25 - xlnx,sdfec-code : Should contain "ldpc" or "turbo" to describe the codes
|
/linux/Documentation/userspace-api/media/ |
A D | gen-errors.rst | 14 .. flat-table:: Generic error codes 90 #. This list is not exhaustive; ioctls may return other error codes. 95 #. Request-specific error codes are listed in the individual
|
/linux/Documentation/hwmon/ |
A D | dell-smm-hwmon.rst | 64 If ``pwm1_enable`` is not available, then it means that SMM codes for 66 for your hardware. It is possible that codes that work for other 68 new codes. 83 probe the BIOS on your machine and discover the appropriate codes. 87 Again, when you find new codes, we'd be happy to have your patches!
|
/linux/drivers/mtd/nand/ |
A D | Kconfig | 45 codes are more powerful and cpu intensive than traditional Hamming 46 ECC codes. They are used with NAND devices requiring more than 1 bit
|
/linux/Documentation/userspace-api/media/cec/ |
A D | cec-func-ioctl.rst | 56 appropriately. The generic error codes are described at the 59 Request-specific error codes are listed in the individual requests
|
/linux/Documentation/userspace-api/media/mediactl/ |
A D | request-func-ioctl.rst | 56 appropriately. The generic error codes are described at the 59 Command-specific error codes are listed in the individual command
|
A D | media-func-ioctl.rst | 56 appropriately. The generic error codes are described at the 59 Request-specific error codes are listed in the individual requests
|
/linux/tools/testing/selftests/tc-testing/creating-testcases/ |
A D | AddingTestCases.txt | 49 more acceptable exit codes for this command. 70 more acceptable exit codes for this command. 87 It's possible to include acceptable exit codes with the setup/teardown command 90 acceptable exit codes for the command.
|
/linux/Documentation/driver-api/surface_aggregator/clients/ |
A D | dtx.rst | 158 Error and status codes are divided into different categories, which can be 172 - Non-error status codes. 184 - Unknown error codes. 191 Unknown status or error codes sent by the EC are assigned to the ``UNKNOWN`` 195 Currently used error codes are: 231 Other error codes are reserved for future use. Non-error status codes may 272 Again, other codes are reserved for future use. 283 |sdtx_event_code|. Note that other event codes are reserved for future use, 355 Other error codes in this context are reserved for future use. 357 These codes can be classified via the ``SDTX_CATEGORY()`` macro to discern
|