Searched refs:phead (Results 1 – 10 of 10) sorted by relevance
/freebsd/sys/net80211/ |
H A D | ieee80211_ageq.c | 164 struct mbuf *head, **phead; in ieee80211_ageq_age() local 167 phead = &head; in ieee80211_ageq_age() 176 *phead = m; in ieee80211_ageq_age() 177 phead = &m->m_nextpkt; in ieee80211_ageq_age() 183 *phead = NULL; in ieee80211_ageq_age() 197 struct mbuf *head, **phead; in ieee80211_ageq_remove() local 202 phead = &head; in ieee80211_ageq_remove() 230 *phead = m; in ieee80211_ageq_remove() 231 phead = &m->m_nextpkt; in ieee80211_ageq_remove() 237 *phead = NULL; in ieee80211_ageq_remove()
|
/freebsd/contrib/ntp/include/ |
H A D | ntp_lists.h | 232 entrytype * phead; /* NULL if list empty */ \ 236 #define HEAD_FIFO(anchor) ((anchor).phead) 276 (anchor).phead = (pentry); \ 277 (anchor).pptail = &(anchor).phead; \ 287 (punlinked) = (anchor).phead; \ 289 (anchor).phead = (punlinked)->nextlink; \ 290 if (NULL == (anchor).phead) \ 294 (anchor).pptail = &(anchor).phead; \ 307 ppentry = &(anchor).phead; \ 324 (anchor).pptail = &(anchor).phead; \ [all...] |
/freebsd/sys/fs/cd9660/ |
H A D | cd9660_rrip.c | 459 ISO_SUSP_HEADER *phead; in cd9660_rrip_loop() local 482 phead = (ISO_SUSP_HEADER *)pwhead; in cd9660_rrip_loop() 491 while (pend >= phead + 1) { in cd9660_rrip_loop() 492 if (isonum_711(phead->version) == 1) { in cd9660_rrip_loop() 494 if (*phead->type == *ptable->type in cd9660_rrip_loop() 495 && phead->type[1] == ptable->type[1]) { in cd9660_rrip_loop() 496 result |= ptable->func(phead,ana); in cd9660_rrip_loop() 508 if (isonum_711(phead->length) < sizeof(*phead)) in cd9660_rrip_loop() 514 phead = (ISO_SUSP_HEADER *)((char *)phead + isonum_711(phead->length)); in cd9660_rrip_loop() 532 phead = (ISO_SUSP_HEADER *)(bp->b_data + ana->iso_ce_off); in cd9660_rrip_loop() [all …]
|
/freebsd/contrib/ntp/libntp/ |
H A D | recvbuff.c | 386 REQUIRE((NULL == pf->phead && NULL == pf->pptail) || 387 (NULL != pf->phead && NULL != pf->pptail)); 389 pptail = &pf->phead; 390 for (pthis = pf->phead;
|
/freebsd/lib/libusb/ |
H A D | libusb10_hotplug.c | 195 libusb_hotplug_enumerate(libusb_context *ctx, struct libusb_device_head *phead) in libusb_hotplug_register_callback() 206 TAILQ_INSERT_TAIL(phead, ppdev[x], hotplug_entry); in libusb_hotplug_register_callback() 88 libusb_hotplug_enumerate(libusb_context * ctx,struct libusb_device_head * phead) libusb_hotplug_enumerate() argument
|
/freebsd/sys/ofed/drivers/infiniband/ulp/ipoib/ |
H A D | ipoib_ib.c | 486 void *phead; in ipoib_send() local 495 phead = mtod(mb, void *); in ipoib_send() 511 phead = NULL; in ipoib_send() 548 tx_req, phead, hlen))) { in ipoib_send()
|
/freebsd/sys/dev/pms/freebsd/driver/ini/src/ |
H A D | agtiproto.h | 44 pccb_t *phead,
|
H A D | agtiapi.c | 4330 pccb_t *phead, in agtiapi_QueueCCB() argument 4338 AGTIAPI_IO( "agtiapi_QueueCCB: %p to %p\n", pccb, phead ); in agtiapi_QueueCCB() 4339 if (phead == NULL || ptail == NULL) in agtiapi_QueueCCB() 4341 panic( "agtiapi_QueueCCB: phead %p ptail %p", phead, ptail ); in agtiapi_QueueCCB() 4345 if (*phead == NULL) in agtiapi_QueueCCB() 4348 *phead = pccb; in agtiapi_QueueCCB() 5664 agtiapi_DeQueueCCB(struct agtiapi_softc *pCard, pccb_t *phead, pccb_t *ptail, in agtiapi_DeQueueCCB() argument 5673 AGTIAPI_PRINTK("agtiapi_DeQueueCCB: %p from %p\n", pccb, phead); in agtiapi_DeQueueCCB() 5675 if (pccb == NULL || *phead == NULL) in agtiapi_DeQueueCCB() 5680 AGTIAPI_PRINTK("agtiapi_DeQueueCCB: %p from %p\n", pccb, phead); in agtiapi_DeQueueCCB() [all …]
|
/freebsd/sys/dev/usb/video/ |
H A D | udl.c | 593 struct udl_cmd_head *phead = usbd_xfer_get_priv(xfer); in udl_bulk_write_callback() local 599 TAILQ_CONCAT(&sc->sc_cmd_buf_free, phead, entry); in udl_bulk_write_callback() 611 TAILQ_INSERT_TAIL(phead, cb, entry); in udl_bulk_write_callback() 620 TAILQ_CONCAT(&sc->sc_cmd_buf_free, phead, entry); in udl_bulk_write_callback()
|
/freebsd/sys/fs/nfs/ |
H A D | nfs.h | 802 #define LIST_PREPEND(head, phead, lelm, field) do { \ argument 808 (head)->lh_first = (phead)->lh_first; \
|