/third_party/musl/libc-test/src/functionalext/supplement/select/ |
H A D | pselect.c | 67 int ret = pselect(STDOUT_FILENO + 1, NULL, &set, NULL, &timeout, NULL); in pselect_normal_0100() 86 int ret = pselect(-1, NULL, &set, NULL, &timeout, NULL); in pselect_error_0100() 106 int ret = pselect(STDOUT_FILENO + 1, &set, NULL, NULL, &timeout, &sigmask); in pselect_timeout_0100()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | select.h | 32 int pselect (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, const struct timespec *__restrict, const sigset_t *__restrict); 40 __REDIR(pselect, __pselect_time64);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | select.h | 32 int pselect (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, const struct timespec *__restrict, const sigset_t *__restrict); 40 __REDIR(pselect, __pselect_time64);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | select.h | 32 int pselect (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, const struct timespec *__restrict, const sigset_t *__restrict); 40 __REDIR(pselect, __pselect_time64);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | select.h | 39 int pselect (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, const struct timespec *__restrict, const sigset_t *__restrict); 47 __REDIR(pselect, __pselect_time64);
|
/third_party/musl/include/sys/ |
H A D | select.h | 40 int pselect (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, const struct timespec *__restrict, const sigset_t *__restrict); 48 __REDIR(pselect, __pselect_time64);
|
/third_party/rust/crates/nix/test/sys/ |
H A D | test_select.rs | 22 pselect(None, &mut fd_set, None, None, &timeout, &sigmask).unwrap() in test_pselect() 41 pselect( in test_pselect_nfds2()
|
/third_party/musl/compat/time32/ |
H A D | pselect_time32.c | 7 return pselect(n, rfds, wfds, efds, !ts32 ? 0 : (&(struct timespec){ in __pselect_time32()
|
/third_party/ltp/testcases/kernel/syscalls/pselect/ |
H A D | pselect03.c | 6 * This is basic test for pselect() returning without error. 29 TEST(pselect(fd, &readfds, 0, 0, &tv, NULL)); in verify_pselect() 31 tst_res(TPASS, "pselect() succeeded retval=%li", TST_RET); in verify_pselect() 33 tst_res(TFAIL | TTERRNO, "pselect() failed unexpectedly"); in verify_pselect()
|
H A D | pselect01.c | 21 TEST(pselect(0, &readfds, NULL, NULL, &tv, NULL)); in sample_fn() 27 "pselect() returned %li on timeout", TST_RET); in sample_fn() 35 .scall = "pselect()",
|
H A D | pselect02.c | 10 * Verify that pselect() fails with: 52 TST_EXP_FAIL(pselect(tc->nfds, tc->readfds, NULL, NULL, tc->timeout, NULL), in pselect_verify() 53 tc->exp_errno, "pselect(%i, %p, %p)", in pselect_verify()
|
/third_party/musl/libc-test/src/api/ |
H A D | sys_select.c | 30 {int(*p)(int,fd_set*restrict,fd_set*restrict,fd_set*restrict,const struct timespec*restrict,const sigset_t*restrict) = pselect;} in f()
|
/third_party/musl/src/select/ |
H A D | pselect.c | 10 int pselect(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, const struct timespec *restrict ts, const sigset_t *restrict mask) in pselect() function
|
/third_party/musl/libc-test/src/common/ |
H A D | test.h | 73 #define __pselect_time64 pselect
|
/third_party/ninja/src/ |
H A D | subprocess-posix.cc | 57 // If available, we use ppoll in DoWork(); otherwise we use pselect in Start() 318 int ret = pselect(nfds, &set, 0, 0, 0, &old_mask_); in DoWork() 321 perror("ninja: pselect"); in DoWork()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1481 pub fn pselect( in pselect() functions 1508 link_name = "pselect$1050" 1512 link_name = "pselect$UNIX2003" 1515 pub fn pselect( in pselect() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3822 pub fn pselect( in pselect() functions
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 6083 extern int pselect (int __nfds, fd_set *__restrict __readfds, [all...] |