Home
last modified time | relevance | path

Searched full:codes (Results 1 – 25 of 574) sorted by relevance

12345678910>>...23

/Zephyr-Core-3.6.0/dts/bindings/input/
Dzephyr,input-longpress.yaml15 #include <zephyr/dt-bindings/input/input-event-codes.h>
20 input-codes = <INPUT_KEY_0>, <INPUT_KEY_1>;
21 short-codes = <INPUT_KEY_A>, <INPUT_KEY_B>;
22 long-codes = <INPUT_KEY_X>, <INPUT_KEY_Y>;
51 input-codes:
55 Array of input event key codes (INPUT_KEY_* or INPUT_BTN_*).
57 short-codes:
60 Optional array of key codes to be generated for short press (INPUT_KEY_* or
63 long-codes:
67 Array of key codes to be generated for long press (INPUT_KEY_* or
Dzephyr,lvgl-keypad-input.yaml10 The property input-codes can be used to setup a mapping of input codes
22 input-codes = <INPUT_KEY_1 INPUT_KEY_2>;
23 lvgl-codes = <LV_KEY_NEXT LV_KEY_PREV>;
31 input-codes:
35 Array of input event key codes (INPUT_KEY_* or INPUT_BTN_*).
37 lvgl-codes:
Dzephyr,lvgl-button-input.yaml15 input-codes = <INPUT_KEY_0 INPUT_KEY_1>;
27 input-codes:
31 Array of input event key codes (INPUT_KEY_* or INPUT_BTN_*).
Dmicrochip,cap1203.yaml14 input-codes:
18 Array of input event key codes (INPUT_KEY_* or INPUT_BTN_*).
Dinput-keymap.yaml11 #include <zephyr/dt-bindings/input/input-event-codes.h>
41 List of codes, using the MATRIX_KEY() macro.
/Zephyr-Core-3.6.0/tests/subsys/input/longpress/boards/
Dnative_sim.overlay7 #include <zephyr/dt-bindings/input/input-event-codes.h>
17 input-codes = <INPUT_KEY_0>, <INPUT_KEY_1>;
18 short-codes = <INPUT_KEY_A>, <INPUT_KEY_B>;
19 long-codes = <INPUT_KEY_X>, <INPUT_KEY_Y>;
26 input-codes = <INPUT_KEY_0>, <INPUT_KEY_1>;
27 long-codes = <INPUT_KEY_X>, <INPUT_KEY_Y>;
/Zephyr-Core-3.6.0/samples/subsys/display/lvgl/boards/
Dwio_terminal.overlay6 #include <zephyr/dt-bindings/input/input-event-codes.h>
13 input-codes = <INPUT_KEY_0>;
20 input-codes = <INPUT_KEY_ENTER INPUT_KEY_DOWN INPUT_KEY_UP INPUT_KEY_LEFT INPUT_KEY_RIGHT>;
21 lvgl-codes = <LV_KEY_ENTER LV_KEY_DOWN LV_KEY_UP LV_KEY_LEFT LV_KEY_RIGHT>;
Dnative_posix.overlay7 #include <zephyr/dt-bindings/input/input-event-codes.h>
61 input-codes = <INPUT_KEY_B>;
74 input-codes = <INPUT_KEY_LEFT INPUT_KEY_RIGHT INPUT_KEY_ENTER>;
75 lvgl-codes = <LV_KEY_LEFT LV_KEY_RIGHT LV_KEY_ENTER>;
/Zephyr-Core-3.6.0/drivers/gpio/
Dgpio_emul_sdl.c20 const int *codes; member
35 if (config->codes[pin] == bottom_data->event_scan_code) { in sdl_filter_top()
68 if (config->codes[pin] != GPIOEMULSDL_SCANCODE_UNKNOWN) { in gpio_sdl_init()
69 LOG_INF("GPIO %s:%u = %u", dev->name, pin, config->codes[pin]); in gpio_sdl_init()
91 .codes = gpio_sdl_##inst##_codes, \
/Zephyr-Core-3.6.0/scripts/net/
Denumerate_http_status.py5 """Format HTTP Status codes for use in a C header
7 This script extracts HTTP status codes from mozilla.org
35 codes = tree.xpath('//code/text()') variable
38 for c in codes:
/Zephyr-Core-3.6.0/subsys/input/
Dinput_keymap.c20 const uint16_t *codes; member
36 const uint16_t *codes = cfg->codes; in keymap_cb() local
63 if (offset >= cfg->num_codes || codes[offset] == 0) { in keymap_cb()
70 input_report_key(dev, codes[offset], data->pressed, true, K_FOREVER); in keymap_cb()
115 .codes = keymap_codes_##inst, \
/Zephyr-Core-3.6.0/include/zephyr/ipc/
Dipc_service_backend.h37 * @retval other errno codes depending on the implementation of the
49 * @retval other errno codes depending on the implementation of the
68 * @retval other errno codes depending on the implementation of the
84 * @retval other errno codes depending on the implementation of the
101 * @retval other errno codes depending on the implementation of the
116 * @retval other errno codes depending on the implementation of the
138 * @retval other errno codes depending on the implementation of the
156 * @retval other errno codes depending on the implementation of the
178 * @retval other errno codes depending on the implementation of the
196 * @retval other errno codes depending on the implementation of the
[all …]
Dipc_service.h218 * @retval other errno codes depending on the implementation of the backend.
237 * @retval other errno codes depending on the implementation of the backend.
259 * @retval other errno codes depending on the implementation of the backend.
279 * @retval other errno codes depending on the implementation of the backend.
299 * @retval other errno codes depending on the implementation of the backend.
317 * @retval other errno codes depending on the implementation of the backend.
366 * @retval other errno codes depending on the implementation of the backend.
388 * @retval other errno codes depending on the implementation of the backend.
422 * @retval other errno codes depending on the implementation of the backend.
447 * @retval other errno codes depending on the implementation of the backend.
[all …]
Dicmsg.h81 * @retval other errno codes from dependent modules.
99 * @retval other errno codes from dependent modules.
120 * @retval other errno codes from dependent modules.
/Zephyr-Core-3.6.0/include/zephyr/net/http/
Dstatus.h2 * @brief HTTP response status codes
15 * @brief HTTP response status codes
16 * @defgroup http_status_codes HTTP response status codes
26 * @brief HTTP response status codes
28 * @note HTTP response status codes are subject to IANA approval.
30 …* @see <a href="https://www.iana.org/assignments/http-status-codes">Hypertext Transfer Protocol (H…
32 …e <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status">HTTP response status codes</a>
/Zephyr-Core-3.6.0/include/zephyr/usb/class/
Dusb_cdc.h27 /** Communications Class Subclass Codes */
32 /** Communications Class Protocol Codes */
38 * @brief Data Class Interface Codes
66 * @brief PSTN Subclass Class-Specific Notification Codes
133 * @brief Class-Specific Request Codes for Ethernet subclass
/Zephyr-Core-3.6.0/subsys/sd/
Dsd_utils.h22 * Custom SD return codes. Used internally to indicate conditions that may
31 /* Checks SD status return codes */
/Zephyr-Core-3.6.0/include/zephyr/mgmt/mcumgr/mgmt/
Dmgmt.h95 /** A function handler for translating version 2 SMP error codes to version 1 SMP error
96 * codes (optional)
156 * version 2 error codes to legacy SMP version 1 error codes.
/Zephyr-Core-3.6.0/include/zephyr/sys/
Dfdtable.h154 * Request codes for fd_op_vtable.ioctl().
156 * Note that these codes are internal Zephyr numbers, for internal
162 /* Codes below 0x100 are reserved for fcntl() codes. */
170 /* Codes above 0x5400 and below 0x5500 are reserved for termios, FIO, etc */
/Zephyr-Core-3.6.0/include/zephyr/fs/
Dnvs.h109 * to flash, thus 0 is returned. On error, returns negative value of errno.h defined error codes.
134 * value of errno.h defined error codes.
150 * value of errno.h defined error codes.
161 * especially on spi flash. On error, returns negative value of errno.h defined error codes.
/Zephyr-Core-3.6.0/soc/xtensa/intel_adsp/ace/
Dcomm_widget.c10 * Operation codes
/Zephyr-Core-3.6.0/modules/lvgl/input/
Dlvgl_keypad_input.c56 "Property input-codes must have the same length as lvgl-codes.");
/Zephyr-Core-3.6.0/include/zephyr/dt-bindings/input/
Dinput-event-codes.h6 * Input event codes, for codes available in Linux, use the same values as in
7 * https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/input-event-codes.h
34 * @name Input event KEY codes.
183 * @name Input event BTN codes.
229 * @name Input event ABS codes.
247 * @name Input event REL codes.
264 * @name Input event MSC codes.
/Zephyr-Core-3.6.0/subsys/shell/backends/
Dshell_telnet_protocol.h12 * This defines the Telnet codes, all prefixed as NVT_
19 /** Printer/Keyboard codes */
/Zephyr-Core-3.6.0/tests/drivers/build_all/input/
Dapp.overlay136 input-codes = <0>;
137 short-codes = <0>;
138 long-codes = <0>;
174 input-codes = <0 1 2>;

12345678910>>...23