HomeSort by relevance Sort by last modified time
    Searched refs:ppoll (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/strace/tests/
ppoll-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll-v -v -s2 -e trace=ppoll); do not edit.
4 run_strace_match_diff -v -s2 -e trace=ppoll
ppoll-P.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll-P -s2 -e trace=ppoll -P /dev/full 9>>/dev/full); do not edit.
4 run_strace_match_diff -s2 -e trace=ppoll -P /dev/full 9>>/dev/full
  /external/strace/tests-m32/
ppoll-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll-v -v -s2 -e trace=ppoll); do not edit.
4 run_strace_match_diff -v -s2 -e trace=ppoll
ppoll-P.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll-P -s2 -e trace=ppoll -P /dev/full 9>>/dev/full); do not edit.
4 run_strace_match_diff -s2 -e trace=ppoll -P /dev/full 9>>/dev/full
  /external/strace/tests-mx32/
ppoll-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll-v -v -s2 -e trace=ppoll); do not edit.
4 run_strace_match_diff -v -s2 -e trace=ppoll
ppoll-P.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll-P -s2 -e trace=ppoll -P /dev/full 9>>/dev/full); do not edit.
4 run_strace_match_diff -s2 -e trace=ppoll -P /dev/full 9>>/dev/full
  /system/nvram/hal/
fake-nvram-seccomp-arm.policy 20 ppoll: 1
fake-nvram-seccomp-arm64.policy 20 ppoll: 1
fake-nvram-seccomp-x86.policy 20 ppoll: 1
fake-nvram-seccomp-x86_64.policy 20 ppoll: 1
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
poll.h 67 extern int ppoll (struct pollfd *__fds, nfds_t __nfds,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
poll.h 67 extern int ppoll (struct pollfd *__fds, nfds_t __nfds,
  /bionic/libc/include/
poll.h 42 int ppoll(struct pollfd* __fds, nfds_t __count, const struct timespec* __timeout, const sigset_t* __mask) __INTRODUCED_IN(21);
  /bionic/libc/include/bits/fortify/
poll.h 55 int ppoll(struct pollfd* const fds __pass_object_size, nfds_t fd_count, const struct timespec* timeout, const sigset_t* mask)
59 "in call to 'ppoll', fd_count is larger than the given buffer") {
63 return __call_bypassing_fortify(ppoll)(fds, fd_count, timeout, mask);
71 int __ppoll_real(struct pollfd*, nfds_t, const struct timespec*, const sigset_t*) __RENAME(ppoll)
73 __errordecl(__ppoll_too_small_error, "ppoll: pollfd array smaller than fd count");
88 int ppoll(struct pollfd* fds, nfds_t fd_count, const struct timespec* timeout,
  /external/valgrind/none/tests/
ppoll_alarm.c 1 /* Tries to exploit bug in ppoll mask handling:
5 #define _GNU_SOURCE /* for ppoll */
28 ppoll(NULL, 0, &ts, &ss);
  /external/tcpdump/
print-ntp.c 119 u_char ppoll; /* poll value */ member in struct:ntpdata
239 ND_TCHECK(bp->ppoll);
240 ND_PRINT((ndo, ", poll %u (%us)", bp->ppoll, 1 << bp->ppoll));
  /external/valgrind/memcheck/tests/linux/
syscalls-2007.c 54 ppoll (pfd, 2, &ts, &mask);
  /system/netd/libnetdutils/include/netdutils/
Syscalls.h 62 virtual StatusOr<int> ppoll(pollfd* fds, nfds_t nfds, double timeout) const = 0;
141 StatusOr<std::array<uint16_t, size>> ppoll(const std::array<Fd, size>& fds, uint16_t events, function in class:android::netdutils::Syscalls
149 RETURN_IF_NOT_OK(ppoll(tmp.data(), tmp.size(), timeout).status());
MockSyscalls.h 50 MOCK_CONST_METHOD3(ppoll, StatusOr<int>(pollfd* fds, nfds_t nfds, double timeout));
  /bionic/libc/bionic/
poll.cpp 50 int ppoll(pollfd* fds, nfds_t fd_count, const timespec* ts, const sigset_t* ss) { function
  /bionic/tests/
fortify_filecheck_diagnostics_test.cpp 279 // GCC: error: call to '__ppoll_too_small_error' declared with attribute error: ppoll: pollfd array smaller than fd count
280 // CLANG: error: in call to 'ppoll', fd_count is larger than the given buffer
281 ppoll(fds, 2, &timeout, NULL);
  /external/strace/
poll.c 174 SYS_FUNC(ppoll)
  /system/netd/server/
NetlinkListener.cpp 113 ASSIGN_OR_RETURN(auto revents, sys.ppoll(fds, events, timeout));
  /system/netd/libnetdutils/
Syscalls.cpp 110 StatusOr<int> ppoll(pollfd* fds, nfds_t nfds, double timeout) const override {
114 auto rv = syscallRetry(::ppoll, fds, nfds, &ts, nullptr);
116 return statusFromErrno(errno, "ppoll() failed");
  /external/autotest/client/site_tests/platform_ToolchainTests/src/
clang-fortify-tests.cpp 265 EXPECT_DEATH(ppoll(few_fds, 3, 0, 0));
284 EXPECT_DEATH_STRUCT(ppoll(fds.few, 3, &timeout, 0));

Completed in 1149 milliseconds

1 2 3