Home
last modified time | relevance | path

Searched refs:work (Results 476 – 500 of 991) sorted by relevance

1...<<11121314151617181920>>...40

/Zephyr-latest/drivers/display/
Dmb_display.c245 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/
Dlldp.c174 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/
Dindex.rst36 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/
Dtest.c134 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/
Dmain.c111 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/
Dshell_websocket.c97 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/
Dipv4_fragment.c31 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()
Dtcp.c557 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/
Dphy_adin2111.c423 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/
DKconfig26 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/
Dmesh.c524 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/
Dnvme_cmd.c28 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/
Dindex.rst50 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/
Dindex.rst64 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/
Dcore.py492 work = [klass]
493 while work:
494 parent = work.pop()
499 work.append(child)
/Zephyr-latest/modules/nrf_wifi/os/
Dshim.c752 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/
Dhost_subs_npcx.c155 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/
Duart_esp32.c510 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/
Dfxls8974.h154 struct k_work work; member
/Zephyr-latest/drivers/sensor/ti/tmp108/
Dtmp108.h136 void tmp108_trigger_handle_one_shot(struct k_work *work);
/Zephyr-latest/boards/shields/rk043fn02h_ct/doc/
Dindex.rst10 capacitive touch panel from Rocktech. This LCD panel can work with several i.MX
/Zephyr-latest/boards/shields/rk043fn66hs_ctg/doc/
Dindex.rst10 capacitive touch panel from Rocktech. This LCD panel can work with several i.MX
/Zephyr-latest/drivers/sensor/bosch/bmp388/
Dbmp388.h206 struct k_work work; member
/Zephyr-latest/boards/shields/weact_ov2640_cam_module/doc/
Dindex.rst24 Your board needs to have a ``zephyr_camera_dvp`` device tree label to work with this shield.
/Zephyr-latest/samples/net/sockets/txtime/
DREADME.rst16 work too.

1...<<11121314151617181920>>...40