/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/ |
D | lll.c | 824 struct lll_event *ready; local 831 ready = prepare_dequeue_iter_ready_get(&idx); 834 if (ready) { 840 ticks_at_preempt_next = ready->prepare_param.ticks_at_expire; 845 if (&ready->prepare_param != prepare_param) { 846 ready_short = ready; 849 ready = NULL; 878 (ready && is_resume)) { 900 ready = ready_short; 904 struct lll_event *first = ready ? ready : next; [all …]
|
/Zephyr-latest/subsys/shell/backends/ |
D | shell_rpmsg.c | 41 if (!sh_rpmsg->ready) { in uninit() 46 sh_rpmsg->ready = false; in uninit() 60 if (sh_rpmsg->ready) { in init() 83 sh_rpmsg->ready = true; in init() 92 if (!sh_rpmsg->ready) { in enable() 109 if (!sh_rpmsg->ready) { in write() 139 if (!sh_rpmsg->ready) { in read()
|
/Zephyr-latest/drivers/usb/common/nrf_usbd_common/ |
D | Kconfig | 14 bool "Send ZLP on ISO IN when not ready" 19 data is ready to be sent. When enabled, ZLP is sent when no data is 20 ready. When disabled, no response is sent (bus timeout occurs).
|
/Zephyr-latest/drivers/serial/ |
D | uart_native_ptty_bottom.c | 52 int ready; in np_uart_stdin_poll_in_bottom() local 59 ready = select(in_f+1, &readfds, NULL, NULL, &timeout); in np_uart_stdin_poll_in_bottom() 61 if (ready == 0) { in np_uart_stdin_poll_in_bottom() 63 } else if (ready == -1) { in np_uart_stdin_poll_in_bottom()
|
/Zephyr-latest/drivers/usb/uhc/ |
D | Kconfig.max3421e | 24 int "Maximum retries for oscillator ready event" 27 Specify the number of retries for oscillator ready event.
|
/Zephyr-latest/drivers/usb/udc/ |
D | Kconfig.dwc2 | 43 int "UDC DWC2 USBHS VBUS ready event timeout in ms" 48 UDC DWC2 USBHS VBUS ready event timeout. If the VBUS is not ready
|
/Zephyr-latest/tests/benchmarks/sched_queues/ |
D | Kconfig | 20 will add to the ready queue. Increasing this value will places greater 21 stress on the ready queue and better highlight the performance 22 differences as the number of threads in the ready queue changes.
|
D | README.rst | 7 number of ready threads increases. This benchmark can be used to help 12 * Time to add a threads of increasing priority to the ready queue. 13 * Time to add threads of decreasing priority to the ready queue.
|
/Zephyr-latest/drivers/firmware/scmi/ |
D | core.c | 61 if (chan->ready) { in scmi_core_setup_chan() 85 chan->ready = true; in scmi_core_setup_chan() 168 if (!proto->tx->ready) { in scmi_send_message()
|
/Zephyr-latest/doc/kernel/services/scheduling/ |
D | index.rst | 21 - transition of a thread to the :ref:`ready state <thread_states>`, for 38 The kernel's scheduler selects the highest priority ready thread 39 to be the current thread. When multiple ready threads of the same priority 58 The kernel can be built with one of several choices for the ready queue 62 * Simple linked-list ready queue (:kconfig:option:`CONFIG_SCHED_DUMB`) 64 The scheduler ready queue will be implemented as a simple unordered list, with 71 * Red/black tree ready queue (:kconfig:option:`CONFIG_SCHED_SCALABLE`) 73 The scheduler ready queue will be implemented as a red/black tree. This has 80 so). Most applications won't need this ready queue implementation. 82 * Traditional multi-queue ready queue (:kconfig:option:`CONFIG_SCHED_MULTIQ`) [all …]
|
/Zephyr-latest/drivers/disk/nvme/ |
D | nvme_controller.c | 63 uint8_t enabled, ready; in nvme_controller_disable() local 69 ready = (csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK; in nvme_controller_disable() 74 if (ready == 0) { in nvme_controller_disable() 81 if (ready == 0) { in nvme_controller_disable() 99 uint8_t enabled, ready; in nvme_controller_enable() local 106 ready = (csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK; in nvme_controller_enable() 110 if (ready == 1) { in nvme_controller_enable()
|
/Zephyr-latest/drivers/sensor/nxp/fxls8974/ |
D | Kconfig | 41 bool "Data ready interrupt to INT1 pin" 44 Say Y to route data ready interrupt to INT1 pin. Say N to route to
|
/Zephyr-latest/arch/x86/core/intel64/ |
D | cpu.c | 84 while (x86_cpuboot[cpu_num].ready == 0) { in arch_cpu_start() 126 cpuboot->ready++; in z_x86_cpu_init()
|
/Zephyr-latest/cmake/sca/codechecker/ |
D | sca.cmake | 72 ${CMAKE_COMMAND} -E touch ${output_dir}/codechecker.ready) 74 ${output_dir}/codechecker.ready) 87 DEPENDS ${CMAKE_BINARY_DIR}/compile_commands.json ${output_dir}/codechecker.ready 96 COMMAND ${CMAKE_COMMAND} -E rm ${output_dir}/codechecker.ready
|
/Zephyr-latest/drivers/sensor/bosch/bmc150_magn/ |
D | Kconfig | 71 bool "Data ready trigger" 74 Enable data ready interrupt for BMC150 magnetometer
|
/Zephyr-latest/doc/_doxygen/ |
D | doxygen-awesome-darkmode-toggle.js | 60 $(document).ready(function() { 74 $(document).ready(function(){
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_multidomain_helper.h | 177 bool ready; member 199 bool ready; member
|
/Zephyr-latest/include/zephyr/shell/ |
D | shell_rpmsg.h | 37 bool ready; member
|
/Zephyr-latest/drivers/timer/ |
D | Kconfig.nrf_xrtc | 15 When this option is picked, system clock may not be ready when code relying 25 it is ready. When this option is picked, system clock is available after
|
/Zephyr-latest/drivers/sensor/st/iis3dhhc/ |
D | Kconfig | 66 bool "Data ready interrupt to INT1 pin" 70 Say Y to route data ready interrupt to INT1 pin. Say N to route to
|
/Zephyr-latest/samples/subsys/usb/hid-keyboard/src/ |
D | main.c | 73 static void kb_iface_ready(const struct device *dev, const bool ready) in kb_iface_ready() argument 76 dev->name, ready ? "ready" : "not ready"); in kb_iface_ready() 77 kb_ready = ready; in kb_iface_ready()
|
/Zephyr-latest/doc/services/debugging/ |
D | debugmon.rst | 14 It also contains a ready implementation of the interrupt, which can be used with 26 With a SEGGER debug probe, it's possible to use a ready, SEGGER-provided implementation 45 The ready implementation provided with :kconfig:option:`CONFIG_SEGGER_DEBUGMON` provides functional…
|
/Zephyr-latest/drivers/sensor/ams/ams_iAQcore/ |
D | Kconfig | 19 Number of retries when reading failed or device not ready.
|
/Zephyr-latest/boards/snps/hsdk4xd/ |
D | Kconfig.hsdk4xd | 9 The ARC HS4x/4xD Development Kit is a ready-to-use software development
|
/Zephyr-latest/boards/snps/hsdk/ |
D | Kconfig.hsdk | 9 The DesignWare ARC HS Development Kit is a ready-to-use platform for
|