Searched refs:handle_poll_events (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/kernel/ |
D | sem.c | 85 static inline bool handle_poll_events(struct k_sem *sem) in handle_poll_events() function 111 resched = handle_poll_events(sem); in z_impl_k_sem_give() 185 resched = handle_poll_events(sem) || resched; in z_impl_k_sem_reset()
|
D | queue.c | 87 static inline bool handle_poll_events(struct k_queue *queue, uint32_t state) in handle_poll_events() function 114 resched = handle_poll_events(queue, K_POLL_STATE_CANCELLED) || resched; in z_impl_k_queue_cancel_wait() 174 resched = handle_poll_events(queue, K_POLL_STATE_DATA_AVAILABLE); in queue_insert() 289 resched = handle_poll_events(queue, K_POLL_STATE_DATA_AVAILABLE) || resched; in k_queue_append_list()
|
D | msg_q.c | 32 static inline bool handle_poll_events(struct k_msgq *msgq) in handle_poll_events() function 162 resched = handle_poll_events(msgq); in z_impl_k_msgq_put()
|
D | pipes.c | 108 static inline bool handle_poll_events(struct k_pipe *pipe) in handle_poll_events() function 472 reschedule_needed = handle_poll_events(pipe) || reschedule_needed; in z_impl_k_pipe_put()
|
/Zephyr-latest/samples/net/sockets/socketpair/src/ |
D | main.c | 172 static int handle_poll_events(const struct context *ctx, struct pollfd *fds, size_t n, in handle_poll_events() function 245 res = handle_poll_events(ctx, fds, NUM_SOCKETPAIRS, res); in main()
|