/src/tests/lib/libc/sys/ |
t_ppoll.c | 32 #define POLLTS ppoll
|
/src/lib/libc/sys/ |
ppoll.c | 1 /* $NetBSD: ppoll.c,v 1.1 2020/07/17 15:34:17 kamil Exp $ */ 33 __RCSID("$NetBSD: ppoll.c,v 1.1 2020/07/17 15:34:17 kamil Exp $"); 40 ppoll(struct pollfd * restrict fds, nfds_t nfds, function in typeref:typename:int
|
Makefile.inc | 11 eventfd_write.c posix_fadvise.c posix_madvise.c ppoll.c sched.c \ 375 MLINKS+=poll.2 pollts.2 poll.2 ppoll.2
|
/src/sys/arch/hp300/stand/common/ |
fhpib.c | 163 int ppoll; local in function:fhpibppoll 172 ppoll = hd->hpib_data; 174 ppoll = 0; 178 return ppoll;
|
nhpib.c | 173 int ppoll; local in function:nhpibppoll 178 ppoll = hd->hpib_cpt; 180 return ppoll;
|
/src/sys/sys/ |
poll.h | 101 int ppoll(struct pollfd * __restrict, nfds_t,
|
/src/sys/arch/hp300/dev/ |
hpib.c | 339 int mask, (*ppoll)(struct hpibbus_softc *); local in function:hpibswait 341 ppoll = sc->sc_ops->hpib_ppoll; 343 while (((*ppoll)(sc) & mask) == 0) {
|
fhpib.c | 104 int doppollint = 1; /* use ppoll interrupts instead of watchdog */ 577 printf("%s: got PPOLL status %x\n", __func__, stat0); 588 printf("%s: PPOLL: unit %d slave %d stat %x\n", 604 int ppoll; local in function:fhpibppoll 612 ppoll = hd->hpib_data; 614 ppoll = 0; 618 return ppoll;
|
nhpib.c | 337 * with PPOLL mechanism. 540 printf("%s: PPOLL intr bad status %x\n", 552 int ppoll; local in function:nhpibppoll 556 ppoll = hd->hpib_cpt; 558 return ppoll;
|
/src/sys/dev/isa/ |
cec.c | 88 int sc_ppoll_slave; /* XXX stash our ppoll address */ 453 int ppoll; local in function:cecpptest 459 ppoll = bus_space_read_1(iot, ioh, NEC7210_CPTR); 460 DPRINTF(0xff, ("cecpptest: ppoll=%x\n", ppoll)); 461 return ((ppoll & (0x80 >> slave)) != 0);
|
/src/tests/lib/libpthread/ |
t_cancellation.c | 503 RL(ppoll(&pfd, 1, &t, NULL));
|
/src/lib/librumphijack/ |
hijack.c | 261 #define REALPOLLTS ppoll
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 842 TEST(MemorySanitizer, ppoll) { 858 res = ppoll(fds, 2, NULL, &ss);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 3882 INTERCEPTOR(int, ppoll, __sanitizer_pollfd *fds, __sanitizer_nfds_t nfds, 3885 COMMON_INTERCEPTOR_ENTER(ctx, ppoll, fds, nfds, timeout_ts, sigmask); 3891 COMMON_INTERCEPTOR_BLOCK_REAL(ppoll)(fds, nfds, timeout_ts, sigmask); 3895 #define INIT_PPOLL COMMON_INTERCEPT_FUNCTION(ppoll);
|