Home
last modified time | relevance | path

Searched refs:k_work_is_pending (Results 1 – 12 of 12) sorted by relevance

/Zephyr-Core-3.7.0/tests/kernel/workq/work/src/
Dmain.c293 zassert_equal(k_work_is_pending(&common_work), false); in ZTEST()
299 zassert_equal(k_work_is_pending(&common_work), true); in ZTEST()
330 zassert_equal(k_work_is_pending(&common_work), false); in ZTEST()
342 } while (k_work_is_pending(&common_work) && (delay < DELAY_MS)); in ZTEST()
456 zassert_true(!k_work_is_pending(&common_work)); in ZTEST()
457 zassert_true(!k_work_is_pending(&common_work1)); in ZTEST()
1290 zassert_equal(k_work_is_pending(&common_work), true); in try_queue_no_yield()
1299 zassert_equal(k_work_is_pending(&common_work), false); in try_queue_no_yield()
/Zephyr-Core-3.7.0/subsys/net/lib/zperf/
Dzperf_tcp_uploader.c229 if (k_work_is_pending(&tcp_async_upload_ctx.work)) { in zperf_tcp_upload_async()
Dzperf_udp_uploader.c358 if (k_work_is_pending(&udp_async_upload_ctx.work)) { in zperf_udp_upload_async()
/Zephyr-Core-3.7.0/drivers/clock_control/
Dclock_control_smartbond.c123 if (!k_work_is_pending(&calibration_work.work)) { in smartbond_start_rc32k()
138 if (!k_work_is_pending(&calibration_work.work)) { in smartbond_start_rcx()
/Zephyr-Core-3.7.0/subsys/bluetooth/services/ots/
Dots_olcp.c259 if (k_work_is_pending(&ots->olcp_ind.work)) { in bt_gatt_ots_olcp_write()
Dots_oacp.c693 if (k_work_is_pending(&ots->oacp_ind.work)) { in bt_gatt_ots_oacp_write()
/Zephyr-Core-3.7.0/doc/kernel/services/threads/
Dworkqueue.rst55 :c:func:`k_work_is_pending()`, or measurements of remaining time until
99 (:c:func:`k_work_is_pending()`) or **busy** (:c:func:`k_work_busy_get()`).
324 * :c:func:`k_work_is_pending()` is a helper that indicates ``true`` if and only
380 :c:func:`k_work_is_pending()` for delayable work.
510 state with :c:func:`k_work_is_pending` or :c:func:`k_work_busy_get`, or
525 A rare case where you could safely use :c:func:`k_work_is_pending` is as a
/Zephyr-Core-3.7.0/subsys/bluetooth/mesh/
Dadv_ext.c333 } else if (k_work_is_pending(&ext_adv->work)) { in schedule_send()
/Zephyr-Core-3.7.0/subsys/bluetooth/controller/ll_sw/
Dull_filter.c991 if (!k_work_is_pending(&(resolve_work.prpa_work))) { in ull_filter_deferred_resolve()
1010 if (!k_work_is_pending(&(t_work.target_work))) { in ull_filter_deferred_targeta_resolve()
/Zephyr-Core-3.7.0/include/zephyr/
Dkernel.h3403 static inline bool k_work_is_pending(const struct k_work *work);
4132 static inline bool k_work_is_pending(const struct k_work *work) in k_work_is_pending() function
/Zephyr-Core-3.7.0/modules/openthread/platform/
Dradio.c611 if (!k_work_is_pending(&tx_job)) { in run_tx_task()
/Zephyr-Core-3.7.0/doc/releases/
Drelease-notes-2.6.rst131 * :c:func:`k_work_pending()` replace with :c:func:`k_work_is_pending()`