Lines Matching defs:sleep
279 * @sleep: if true, sleep where possible
281 * If sleep is true, and if the current thread is allowed to sleep, pause so
286 ice_usec_delay(uint32_t time, bool sleep)
288 if (sleep && THREAD_CAN_SLEEP())
297 * @sleep: if true, sleep where possible
299 * If sleep is true, and if the current thread is allowed to sleep, pause so
304 ice_msec_delay(uint32_t time, bool sleep)
306 if (sleep && THREAD_CAN_SLEEP())
313 * ice_msec_pause - pause (sleep) the thread for a time in milliseconds
314 * @time: milliseconds to sleep
316 * Wrapper for ice_msec_delay with sleep set to true.
328 * Wrapper for ice_msec_delay with sleep sent to false.