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

12

/freebsd-12-stable/lib/libc/sys/
H A Dppoll.c42 #pragma weak ppoll macro
44 ppoll(struct pollfd pfd[], nfds_t nfds, const struct timespec *__restrict function
H A Dinterposing_table.c80 SLOT(ppoll, __sys_ppoll),
H A DMakefile.inc70 ppoll \
443 MLINKS+=poll.2 ppoll.2
/freebsd-12-stable/sys/sys/
H A Dpoll.h116 int ppoll(struct pollfd _pfd[], nfds_t _nfds,
H A Dsyscall.mk391 ppoll.o \
/freebsd-12-stable/contrib/tcpdump/
H A Dprint-ntp.c119 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));
/freebsd-12-stable/lib/libc/gen/
H A Drecvmmsg.c55 res = ppoll(&pfd[0], 1, timeout, NULL);
/freebsd-12-stable/contrib/ntp/sntp/
H A Dnetworking.h59 u_char ppoll; member in struct:speer
H A Dmain.c1138 x_pkt->ppoll = 8;
/freebsd-12-stable/contrib/ntp/ntpd/
H A Dntp_proto.c405 * send, reset ppoll.
408 peer->ppoll = peer->maxpoll;
1284 pkt->ppoll,
1357 pkt->ppoll,
1553 pkt->ppoll, pkt->ppoll,
1577 pkt->ppoll, pkt->ppoll,
1699 pkt->ppoll, NTP_MAXDPOLL, 0, MDF_UCAST, 0,
1731 DPRINTF(2, ("receive: PROCPKT/BROADCAST: prev pkt %ld seconds ago, ppoll
[all...]
H A Dntpsim.c302 xpkt.ppoll = rpkt->ppoll;
H A Dntp_util.c673 * leap, version, mode, stratum, ppoll, precision, root delay, root dispersion, REFID
688 int ppoll,
714 leap, version, mode, stratum, ppoll, precision,
677 record_raw_stats( sockaddr_u *srcadr, sockaddr_u *dstadr, l_fp *t1, l_fp *t2, l_fp *t3, l_fp *t4, int leap, int version, int mode, int stratum, int ppoll, int precision, double root_delay, double root_dispersion, u_int32 refid, int len, u_char *extra ) argument
H A Dntp_request.c764 ips->ppoll = pp->ppoll;
896 ip->ppoll = pp->ppoll;
H A Dntp_refclock.c269 peer->ppoll = peer->maxpoll;
/freebsd-12-stable/contrib/ntp/sntp/tests/
H A DpacketHandling.c64 TEST_ASSERT_EQUAL(8, testpkt.ppoll);
101 TEST_ASSERT_EQUAL(8, testpkt.ppoll);
/freebsd-12-stable/sys/kern/
H A Dcapabilities.conf502 ppoll
/freebsd-12-stable/tests/sys/audit/
H A Dutils.c140 * we want, else repeat the procedure until ppoll(2) times out.
157 switch (ppoll(fd, 1, &timeout, NULL)) {
158 /* ppoll(2) returns, check if it's what we want */
217 * can store buffered data in user-space unbeknown to ppoll(2), which
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
H A DMainLoop.cpp23 // variants including OSX). On linux we use ppoll, while android uses pselect
24 // (ppoll is present but not implemented properly). On windows we use WSApoll
49 int ppoll(struct pollfd *fds, size_t nfds, const struct timespec *timeout_ts, function
167 // ppoll(2) is not supported on older all android versions. Also, older
212 if (ppoll(read_fds.data(), read_fds.size(), nullptr, &sigmask) == -1 &&
335 // receive it. If using pselect/ppoll, we need to block it, and later unblock
/freebsd-12-stable/contrib/ntp/include/
H A Dntp.h296 u_char ppoll; /* remote poll interval */ member in struct:peer
548 u_char ppoll; /* peer poll interval */ member in struct:pkt
H A Dntp_request.h357 s_char ppoll; /* peer polling interval */ member in struct:info_peer_summary
383 u_char ppoll; /* peer.ppoll */ member in struct:info_peer
H A Dntpd.h292 extern void record_raw_stats (sockaddr_u *srcadr, sockaddr_u *dstadr, l_fp *t1, l_fp *t2, l_fp *t3, l_fp *t4, int leap, int version, int mode, int stratum, int ppoll, int precision, double root_delay, double root_dispersion, u_int32 refid, int len, u_char *extra);
/freebsd-12-stable/contrib/bsnmp/snmp_ntp/
H A Dsnmp_ntp.c139 int32_t ppoll; /* PeerPoll */ member in struct:peer
963 "hpoll,ppoll,precision,rootdelay,rootdispersion,refid,"
1021 } else if (strcmp(name, "ppoll") == 0 ||
1022 strcmp(name, "peer.ppoll") == 0) {
1023 val_parse_int32(val, &p->ppoll,
1289 value->v.integer = t->ppoll;
/freebsd-12-stable/lib/libthr/thread/
H A Dthr_syscalls.c686 SLOT(ppoll);
/freebsd-12-stable/usr.sbin/ntp/ntpdc/
H A Dnl.c100 printf("offsetof(ppoll) = %d\n",
101 (int) offsetof(struct info_peer_summary, ppoll));
142 printf("offsetof(ppoll) = %d\n",
143 (int) offsetof(struct info_peer, ppoll));
/freebsd-12-stable/contrib/ntp/ntpq/
H A Dntpq-subs.c1592 { "ppoll", 0 }, /* 4 */
1610 { "ppoll", 0 }, /* 4 */
1630 { "ppoll", 0 }, /* 5 */
1678 long ppoll = 0; local
1803 } else if (!strcmp("ppoll", name)) {
1804 if (decodeint(value, &ppoll) && ppoll < 0)
1805 ppoll = NTP_MINPOLL;
1876 poll_sec = 1 << min(ppoll, hpoll);

Completed in 473 milliseconds

12