Home
last modified time | relevance | path

Searched refs:ppoll (Results 1 - 25 of 32) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Dppoll.c39 int ret = ppoll(pollfds, 1, &timeout, NULL); in ppoll_0100()
62 int ret = ppoll(pollfds, 1, &timeout, NULL); in ppoll_0200()
77 int ret = ppoll(NULL, 1, &timeout, NULL); in ppoll_0300()
/third_party/musl/porting/uniproton/kernel/include/
H A Dpoll.h44 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
49 __REDIR(ppoll, __ppoll_time64);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dpoll.h44 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
49 __REDIR(ppoll, __ppoll_time64);
/third_party/musl/porting/linux/user/include/
H A Dpoll.h44 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
49 __REDIR(ppoll, __ppoll_time64);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dpoll.h44 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
49 __REDIR(ppoll, __ppoll_time64);
/third_party/musl/libc-test/src/functionalext/fortify/
H A Dpoll.c118 * @tc.desc : test ppoll normal condition
125 TEST(ppoll(NULL, 0, &ts, NULL) == 0); in ppoll_0010()
132 * @tc.desc : test ppoll suppress compiler optimizations
144 // Set timeout to zero to prevent waiting in ppoll when fortify test fails. in ppoll_0020()
155 ppoll(buf, fd_count, &timeout, NULL); in ppoll_0020()
197 int result = ppoll(buf, 1, &ts, NULL); in ppoll_0030()
/third_party/rust/crates/nix/test/
H A Dtest_poll.rs37 // ppoll(2) is the same as poll except for how it handles timeouts and signals.
48 use nix::poll::ppoll; in test_ppoll()
58 let nfds = loop_while_eintr!(ppoll(&mut fds, Some(timeout), Some(sigset))); in test_ppoll()
65 let nfds = ppoll(&mut fds, Some(timeout), None).unwrap(); in test_ppoll()
/third_party/ltp/testcases/kernel/syscalls/ppoll/
H A Dppoll01.c40 unsigned int nfds; /* nfds ppoll parameter */
41 sigset_t *sigmask; /* sigmask ppoll parameter */
43 struct tst_ts *ts; /* ts ppoll parameter */
44 struct pollfd *fds; /* fds ppoll parameter */
162 return ppoll(fds, nfds, tmo_p, sigmask); in libc_ppoll()
179 { .ppoll = libc_ppoll, .ts_type = TST_LIBC_TIMESPEC, .desc = "vDSO or syscall with libc spec"},
182 { .ppoll = sys_ppoll, .ts_type = TST_KERN_OLD_TIMESPEC, .desc = "syscall with old kernel spec"},
186 { .ppoll = sys_ppoll_time64, .ts_type = TST_KERN_TIMESPEC, .desc = "syscall time64 with kernel spec"},
260 sys_ret = tv->ppoll(tc->fds, tc->nfds, tst_ts_get(tsp), tc->sigmask, in do_test()
/third_party/musl/porting/liteos_a/kernel/include/
H A Dpoll.h48 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
68 __REDIR(ppoll, __ppoll_time64);
/third_party/musl/porting/liteos_a_newlib/kernel/include/
H A Dpoll.h45 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
65 __REDIR(ppoll, __ppoll_time64);
/third_party/musl/include/
H A Dpoll.h44 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
49 __REDIR(ppoll, __ppoll_time64);
/third_party/musl/porting/linux/user/include/fortify/
H A Dpoll.h51 int ppoll(struct pollfd* const fds __DIAGNOSE_PASS_OBJECT_SIZE, nfds_t fd_amount,
55 "in call to 'ppoll', " FD_COUNT_LARGE_GIVEN_BUFFER)
64 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(ppoll)(fds, fd_amount, timeout, mask);
/third_party/musl/include/fortify/linux/
H A Dpoll.h51 int ppoll(struct pollfd* const fds __DIAGNOSE_PASS_OBJECT_SIZE, nfds_t fd_amount,
55 "in call to 'ppoll', " FD_COUNT_LARGE_GIVEN_BUFFER)
64 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(ppoll)(fds, fd_amount, timeout, mask);
/third_party/rust/crates/nix/src/
H A Dpoll.rs10 /// [`ppoll`](fn.ppoll.html) functions to specify the events of interest
13 /// After a call to `poll` or `ppoll`, the events that occurred can be
34 /// Returns the events that occurred in the last call to `poll` or `ppoll`. Will only return
40 /// Returns if any of the events of interest occured in the last call to `poll` or `ppoll`. Will
50 /// Returns if all the events of interest occured in the last call to `poll` or `ppoll`. Will
78 /// These flags define the different events that can be monitored by `poll` and `ppoll`
169 /// `ppoll()` allows an application to safely wait until either a file
173 /// `ppoll` behaves like `poll`, but let you specify what signals may interrupt it
174 /// with the `sigmask` argument. If you want `ppoll` t
181 pub fn ppoll( ppoll() functions
[all...]
/third_party/musl/compat/time32/
H A Dppoll_time32.c8 return ppoll(fds, n, !ts32 ? 0 : (&(struct timespec){ in __ppoll_time32()
/third_party/mesa3d/src/imagination/vulkan/winsys/pvrsrvkm/
H A Dpvr_srv_sync.c150 /* -1 in case if fence is signaled or uninitialized, ppoll will skip the in pvr_srv_sync_wait_many()
176 ppoll_ret = ppoll(poll_fds, wait_count, NULL, NULL); in pvr_srv_sync_wait_many()
183 /* ppoll() returns EINVAL on negative timeout. Nothing to worry. in pvr_srv_sync_wait_many()
188 ppoll_ret = ppoll(poll_fds, wait_count, &remaining_time, NULL); in pvr_srv_sync_wait_many()
212 /* -1 makes ppoll ignore it and set revents to 0. */ in pvr_srv_sync_wait_many()
/third_party/musl/src/select/
H A Dppoll.c10 int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask) in ppoll() function
/third_party/glfw/src/
H A Dposix_poll.c51 const int result = ppoll(fds, count, &ts, NULL); in _glfwPollPOSIX()
/third_party/ltp/include/
H A Dtime64_variants.h50 int (*ppoll)(struct pollfd *fds, nfds_t nfds, void *tmo_p, member
/third_party/musl/libc-test/src/common/
H A Dtest.h72 #define __ppoll_time64 ppoll
/third_party/ninja/src/
H A Dsubprocess-posix.cc57 // If available, we use ppoll in DoWork(); otherwise we use pselect in Start()
267 int ret = ppoll(&fds.front(), nfds, NULL, &old_mask_); in DoWork()
270 perror("ninja: ppoll"); in DoWork()
/third_party/musl/porting/linux/user/src/fortify/
H A Dfortify.c113 __diagnose_pollfd_array("ppoll", fds_size, fd_count); in __ppoll_chk()
114 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(ppoll)(fds, fd_count, timeout, mask); in __ppoll_chk()
/third_party/musl/src/fortify/linux/
H A Dfortify.c124 __diagnose_pollfd_array("ppoll", fds_size, fd_count); in __ppoll_chk()
125 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(ppoll)(fds, fd_count, timeout, mask); in __ppoll_chk()
/third_party/pulseaudio/src/pulsecore/
H A Drtpoll.c321 r = ppoll(p->pollfd, p->n_pollfd_used, (p->quit || p->timer_enabled) ? &ts : NULL, NULL); in pa_rtpoll_run()
345 pa_log_error("Error %d in ppoll, errno: %s", r, pa_cstrerror(errno)); in pa_rtpoll_run()
/third_party/pulseaudio/src/pulse/
H A Dmainloop.c871 m->poll_func_ret = ppoll( in pa_mainloop_poll()

Completed in 11 milliseconds

12