Home
last modified time | relevance | path

Searched refs:handle_poll_events (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/kernel/
Dsem.c85 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()
Dqueue.c87 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()
Dmsg_q.c32 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()
Dpipes.c108 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/
Dmain.c172 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()