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

  /src/external/bsd/ntp/dist/tests/ntpd/
t-ntp_signd.c 167 struct recvbuf *rbufp = (struct recvbuf *) malloc(sizeof(struct recvbuf)); local
173 TEST_ASSERT_NOT_NULL(rbufp);
179 ** Send the xpkt to Samba, read the response back in rbufp
181 send_via_ntp_signd(rbufp,xmode,xkeyid,flags,xpkt);
183 free(rbufp);
  /src/lib/libc/db/hash/
hash_bigkey.c 221 BUFHEAD *last_bfp, *rbufp; local
226 rbufp = bufp;
244 rbufp->flags |= BUF_MOD;
245 rbufp = __get_buf(hashp, (uint32_t)pageno, rbufp, 0);
248 last_bfp = rbufp;
249 if (!rbufp)
251 bp = (uint16_t *)(void *)rbufp->page;
255 * If we get here then rbufp points to the last page of the big
271 bufp->ovfl = rbufp->ovfl
    [all...]
hash.c 577 BUFHEAD *rbufp; local
592 rbufp = __get_buf(hashp, __call_hash(hashp, kp, (int)size), NULL, 0);
593 if (!rbufp)
595 save_bufp = rbufp;
598 rbufp->flags |= BUF_PIN;
599 for (bp = (uint16_t *)(void *)rbufp->page, n = *bp++, ndx = 1; ndx < n;)
603 memcmp(kp, rbufp->page + *bp, size) == 0)
612 rbufp = __get_buf(hashp, (uint32_t)*bp, rbufp, 0);
613 if (!rbufp) {
    [all...]
  /src/external/bsd/ntp/dist/libntp/
recvbuff.c 325 recvbuf_t *rbufp; local
336 for (rbufp = HEAD_FIFO(full_recv_fifo);
337 rbufp != NULL;
338 rbufp = next)
340 next = rbufp->link;
342 if (rbufp->dstadr == NULL && rbufp->fd == fd)
344 if (rbufp->fd == fd)
348 rbufp, link, recvbuf_t);
349 INSIST(punlinked == rbufp);
    [all...]

Completed in 25 milliseconds