Searched refs:z_pend_curr (Results 1 – 17 of 17) sorted by relevance
/Zephyr-latest/kernel/ |
D | kheap.c | 98 (void) z_pend_curr(&heap->lock, key, &heap->wait_q, timeout); in k_heap_aligned_alloc() 158 (void) z_pend_curr(&heap->lock, key, &heap->wait_q, timeout); in k_heap_realloc()
|
D | futex.c | 83 ret = z_pend_curr(&futex_data->lock, in z_impl_k_futex_wait()
|
D | mailbox.c | 261 int ret = z_pend_curr(&mbox->lock, key, NULL, K_FOREVER); in mbox_message_put() 288 int ret = z_pend_curr(&mbox->lock, key, &mbox->tx_msg_queue, timeout); in mbox_message_put() 429 result = z_pend_curr(&mbox->lock, key, &mbox->rx_msg_queue, timeout); in k_mbox_get()
|
D | condvar.c | 120 ret = z_pend_curr(&lock, key, &condvar->wait_q, timeout); in z_impl_k_condvar_wait()
|
D | sem.c | 158 ret = z_pend_curr(&lock, key, &sem->wait_q, timeout); in z_impl_k_sem_take()
|
D | msg_q.c | 174 result = z_pend_curr(&msgq->lock, key, &msgq->wait_q, timeout); in z_impl_k_msgq_put() 272 result = z_pend_curr(&msgq->lock, key, &msgq->wait_q, timeout); in z_impl_k_msgq_get()
|
D | stack.c | 178 result = z_pend_curr(&stack->lock, key, &stack->wait_q, timeout); in z_impl_k_stack_pop()
|
D | mutex.c | 156 int got_mutex = z_pend_curr(&lock, key, &mutex->wait_q, timeout); in z_impl_k_mutex_lock()
|
D | timer.c | 283 (void)z_pend_curr(&lock, key, &timer->wait_q, K_FOREVER); in z_impl_k_timer_status_sync()
|
D | events.c | 294 if (z_pend_curr(&event->lock, key, &event->wait_q, timeout) == 0) { in k_event_wait_internal()
|
D | mem_slab.c | 253 result = z_pend_curr(&slab->lock, key, &slab->wait_q, timeout); in k_mem_slab_alloc()
|
D | queue.c | 346 int ret = z_pend_curr(&queue->lock, key, &queue->wait_q, timeout); in z_impl_k_queue_get()
|
D | sched.c | 650 int z_pend_curr(struct k_spinlock *lock, k_spinlock_key_t key, in z_pend_curr() function 1508 int ret = z_pend_curr(lock, key, wait_q, timeout); in z_sched_wait()
|
D | poll.c | 335 int swap_rc = z_pend_curr(&lock, key, &wait_q, timeout); in z_impl_k_poll()
|
/Zephyr-latest/tests/benchmarks/sched/src/ |
D | main.c | 95 z_pend_curr(&lock, key, &waitq, K_FOREVER); in partner_fn()
|
/Zephyr-latest/kernel/include/ |
D | ksched.h | 55 int z_pend_curr(struct k_spinlock *lock, k_spinlock_key_t key,
|
/Zephyr-latest/lib/os/ |
D | p4wq.c | 110 z_pend_curr(&queue->lock, k, &queue->waitq, K_FOREVER); in p4wq_loop()
|