Home
last modified time | relevance | path

Searched refs:phead (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/net80211/
H A Dieee80211_ageq.c164 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 Dntp_lists.h232 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 Dcd9660_rrip.c551 ISO_SUSP_HEADER *phead; in cd9660_rrip_loop() local
575 phead = (ISO_SUSP_HEADER *)pwhead; in cd9660_rrip_loop()
585 while (pend >= phead + 1) { in cd9660_rrip_loop()
587 if (isonum_711(phead->length) < sizeof(*phead)) in cd9660_rrip_loop()
594 pnext = (ISO_SUSP_HEADER *)((char *)phead + in cd9660_rrip_loop()
595 isonum_711(phead->length)); in cd9660_rrip_loop()
601 if (isonum_711(phead->version) == 1) { in cd9660_rrip_loop()
603 if (phead->type[0] == ptable->type[0] && in cd9660_rrip_loop()
604 phead->type[1] == ptable->type[1]) { in cd9660_rrip_loop()
605 result |= ptable->func(phead, in cd9660_rrip_loop()
[all …]
/freebsd/contrib/ntp/libntp/
H A Drecvbuff.c386 REQUIRE((NULL == pf->phead && NULL == pf->pptail) ||
387 (NULL != pf->phead && NULL != pf->pptail));
389 pptail = &pf->phead;
390 for (pthis = pf->phead;
/freebsd/usr.sbin/virtual_oss/virtual_oss/
H A Dctl.c56 vprofile_by_index(const vprofile_head_t *phead, int index) in vprofile_by_index() argument
60 TAILQ_FOREACH(pvp, phead, entry) { in vprofile_by_index()
68 vmonitor_by_index(int index, vmonitor_head_t *phead) in vmonitor_by_index() argument
72 TAILQ_FOREACH(pvm, phead, entry) { in vmonitor_by_index()
H A Dmain.c167 vmonitor_alloc(int *pid, vmonitor_head_t *phead) in vmonitor_alloc() argument
172 TAILQ_FOREACH(pvm, phead, entry) in vmonitor_alloc()
188 TAILQ_INSERT_TAIL(phead, pvm, entry); in vmonitor_alloc()
/freebsd/lib/libusb/
H A Dlibusb10_hotplug.c198 libusb_hotplug_enumerate(libusb_context *ctx, struct libusb_device_head *phead) in libusb_hotplug_enumerate() argument
209 TAILQ_INSERT_TAIL(phead, ppdev[x], hotplug_entry); in libusb_hotplug_enumerate()
/freebsd/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_ib.c487 void *phead; in ipoib_send() local
496 phead = mtod(mb, void *); in ipoib_send()
512 phead = NULL; in ipoib_send()
549 tx_req, phead, hlen))) { in ipoib_send()
/freebsd/sys/dev/pms/freebsd/driver/ini/src/
H A Dagtiproto.h44 pccb_t *phead,
H A Dagtiapi.c4330 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 Dudl.c593 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 Dnfs.h784 #define LIST_PREPEND(head, phead, lelm, field) do { \ argument
790 (head)->lh_first = (phead)->lh_first; \