Home
last modified time | relevance | path

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

/minix/minix/net/lwip/
H A Dloopif.c86 struct pbuf *pbuf, **pnext; in loopif_poll() local
116 pnext = pchain_end(pbuf); in loopif_poll()
118 if ((loopif->loopif_head = *pnext) == NULL) in loopif_poll()
120 *pnext = NULL; in loopif_poll()
278 struct pbuf *pbuf, **pnext; in loopif_destroy() local
293 pnext = pchain_end(pbuf); in loopif_destroy()
295 if ((loopif->loopif_head = *pnext) == NULL) in loopif_destroy()
297 *pnext = NULL; in loopif_destroy()
H A Dpchain.c13 struct pbuf *pbuf, *phead, **pnext; in pchain_alloc() local
69 pnext = &phead->next; in pchain_alloc()
90 *pnext = pbuf; in pchain_alloc()
91 pnext = &pbuf->next; in pchain_alloc()
H A Dethif.c1118 struct pbuf *pbuf, **pnext; in ethif_drain() local
1121 pnext = pchain_end(pbuf); in ethif_drain()
1126 *pnext = NULL; in ethif_drain()
1192 struct pbuf *pref, *pbuf, **pnext; in ethif_dequeue_send() local
1202 pnext = pchain_end(pref); in ethif_dequeue_send()
1204 if (ethif->ethif_snd.es_unsentp == pnext) in ethif_dequeue_send()
1207 if ((ethif->ethif_snd.es_head = *pnext) == NULL) in ethif_dequeue_send()
1211 *pnext = NULL; in ethif_dequeue_send()
1343 struct pbuf *pbuf, *pwalk, **pnext; in ethif_received() local
1353 pnext = pchain_end(pbuf); in ethif_received()
[all …]
H A Dtcpsock.c937 assert(*pnext == ptail); in tcpsock_try_merge()
983 *pnext = pnew; in tcpsock_try_merge()
1806 pfirst = pnext; in tcpsock_send()
1808 plast->next = pnext; in tcpsock_send()
1809 plast = pnext; in tcpsock_send()
1814 pnext->len = chunk; in tcpsock_send()
1831 pnext = ptail; in tcpsock_send()
1833 pnext = pfirst; in tcpsock_send()
1835 assert(pnext != NULL); in tcpsock_send()
1845 pnext = pfirst->next; in tcpsock_send()
[all …]
H A Dpktsock.c592 struct pbuf *pbuf, **pnext; in pktsock_dequeue() local
598 pnext = pchain_end(pbuf); in pktsock_dequeue()
601 if ((pkt->pkt_rcvhead = *pnext) == NULL) in pktsock_dequeue()
607 *pnext = NULL; in pktsock_dequeue()
H A Drtsock.c495 struct pbuf *pbuf, **pnext; in rtsock_dequeue() local
501 pnext = pchain_end(pbuf); in rtsock_dequeue()
504 if ((rt->rt_rcvhead = *pnext) == NULL) in rtsock_dequeue()
510 *pnext = NULL; in rtsock_dequeue()
/minix/external/bsd/libc++/dist/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
H A Dpbump.pass.cpp36 CharT* pnext = base::pptr(); in pbump() local
40 assert(base::pptr() == pnext+n); in pbump()
/minix/external/bsd/libc++/dist/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
H A Dpbump.pass.cpp36 CharT* pnext = base::pptr(); in pbump() local
40 assert(base::pptr() == pnext+n); in pbump()
/minix/bin/ksh/
H A Dmisc.c688 for (psub = p; ; psub = pnext) {
689 pnext = pat_scan(psub, pe, 1);
692 psub, pnext - 2, isfile)
700 if (pnext == prest)
715 for (psub = p; ; psub = pnext) {
716 pnext = pat_scan(psub, pe, 1);
720 psub, pnext - 2, isfile)
725 if (pnext == prest)
737 for (psub = p; ; psub = pnext) {
738 pnext = pat_scan(psub, pe, 1);
[all …]
/minix/external/bsd/pkg_install/dist/lib/
H A Dplist.c209 plist_t *pnext = p->next; in delete_plist() local
214 p->prev->next = pnext; in delete_plist()
216 pkg->head = pnext; in delete_plist()
217 if (pnext) in delete_plist()
218 pnext->prev = p->prev; in delete_plist()
224 p = pnext; in delete_plist()
/minix/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Dks_file.c373 char *p, *pnext; in file_init_common() local
419 for (p = ksf->fn; p != NULL; p = pnext) { in file_init_common()
422 pnext = strchr(p, ','); in file_init_common()
423 if (pnext) in file_init_common()
424 *pnext++ = '\0'; in file_init_common()
/minix/external/public-domain/sqlite/dist/
H A Dsqlite3.c52047 int pnext, psize, x;
52050 pnext = get2byte(&data[pbegin]);
52052 if( pbegin + psize + 3 >= pnext && pnext>0 ){
52053 int frag = pnext - (pbegin+psize);
52058 x = get2byte(&data[pnext]);
52060 x = pnext + get2byte(&data[pnext+2]) - pbegin;