Searched defs:pbuf (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dstats.c72 stats_display_pbuf(struct stats_pbuf *pbuf) argument
75 LWIP_PLATFORM_DIAG(("avail: %"S16_F"\n\t", pbuf->avail));
76 LWIP_PLATFORM_DIAG(("used: %"S16_F"\n\t", pbuf->used));
77 LWIP_PLATFORM_DIAG(("max: %"S16_F"\n\t", pbuf->max));
78 LWIP_PLATFORM_DIAG(("err: %"S16_F"\n\t", pbuf->err));
79 LWIP_PLATFORM_DIAG(("alloc_locked: %"S16_F"\n\t", pbuf->alloc_locked));
80 LWIP_PLATFORM_DIAG(("refresh_locked: %"S16_F"\n", pbuf->refresh_locked));
106 stats_display_pbuf(&lwip_stats.pbuf);
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dpbuf.h56 /* Definitions for the pbuf flag field. These are NOT the flags that
58 #define PBUF_FLAG_RAM 0x00U /* Flags that pbuf data is stored in RAM */
59 #define PBUF_FLAG_ROM 0x01U /* Flags that pbuf data is stored in ROM */
60 #define PBUF_FLAG_POOL 0x02U /* Flags that the pbuf comes from the pbuf pool */
61 #define PBUF_FLAG_REF 0x04U /* Flags thet the pbuf payload refers to RAM */
66 struct pbuf { struct
67 /** next pbuf in singly linked pbuf chain */
68 struct pbuf *nex
[all...]
H A Dstats.h94 struct stats_pbuf pbuf; member in struct:stats_
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dpbuf.h47 /* @todo: We need a mechanism to prevent wasting memory in every pbuf
65 PBUF_RAM, /* pbuf data is stored in RAM */
66 PBUF_ROM, /* pbuf data is stored in ROM */
67 PBUF_REF, /* pbuf comes from the pbuf pool */
68 PBUF_POOL /* pbuf payload refers to RAM */
74 /** indicates this is a custom pbuf: pbuf_free and pbuf_header handle such a
75 a pbuf differently */
77 /** indicates this pbuf is UDP multicast to be looped back */
79 /** indicates this pbuf wa
86 struct pbuf { struct
126 struct pbuf pbuf; member in struct:pbuf_custom
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/windows/
H A DnsStringTest.h147 PRUnichar pbuf[10]={'e','f','g',0}; local
159 PRInt32 pos=theDest.Find(pbuf);
189 pos=theDest.FindCharInSet(pbuf);
204 pos=theDest.RFindCharInSet(pbuf);
473 PRUnichar pbuf[10]={'f','o','o',0};
474 PRUnichar* buf=pbuf;
492 nsCString temp4(pbuf);
493 NS_ASSERTION(temp4==pbuf,"nsCString Constructor error");
651 static const PRUnichar pbuf[] = {' ','w','o','r','l','d',0};
680 theDest.Assign(pbuf); //assig
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dglx_c_exports.c218 (Display *dpy, GLXPbuffer pbuf, int attribute, unsigned int *value)
220 return glxim.QueryGLXPbufferSGIX(dpy, pbuf, attribute, value);
229 DECLEXPORT(void) VBOXGLXENTRYTAG(glXDestroyGLXPbufferSGIX)(Display *dpy, GLXPbuffer pbuf) argument
231 return glxim.DestroyGLXPbufferSGIX(dpy, pbuf);
301 DECLEXPORT(void) VBOXGLXENTRYTAG(glXDestroyPbuffer)(Display *dpy, GLXPbuffer pbuf) argument
303 return glxim.DestroyPbuffer(dpy, pbuf);
217 glXQueryGLXPbufferSGIX(Display *dpy, GLXPbuffer pbuf, int attribute, unsigned int *value) argument
H A Dglx.c1340 DECLEXPORT(void) VBOXGLXTAG(glXDestroyGLXPbufferSGIX)(Display *dpy, GLXPbuffer pbuf) argument
1343 (void) pbuf;
1361 DECLEXPORT(int) VBOXGLXTAG(glXQueryGLXPbufferSGIX)(Display *dpy, GLXPbuffer pbuf, argument
1365 (void) pbuf;
1737 DECLEXPORT(void) VBOXGLXTAG(glXDestroyPbuffer)(Display *dpy, GLXPbuffer pbuf) argument
1740 (void) pbuf;
/vbox/src/VBox/NetworkServices/NAT/
H A Dproxy_tftpd.c57 struct pbuf *pbuf; member in struct:xfer
59 struct pbuf *oack;
95 static void tftpd_recv(void *, struct udp_pcb *, struct pbuf *, ip_addr_t *, u16_t);
97 static void tftpd_rrq(struct pbuf *, ip_addr_t *, u16_t);
99 static void tftp_xfer_recv(void *, struct udp_pcb *, struct pbuf *, ip_addr_t *, u16_t);
131 static struct pbuf *tftp_verror(u16_t, const char *, va_list);
181 tftpd_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p,
219 tftpd_rrq(struct pbuf *p, ip_addr_t *addr, u16_t port)
291 * Create static pbuf tha
405 struct pbuf *pbuf; local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTimelineService.cpp336 char pbuf[550], *pc, tbuf[550]; local
342 pc = Indent(pbuf);
343 PR_vsnprintf(pc, sizeof pbuf - (pc - pbuf), text, args);
345 secs, msecs, PR_GetCurrentThread(), pbuf);

Completed in 55 milliseconds