HomeSort by: relevance | last modified time | path
    Searched defs:ppoll (Results 1 - 13 of 13) sorted by relevancy

  /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
  /src/external/bsd/libfido2/dist/src/
hid_unix.c 18 #define ppoll pollts macro
69 if ((r = ppoll(&pfd, 1, ms > -1 ? &ts : NULL, sigmask)) < 1) {
71 fido_log_error(errno, "%s: ppoll", __func__);
  /src/sys/arch/hp300/stand/common/
fhpib.c 163 int ppoll; local
172 ppoll = hd->hpib_data;
174 ppoll = 0;
178 return ppoll;
nhpib.c 173 int ppoll; local
178 ppoll = hd->hpib_cpt;
180 return ppoll;
  /src/sys/arch/hp300/dev/
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
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
556 ppoll = hd->hpib_cpt;
558 return ppoll;
  /src/external/bsd/ntp/dist/sntp/
networking.h 61 u_char ppoll; member in struct:speer
  /src/sys/dev/isa/
cec.c 88 int sc_ppoll_slave; /* XXX stash our ppoll address */
453 int ppoll; local
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/external/bsd/tcpdump/dist/
print-ntp.c 102 nd_int8_t ppoll; /* poll value */ member in struct:ntp_time_data
243 ND_PRINT(", poll %d", GET_S_1(bp->ppoll));
244 p_poll(ndo, GET_S_1(bp->ppoll));
  /src/external/bsd/dhcpcd/dist/src/
eloop.c 31 * of say a few hundred, ppoll(2) performs just fine, if not faster than others.
33 * ppoll(2) is available on all modern OS my software runs on and should be
35 * If ppoll is not available, then pselect(2) can be used instead which has
37 * However, this difference is quite tiny and the ppoll API is superior.
47 * ppoll can still be secured in both by using SEECOMP or pledge.
55 * Taking this all into account, ppoll(2) is the default mechanism used here.
87 #define ppoll pollts macro
1004 * As we default to using ppoll anyway
1081 n = ppoll(eloop->fds, (nfds_t)eloop->nevents, ts, signals);
  /src/external/bsd/ntp/dist/include/
ntp_request.h 378 s_char ppoll; /* peer polling interval */ member in struct:info_peer_summary
404 u_char ppoll; /* peer.ppoll */ member in struct:info_peer
ntp.h 302 u_char ppoll; /* remote poll interval */ member in struct:peer
555 u_char ppoll; /* peer poll interval */ member in struct:pkt
  /src/external/bsd/ntp/dist/ntpq/
ntpq-subs.c 1612 { "ppoll", 0 }, /* 4 */
1630 { "ppoll", 0 }, /* 4 */
1650 { "ppoll", 0 }, /* 5 */
1699 long ppoll = 0; local
1831 } else if (!strcmp("ppoll", name)) {
1832 if (decodeint(value, &ppoll) && ppoll < 0)
1833 ppoll = NTP_MINPOLL;
1904 poll_sec = 1 << min(ppoll, hpoll);

Completed in 44 milliseconds