/Zephyr-latest/drivers/display/ |
D | mb_display.c | 245 static void update_display_work(struct k_work *work) in update_display_work() argument 247 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in update_display_work()
|
/Zephyr-latest/subsys/net/l2/ethernet/lldp/ |
D | lldp.c | 174 static void lldp_tx_timeout(struct k_work *work) in lldp_tx_timeout() argument 180 ARG_UNUSED(work); in lldp_tx_timeout()
|
/Zephyr-latest/boards/franzininho/esp32s2_franzininho/doc/ |
D | index.rst | 36 Espressif HAL requires WiFi and Bluetooth binary blobs in order work. Run the command 143 The usual ``flash`` target will work with the ``esp32s2_franzininho`` board
|
/Zephyr-latest/tests/drivers/comparator/shell/src/ |
D | test.c | 134 static void test_trigger_handler(struct k_work *work) in test_trigger_handler() argument 136 ARG_UNUSED(work); in test_trigger_handler()
|
/Zephyr-latest/tests/kernel/pending/src/ |
D | main.c | 111 static void sync_threads(struct k_work *work) in sync_threads() argument 114 CONTAINER_OF(work, struct offload_work, work_item); in sync_threads()
|
/Zephyr-latest/subsys/shell/backends/ |
D | shell_websocket.c | 97 static void ws_send_prematurely(struct k_work *work) in ws_send_prematurely() argument 99 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in ws_send_prematurely()
|
/Zephyr-latest/subsys/net/ip/ |
D | ipv4_fragment.c | 31 static void reassembly_timeout(struct k_work *work); 123 static void reassembly_timeout(struct k_work *work) in reassembly_timeout() argument 125 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in reassembly_timeout()
|
D | tcp.c | 557 static void tcp_send_keepalive_probe(struct k_work *work); 755 static void tcp_conn_release(struct k_work *work) in tcp_conn_release() argument 757 struct tcp *conn = CONTAINER_OF(work, struct tcp, conn_release); in tcp_conn_release() 961 static void tcp_send_process(struct k_work *work) in tcp_send_process() argument 963 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in tcp_send_process() 1842 static void tcp_cleanup_recv_queue(struct k_work *work) in tcp_cleanup_recv_queue() argument 1844 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in tcp_cleanup_recv_queue() 1859 static void tcp_resend_data(struct k_work *work) in tcp_resend_data() argument 1861 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in tcp_resend_data() 1939 static void tcp_timewait_timeout(struct k_work *work) in tcp_timewait_timeout() argument [all …]
|
/Zephyr-latest/drivers/ethernet/phy/ |
D | phy_adin2111.c | 423 static void monitor_work_handler(struct k_work *work) in monitor_work_handler() argument 425 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in monitor_work_handler() 598 monitor_work_handler(&data->monitor_work.work); in phy_adin2111_init()
|
/Zephyr-latest/drivers/modem/ |
D | Kconfig | 26 work method provided. This driver differs from the pipe UART driver 27 in that callbacks are executed in a different work queue and data is 46 work method provided. This driver combines abstractions for:
|
/Zephyr-latest/samples/boards/phytec/reel_board/mesh_badge/src/ |
D | mesh.c | 524 static void send_hello(struct k_work *work) in send_hello() argument 551 static void send_baduser(struct k_work *work) in send_baduser() argument 624 static void start_mesh(struct k_work *work) in start_mesh() argument
|
/Zephyr-latest/drivers/disk/nvme/ |
D | nvme_cmd.c | 28 static void request_timeout(struct k_work *work); 279 static void request_timeout(struct k_work *work) in request_timeout() argument 284 ARG_UNUSED(work); in request_timeout()
|
/Zephyr-latest/boards/mediatek/ |
D | index.rst | 50 These devices work entirely in RAM, so there is no "flash" process as 97 the ``mt8195//adsp`` board should work out of the box simply following 104 script should work for most users:
|
/Zephyr-latest/boards/lilygo/ttgo_lora32/doc/ |
D | index.rst | 64 Espressif HAL requires WiFi and Bluetooth binary blobs in order work. Run the command 171 The usual ``flash`` target will work with the ``ttgo_lora32`` board target. 201 The following sample applications will work out of the box with this board:
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | core.py | 492 work = [klass] 493 while work: 494 parent = work.pop() 499 work.append(child)
|
/Zephyr-latest/modules/nrf_wifi/os/ |
D | shim.c | 752 static void irq_work_handler(struct k_work *work) in irq_work_handler() argument 781 k_work_schedule_for_queue(&zep_wifi_intr_q, &intr_priv->work, K_NO_WAIT); in zep_shim_irq_handler() 802 k_work_init_delayable(&intr_priv->work, irq_work_handler); in zep_shim_bus_qspi_intr_reg() 832 k_work_cancel_delayable_sync(&intr_priv->work, &sync); in zep_shim_bus_qspi_intr_unreg()
|
/Zephyr-latest/drivers/espi/ |
D | host_subs_npcx.c | 155 struct k_work work; member 507 struct host_sub_npcx_data *data = CONTAINER_OF(item, struct host_sub_npcx_data, work); in host_port80_work_handler() 558 k_work_submit(&host_sub_data.work); in host_port80_isr() 1161 k_work_init(&host_sub_data.work, host_port80_work_handler); in npcx_host_init_subs_core_domain()
|
/Zephyr-latest/drivers/serial/ |
D | uart_esp32.c | 510 static inline void uart_esp32_async_timer_start(struct k_work_delayable *work, size_t timeout) in uart_esp32_async_timer_start() argument 514 k_work_reschedule(work, K_USEC(timeout)); in uart_esp32_async_timer_start() 681 static void uart_esp32_async_tx_timeout(struct k_work *work) in uart_esp32_async_tx_timeout() argument 683 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in uart_esp32_async_tx_timeout() 691 static void uart_esp32_async_rx_timeout(struct k_work *work) in uart_esp32_async_rx_timeout() argument 693 struct k_work_delayable *dwork = k_work_delayable_from_work(work); in uart_esp32_async_rx_timeout()
|
/Zephyr-latest/drivers/sensor/nxp/fxls8974/ |
D | fxls8974.h | 154 struct k_work work; member
|
/Zephyr-latest/drivers/sensor/ti/tmp108/ |
D | tmp108.h | 136 void tmp108_trigger_handle_one_shot(struct k_work *work);
|
/Zephyr-latest/boards/shields/rk043fn02h_ct/doc/ |
D | index.rst | 10 capacitive touch panel from Rocktech. This LCD panel can work with several i.MX
|
/Zephyr-latest/boards/shields/rk043fn66hs_ctg/doc/ |
D | index.rst | 10 capacitive touch panel from Rocktech. This LCD panel can work with several i.MX
|
/Zephyr-latest/drivers/sensor/bosch/bmp388/ |
D | bmp388.h | 206 struct k_work work; member
|
/Zephyr-latest/boards/shields/weact_ov2640_cam_module/doc/ |
D | index.rst | 24 Your board needs to have a ``zephyr_camera_dvp`` device tree label to work with this shield.
|
/Zephyr-latest/samples/net/sockets/txtime/ |
D | README.rst | 16 work too.
|