/Zephyr-latest/soc/lowrisc/opentitan/ |
D | Kconfig | 20 # OpenTitan Ibex core mtvec mode is read-only / forced to vectored mode.
|
/Zephyr-latest/drivers/ps2/ |
D | ps2_handlers.c | 29 K_OOPS(K_SYSCALL_DRIVER_PS2(dev, read)); in z_vrfy_ps2_read()
|
/Zephyr-latest/drivers/sensor/ams/ams_iAQcore/ |
D | Kconfig | 15 int "Number of read retries"
|
/Zephyr-latest/doc/services/storage/flash_map/ |
D | example_fragment.dts | 19 read-only;
|
/Zephyr-latest/include/zephyr/drivers/ |
D | disk.h | 108 int (*read)(struct disk_info *disk, uint8_t *data_buf, member
|
/Zephyr-latest/samples/boards/nxp/mimxrt595_evk/system_off/ |
D | README.rst | 110 blhost -u 0x1fc9,0x0023 -- efuse-read-once 0x61 117 blhost -u 0x1fc9,0x0023 -- efuse-read-once 0x61 127 >blhost -u 0x1fc9,0x0023 -- efuse-read-once 0x61 128 Inject command 'efuse-read-once' 138 >blhost -u 0x1fc9,0x0023 -- efuse-read-once 0x61 139 Inject command 'efuse-read-once'
|
/Zephyr-latest/scripts/native_simulator/common/src/ |
D | nsi_host_trampolines.c | 56 return read(fd, buffer, size); in nsi_host_read()
|
/Zephyr-latest/boards/sparkfun/pro_micro_rp2040/ |
D | sparkfun_pro_micro_rp2040.dts | 45 read-only; 56 read-only;
|
/Zephyr-latest/boards/adafruit/feather_m4_express/ |
D | adafruit_feather_m4_express.dts | 104 read-only; 110 read-only;
|
/Zephyr-latest/boards/adafruit/grand_central_m4_express/ |
D | adafruit_grand_central_m4_express.dts | 125 read-only; 131 read-only;
|
/Zephyr-latest/boards/adafruit/kb2040/ |
D | adafruit_kb2040.dts | 44 read-only; 54 read-only;
|
/Zephyr-latest/boards/adafruit/feather_m0_lora/ |
D | adafruit_feather_m0_lora.dts | 98 read-only; 104 read-only;
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | h4.c | 293 int read; in read_payload() local 326 read = uart_fifo_read(cfg->uart, net_buf_tail(h4->rx.buf), h4->rx.remaining); in read_payload() 327 if (unlikely(read < 0)) { in read_payload() 328 LOG_ERR("Failed to read UART (err %d)", read); in read_payload() 332 net_buf_add(h4->rx.buf, read); in read_payload() 333 h4->rx.remaining -= read; in read_payload() 335 LOG_DBG("got %d bytes, remaining %u", read, h4->rx.remaining); in read_payload()
|
/Zephyr-latest/drivers/i2s/ |
D | i2s_test.c | 42 .read = vnd_i2s_read,
|
/Zephyr-latest/scripts/west_commands/ |
D | completion.py | 78 print(f.read())
|
/Zephyr-latest/drivers/sensor/memsic/mmc56x3/ |
D | mmc56x3_i2c.c | 39 .read = mmc56x3_reg_read_i2c,
|
/Zephyr-latest/samples/subsys/usb/mass/boards/ |
D | rpi_pico.overlay | 22 read-only;
|
/Zephyr-latest/include/zephyr/retention/ |
D | retention.h | 46 retention_read_api read; member
|
/Zephyr-latest/samples/drivers/auxdisplay/boards/ |
D | esp_wrover_kit.overlay | 25 read-write-gpios = <&aux_display_gpio 1 (GPIO_ACTIVE_HIGH)>;
|
/Zephyr-latest/scripts/tests/twister_blackbox/ |
D | test_hardwaremap.py | 150 load_data = open(path).read() 232 load_data = open(path).read() 282 load_data = open(path).read()
|
/Zephyr-latest/drivers/entropy/ |
D | entropy_cc13xx_cc26xx.c | 175 uint16_t read = len; in entropy_cc13xx_cc26xx_get_entropy_isr() local 185 read = cnt; in entropy_cc13xx_cc26xx_get_entropy_isr() 230 return read; in entropy_cc13xx_cc26xx_get_entropy_isr()
|
/Zephyr-latest/drivers/sdhc/ |
D | intel_emmc_host.c | 408 static int emmc_dma_init(const struct device *dev, struct sdhc_data *data, bool read) in emmc_dma_init() argument 413 if (IS_ENABLED(CONFIG_DCACHE) && !read) { in emmc_dma_init() 456 static int emmc_init_xfr(const struct device *dev, struct sdhc_data *data, bool read) in emmc_init_xfr() argument 463 emmc_dma_init(dev, data, read); in emmc_init_xfr() 514 read ? 1u : 0u); in emmc_init_xfr() 887 struct sdhc_command *cmd, struct sdhc_data *data, bool read) in emmc_send_cmd_data() argument 899 ret = emmc_init_xfr(dev, data, read); in emmc_send_cmd_data() 913 if (read) { in emmc_send_cmd_data() 924 bool read) in emmc_xfr() argument 930 ret = emmc_init_xfr(dev, data, read); in emmc_xfr() [all …]
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | att.c | 1143 int read; in find_type_cb() local 1186 read = attr->read(conn, attr, uuid, sizeof(uuid), 0); in find_type_cb() 1187 if (read < 0) { in find_type_cb() 1196 if (read != data->value_len) { in find_type_cb() 1205 if (!bt_uuid_create(&ref_uuid.uuid, uuid, read)) { in find_type_cb() 1206 LOG_WRN("Unable to create UUID: size %d", read); in find_type_cb() 1212 } else if (memcmp(data->value, uuid, read)) { in find_type_cb() 1325 typedef bool (*attr_read_cb)(struct net_buf *buf, ssize_t read, 1342 static bool attr_read_type_cb(struct net_buf *frag, ssize_t read, in attr_read_type_cb() argument 1349 data->rsp->len = read + sizeof(*data->item); in attr_read_type_cb() [all …]
|
/Zephyr-latest/subsys/fs/ |
D | Kconfig.littlefs | 31 int "Minimum size of a block read" 34 All read operations will be a multiple of this value. 47 needs a read cache, a program cache, and one additional cache 50 multiple of the read and program sizes of the underlying flash
|
/Zephyr-latest/scripts/build/ |
D | llext_prepare_exptab.py | 108 return self.lcs_struct.unpack(self.fd.read(self.lcs_struct.size)) 154 c = self.elf_fd.read(1) 157 c = self.elf_fd.read(1) 256 sh_flags = int.from_bytes(self.elf_fd.read(SHF_SIZE), self.endianness)
|