Home
last modified time | relevance | path

Searched refs:k_work (Results 1 – 25 of 597) sorted by relevance

12345678910>>...24

/Zephyr-latest/kernel/
Dwork.c66 static void handle_flush(struct k_work *work) { } in handle_flush()
70 struct k_work *work = &flusher->work; in init_flusher()
88 struct k_work *work) in init_work_cancel()
105 static void finalize_flush_locked(struct k_work *work) in finalize_flush_locked()
125 static void finalize_cancel_locked(struct k_work *work) in finalize_cancel_locked()
150 void k_work_init(struct k_work *work, in k_work_init()
156 *work = (struct k_work)Z_WORK_INITIALIZER(handler); in k_work_init()
158 SYS_PORT_TRACING_OBJ_INIT(k_work, work); in k_work_init()
161 static inline int work_busy_get_locked(const struct k_work *work) in work_busy_get_locked()
166 int k_work_busy_get(const struct k_work *work) in k_work_busy_get()
[all …]
/Zephyr-latest/tests/bluetooth/audio/mocks/src/
Dkernel.c36 struct k_work *work; in k_work_reschedule()
62 struct k_work *work; in k_work_schedule()
88 int k_work_cancel(struct k_work *work) in k_work_cancel()
95 void k_work_init(struct k_work *work, k_work_handler_t handler) in k_work_init()
100 int k_work_submit(struct k_work *work) in k_work_submit()
107 int k_work_busy_get(const struct k_work *work) in k_work_busy_get()
114 struct k_work *work; in k_sleep()
142 struct k_work *work, *tmp; in mock_kernel_cleanup()
/Zephyr-latest/drivers/wifi/esp_at/
Desp.h191 struct k_work connect_work;
192 struct k_work recvdata_work;
193 struct k_work send_work;
194 struct k_work close_work;
251 struct k_work init_work;
253 struct k_work scan_work;
254 struct k_work connect_work;
255 struct k_work disconnect_work;
256 struct k_work iface_status_work;
257 struct k_work mode_switch_work;
[all …]
/Zephyr-latest/tests/bluetooth/host/conn/mocks/
Dkernel.c17 DEFINE_FAKE_VOID_FUNC(k_work_init, struct k_work *, k_work_handler_t);
20 DEFINE_FAKE_VALUE_FUNC(bool, k_work_flush, struct k_work *, struct k_work_sync *);
21 DEFINE_FAKE_VALUE_FUNC(int, k_work_submit, struct k_work *);
22 DEFINE_FAKE_VALUE_FUNC(int, k_work_submit_to_queue, struct k_work_q *, struct k_work *);
Dkernel.h40 DECLARE_FAKE_VOID_FUNC(k_work_init, struct k_work *, k_work_handler_t);
43 DECLARE_FAKE_VALUE_FUNC(bool, k_work_flush, struct k_work *, struct k_work_sync *);
44 DECLARE_FAKE_VALUE_FUNC(int, k_work_submit, struct k_work *);
45 DECLARE_FAKE_VALUE_FUNC(int, k_work_submit_to_queue, struct k_work_q *, struct k_work *);
/Zephyr-latest/soc/st/stm32/stm32wbax/hci_if/
Dhost_stack_if.c17 struct k_work ble_ctlr_stack_work, bpka_work;
34 static void ble_ctlr_stack_handler(struct k_work *work) in ble_ctlr_stack_handler()
59 static void bpka_work_handler(struct k_work *work) in bpka_work_handler()
Dll_sys_if_adapt.c17 struct k_work ll_sys_work;
29 static void ll_sys_bg_process_handler(struct k_work *work) in ll_sys_bg_process_handler()
/Zephyr-latest/tests/kernel/workq/work_queue/src/
Dstart_stop.c18 static void work_handler(struct k_work *work) in work_handler()
27 struct k_work work; in ZTEST()
29 struct k_work works[NUM_TEST_ITEMS]; in ZTEST()
/Zephyr-latest/drivers/modem/
Dmodem_at_shell.c35 static struct k_work at_shell_open_pipe_work;
36 static struct k_work at_shell_attach_chat_work;
37 static struct k_work at_shell_release_chat_work;
127 static void at_shell_open_pipe_handler(struct k_work *work) in at_shell_open_pipe_handler()
140 static void at_shell_attach_chat_handler(struct k_work *work) in at_shell_attach_chat_handler()
149 static void at_shell_release_chat_handler(struct k_work *work) in at_shell_release_chat_handler()
/Zephyr-latest/drivers/clock_control/
Dclock_control_nrf2_common.h34 struct k_work work; \
72 uint8_t clock_config_update_begin(struct k_work *work);
/Zephyr-latest/drivers/wifi/eswifi/
Deswifi_offload.h43 struct k_work connect_work;
44 struct k_work send_work;
/Zephyr-latest/drivers/wifi/nrf_wifi/inc/
Dfmac_main.h76 struct k_work nrf_wifi_net_iface_work;
85 struct k_work nrf_wifi_rpu_recovery_work;
129 void nrf_wifi_scan_timeout_work(struct k_work *work);
/Zephyr-latest/include/zephyr/modem/backend/
Duart.h40 struct k_work rx_disabled_work;
48 struct k_work transmit_idle_work;
/Zephyr-latest/tests/kernel/profiling/profiling_api/src/
Dmain.c16 static struct k_work work[NUM_OF_WORK];
26 static void work_handler(struct k_work *w) in work_handler()
/Zephyr-latest/tests/subsys/modem/mock/
Dmodem_backend_mock.h30 struct k_work receive_ready_work;
31 struct k_work transmit_idle_work;
/Zephyr-latest/tests/kernel/interrupt/src/
Dinterrupt_offload.c17 static struct k_work offload_work[NUM_WORK];
46 struct k_work *work;
52 static void entry_offload_job(struct k_work *work) in entry_offload_job()
71 struct k_work *work = ((struct interrupt_param *)param)->work; in isr_handler()
/Zephyr-latest/subsys/modem/backends/
Dmodem_backend_uart.c14 static void modem_backend_uart_receive_ready_handler(struct k_work *item) in modem_backend_uart_receive_ready_handler()
22 static void modem_backend_uart_transmit_idle_handler(struct k_work *item) in modem_backend_uart_transmit_idle_handler()
/Zephyr-latest/samples/bluetooth/mesh/src/
Dboard.c49 static struct k_work *button_work;
79 static int button_init(struct k_work *button_pressed) in button_init()
109 int board_init(struct k_work *button_pressed) in board_init()
/Zephyr-latest/samples/boards/nordic/mesh/onoff_level_lighting_vnd_app/src/mesh/
Dno_transition_work_handler.c14 static void unsolicitedly_publish_states_work_handler(struct k_work *work) in unsolicitedly_publish_states_work_handler()
37 static void no_transition_work_handler(struct k_work *work) in no_transition_work_handler()
Dno_transition_work_handler.h11 extern struct k_work no_transition_work;
/Zephyr-latest/samples/subsys/mgmt/mcumgr/smp_svr/src/
Dbluetooth.c18 static struct k_work advertise_work;
29 static void advertise(struct k_work *work) in advertise()
/Zephyr-latest/subsys/net/lib/config/
Dinit_clock_sntp.c17 static void sntp_resync_handler(struct k_work *work);
64 static void sntp_resync_handler(struct k_work *work) in sntp_resync_handler()
/Zephyr-latest/samples/drivers/can/counter/src/
Dmain.c35 struct k_work state_change_work;
93 void change_led_work_handler(struct k_work *work) in change_led_work_handler()
169 void state_change_work_handler(struct k_work *work) in state_change_work_handler()
181 struct k_work *work = (struct k_work *)user_data; in state_change_callback()
/Zephyr-latest/samples/net/dns_resolve/src/
Dmain.c25 static void do_mdns_ipv4_lookup(struct k_work *work);
29 static void do_mdns_ipv6_lookup(struct k_work *work);
137 static void do_ipv4_lookup(struct k_work *work) in do_ipv4_lookup()
264 static void do_mdns_ipv4_lookup(struct k_work *work) in do_mdns_ipv4_lookup()
368 static void do_mdns_ipv6_lookup(struct k_work *work) in do_mdns_ipv6_lookup()
/Zephyr-latest/samples/bluetooth/handsfree_ag/src/
Dmain.c34 struct k_work discover_work;
277 static void discover_work_handler(struct k_work *work) in discover_work_handler()
292 static void call_connect_work_handler(struct k_work *work) in call_connect_work_handler()
313 static void call_disconnect_work_handler(struct k_work *work) in call_disconnect_work_handler()
326 static void call_remote_ringing_work_handler(struct k_work *work) in call_remote_ringing_work_handler()
341 static void call_remote_accept_work_handler(struct k_work *work) in call_remote_accept_work_handler()

12345678910>>...24