| /Zephyr-latest/tests/kernel/workq/work_queue/src/ | 
| D | start_stop.c | 18 static void work_handler(struct k_work *work)  in work_handler()  function 41 		k_work_init(&works[i], work_handler);  in ZTEST() 54 	k_work_init(&work, work_handler);  in ZTEST()
  | 
| D | main.c | 93 static void work_handler(struct k_work *work)  in work_handler()  function 115 		k_work_init_delayable(&delayed_tests[i].work, work_handler);  in delayed_test_items_init()
  | 
| /Zephyr-latest/modules/hal_nordic/nrf_802154/sl_opensource/platform/ | 
| D | nrf_802154_temperature_zephyr.c | 37 static void work_handler(struct k_work *work)  in work_handler()  function 61 	k_work_init_delayable(&dwork, work_handler);  in temperature_update_init()
  | 
| /Zephyr-latest/tests/kernel/profiling/profiling_api/src/ | 
| D | main.c | 26 static void work_handler(struct k_work *w)  in work_handler()  function 89 		k_work_init(&work[i], work_handler);  in ZTEST()
  | 
| /Zephyr-latest/tests/net/socket/socketpair/src/ | 
| D | block.c | 20 static void work_handler(struct k_work *w)  in work_handler()  function 73 		k_work_init(&work, work_handler);  in ZTEST_F() 114 		k_work_init(&work, work_handler);  in ZTEST_F()
  | 
| /Zephyr-latest/tests/kernel/workq/user_work/src/ | 
| D | main.c | 94 static void work_handler(struct k_work_user *w)  in work_handler()  function 120 		twork_submit_1(work_q, &work[i], work_handler);  in twork_submit()
  | 
| /Zephyr-latest/soc/nordic/common/ | 
| D | mram_latency.c | 85 static void work_handler(struct k_work *work)  in work_handler()  function 163 	k_work_init(&work, work_handler);  in init_nrfs()
  | 
| /Zephyr-latest/tests/drivers/uart/uart_pm/src/ | 
| D | main.c | 215 static void work_handler(struct k_work *work)  in work_handler()  function 235 	k_work_init_delayable(&dwork, work_handler);  in ZTEST()
  | 
| /Zephyr-latest/include/zephyr/ | 
| D | kernel.h | 4030 #define Z_WORK_INITIALIZER(work_handler) { \  argument 4031 	.handler = (work_handler), \ 4046 #define Z_WORK_DELAYABLE_INITIALIZER(work_handler) { \  argument 4048 		.handler = (work_handler), \ 4069 #define K_WORK_DELAYABLE_DEFINE(work, work_handler) \  argument 4071 	  = Z_WORK_DELAYABLE_INITIALIZER(work_handler) 4260 #define Z_WORK_USER_INITIALIZER(work_handler) { NULL, work_handler, 0 }  argument 4262 #define Z_WORK_USER_INITIALIZER(work_handler) \  argument 4265 	.handler = (work_handler), \ 4281 #define K_WORK_USER_DEFINE(work, work_handler) \  argument [all …] 
 | 
| /Zephyr-latest/tests/subsys/rtio/workq/src/ | 
| D | main.c | 18 static void work_handler(struct rtio_iodev_sqe *iodev_sqe)  in work_handler()  function 35 	rtio_work_req_submit(req, iodev_sqe, work_handler);  in dummy_submit()
  | 
| /Zephyr-latest/tests/drivers/spi/spi_controller_peripheral/src/ | 
| D | main.c | 87 static void work_handler(struct k_work *work)  in work_handler()  function 529 	k_work_init_delayable(&tdata.test_work, work_handler);  in before()
  | 
| /Zephyr-latest/doc/kernel/services/threads/ | 
| D | workqueue.rst | 158    static void work_handler(struct k_work *work) 429    static void work_handler(struct work *work)
  |