/Zephyr-latest/samples/application_development/code_relocation_nocopy/ |
D | CMakeLists.txt | 17 # sram_code instead runs entirely from SRAM after being copied there.
|
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/ |
D | Kconfig | 17 Internal heap where all the message data would be copied to be processed
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | spsc_pbuf.rst | 17 Packets are copied out of the buffer using :c:func:`spsc_pbuf_read`.
|
D | ring_buffers.rst | 69 "Bytes" data may be copied into the ring buffer using 71 bytes will be copied into the buffer in order, as many as will fit in 72 the allocated buffer. The total number of bytes copied (which may be 78 To avoid multiply-copied-data situations, a "claim" API exists for 123 Data can be copied into the ring buffer (see 153 its contents are copied to the data buffer, along with its associated metadata 159 item, as well as its two metadata values, are copied to areas supplied by the 246 Bytes are copied to a **byte mode** ring buffer by calling 314 Data bytes are copied out from a **byte mode** ring buffer by calling 324 /* Fewer bytes copied. */
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | message_queues.rst | 32 The data item pointed at by the sending thread is copied to a waiting thread, 33 if one exists; otherwise the item is copied to the message queue's ring buffer, 44 The data item is copied to the area specified by the receiving thread; 55 The data item is copied to the area specified by the receiving thread; 192 increases linearly with its size since the item is copied in its entirety
|
D | pipes.rst | 31 a pipe by a thread. Accepted data is either copied directly to the waiting 37 pipe by a thread. Accepted data is either copied from the pipe's ring buffer
|
/Zephyr-latest/lib/net_buf/ |
D | buf.c | 614 size_t copied; in net_buf_linearize() local 627 copied = 0; in net_buf_linearize() 630 memcpy((uint8_t *)dst + copied, frag->data + offset, to_copy); in net_buf_linearize() 632 copied += to_copy; in net_buf_linearize() 642 return copied; in net_buf_linearize()
|
/Zephyr-latest/subsys/net/ip/ |
D | Kconfig.mgmt | 30 If NET_MGMT_EVENT_INFO is enabled the data will be copied to 38 If NET_MGMT_EVENT_INFO is enabled the data will be copied to 46 callback handlers, no info data is copied.
|
/Zephyr-latest/drivers/flash/ |
D | flash_shell.c | 599 uint32_t copied = 0; in bypass_cb() local 601 while (copied < to_copy) { in bypass_cb() 605 memcpy(flash_load_buf + flash_load_boff, recv + copied, buf_copy); in bypass_cb() 608 copied += buf_copy; in bypass_cb()
|
D | Kconfig.nordic_qspi_nor | 40 these restrictions. Such data will be copied into this buffer to
|
/Zephyr-latest/include/zephyr/arch/x86/ |
D | memory.ld | 17 * in RAM and are copied from flash at boot. Text/rodata linked in-place in 87 * or copied into physical RAM by a loader (MMU)
|
/Zephyr-latest/subsys/canbus/isotp/ |
D | isotp.c | 720 size_t copied, to_copy; in isotp_recv() local 734 copied = 0; in isotp_recv() 735 while (rctx->recv_buf && copied < len) { in isotp_recv() 736 to_copy = MIN(len - copied, rctx->recv_buf->len); in isotp_recv() 737 memcpy((uint8_t *)data + copied, rctx->recv_buf->data, to_copy); in isotp_recv() 747 copied += to_copy; in isotp_recv() 750 return copied; in isotp_recv()
|
/Zephyr-latest/include/zephyr/arch/x86/ia32/ |
D | linker.ld | 20 * load address for the DATA section which means it doesn't have to be copied 25 * section is copied into RAMABLE_REGION at runtime. 29 * at the end of the RODATA section. At runtime, the DATA section is copied 585 * to 3 extra bytes copied in next section (BSS). At run time, the XIP copy
|
/Zephyr-latest/drivers/i3c/ |
D | Kconfig | 149 Blocking i3c calls when I3C_RTIO is enabled are copied into a per driver 159 Blocking i3c calls when I3C_RTIO is enabled are copied into a per driver
|
/Zephyr-latest/boards/seeed/xiao_rp2040/doc/ |
D | index.rst | 74 device. The UF2 file should be copied to the device, which will
|
/Zephyr-latest/include/zephyr/rtio/ |
D | rtio.h | 1496 size_t copied = 0; in z_impl_rtio_cqe_copy_out() local 1507 cqes[copied++] = *cqe; in z_impl_rtio_cqe_copy_out() 1509 } while (copied < cqe_count && !sys_timepoint_expired(end)); in z_impl_rtio_cqe_copy_out() 1511 return copied; in z_impl_rtio_cqe_copy_out()
|
/Zephyr-latest/doc/services/ |
D | formatted_output.rst | 57 size of the package depends on alignment. When package is copied, it should be 58 copied to a memory block with the same alignment as origin. 127 formatting since address changes whenever package is copied.
|
/Zephyr-latest/samples/userspace/shared_mem/ |
D | README.rst | 57 The CT is copied to a shared memory partition connecting to the third
|
/Zephyr-latest/drivers/net/ |
D | ppp.c | 638 size_t copied; in ppp_process_msg() local 645 copied = net_buf_linearize(ppp_capture_ctx->capture_buf, in ppp_process_msg() 653 copied, in ppp_process_msg()
|
/Zephyr-latest/boards/sparkfun/pro_micro_rp2040/doc/ |
D | index.rst | 124 device. The UF2 file should be copied to the device, which will
|
/Zephyr-latest/drivers/i2c/ |
D | Kconfig | 84 Blocking i2c calls when I2C_RTIO is enabled are copied into a per driver 94 Blocking i2c calls when I2C_RTIO is enabled are copied into a per driver
|
/Zephyr-latest/samples/net/cloud/mqtt_azure/ |
D | README.rst | 36 copied from `<https://github.com/Azure/azure-iot-sdk-c/blob/master/certs/certs.c>`_
|
/Zephyr-latest/boards/ti/sk_am62/doc/ |
D | index.rst | 72 The testing requires the binary to be copied to the SD card to allow the A53 cores to load it while…
|
/Zephyr-latest/boards/phytec/phyboard_electra/doc/ |
D | index.rst | 104 Therefore, the testing requires the binary to be copied to the SD card to allow the A53 cores to
|
/Zephyr-latest/include/zephyr/arch/nios2/ |
D | linker.ld | 183 * This is code not data, but we need this copied just like XIP data
|