HomeSort by relevance Sort by last modified time
    Searched refs:mbuf (Results 1 - 25 of 286) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libppp/src/
pap.h 35 struct mbuf;
40 extern struct mbuf *pap_Input(struct bundle *, struct link *, struct mbuf *);
ip.h 31 struct mbuf;
41 extern struct mbuf *ipv4_Input(struct bundle *, struct link *, struct mbuf *);
43 extern struct mbuf *ipv6_Input(struct bundle *, struct link *, struct mbuf *);
layer.h 41 struct mbuf;
48 struct mbuf *(*push)(struct bundle *, struct link *, struct mbuf *,
50 struct mbuf *(*pull)(struct bundle *, struct link *, struct mbuf *,
mbuf.h 28 * $FreeBSD: src/usr.sbin/ppp/mbuf.h,v 1.29.26.1 2010/12/21 17:10:29 kensmith Exp $
31 struct mbuf { struct
36 struct mbuf *m_next; /* link to next mbuf */
37 struct mbuf *m_nextpkt; /* link to next packet */
43 struct mbuf *top;
44 struct mbuf *last;
99 #define M_MAXLEN (4352 - sizeof(struct mbuf)) /* > HDLCSIZE */
103 extern size_t m_length(struct mbuf *);
104 extern struct mbuf *m_get(size_t, int)
    [all...]
vjcomp.h 29 struct mbuf;
lqr.h 63 struct mbuf;
79 extern struct mbuf *lqr_RecvEcho(struct fsm *, struct mbuf *);
80 extern struct mbuf *lqr_Input(struct bundle *, struct link *, struct mbuf *);
cbcp.h 29 struct mbuf;
63 extern struct mbuf *cbcp_Input(struct bundle *, struct link *, struct mbuf *);
auth.h 67 extern struct mbuf *auth_ReadHeader(struct authinfo *, struct mbuf *);
68 extern struct mbuf *auth_ReadName(struct authinfo *, struct mbuf *, size_t);
sync.c 36 #include "mbuf.h"
51 static struct mbuf *
53 struct mbuf *bp, int pri __unused, u_short *proto __unused)
61 static struct mbuf *
62 sync_LayerPull(struct bundle *b __unused, struct link *l, struct mbuf *bp,
chap.h 31 struct mbuf;
75 extern struct mbuf *chap_Input(struct bundle *, struct link *, struct mbuf *);
proto.c 40 #include "mbuf.h"
55 struct mbuf *
56 proto_Prepend(struct mbuf *bp, u_short proto, unsigned comp, int extra)
71 static struct mbuf *
72 proto_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp,
84 static struct mbuf *
85 proto_LayerPull(struct bundle *b __unused, struct link *l, struct mbuf *bp,
ccp.h 65 struct mbuf;
134 struct mbuf *(*Read)(void *, struct ccp *, u_short *, struct mbuf *);
135 void (*DictSetup)(void *, struct ccp *, u_short, struct mbuf *);
145 struct mbuf *(*Write)(void *, struct ccp *, struct link *, int, u_short *,
146 struct mbuf *);
157 extern struct mbuf *ccp_Input(struct bundle *, struct link *, struct mbuf *);
proto.h 62 struct mbuf *proto_Prepend(struct mbuf *, u_short, unsigned, int);
mbuf.c 28 * $FreeBSD: src/usr.sbin/ppp/mbuf.c,v 1.46.26.1 2010/12/21 17:10:29 kensmith Exp $
42 #include "mbuf.h"
60 struct mbuf m;
63 } *bucket[(M_MAXLEN + sizeof(struct mbuf)) / BUCKET_HASH];
65 #define M_BINDEX(sz) (((sz) + sizeof(struct mbuf) - 1) / BUCKET_HASH)
70 struct mbuf *queue;
78 m_length(struct mbuf *bp)
103 struct mbuf *
107 struct mbuf *bp;
111 log_Printf(LogERROR, "Bad mbuf type %d\n", type)
    [all...]
async.h 45 struct mbuf;
  /external/qemu/slirp/
mbuf.h 29 * @(#)mbuf.h 8.3 (Berkeley) 1/21/94
30 * mbuf.h,v 1.9 1994/11/14 13:54:20 bde Exp
39 #define MINCSIZE 4096 /* Amount to increase mbuf if too small */
43 * mtod(m,t) - convert mbuf pointer to data pointer of correct type
44 * dtom(x) - convert data pointer within mbuf to mbuf pointer (XXX)
47 /* #define dtom(x) ((struct mbuf *)((int)(x) & ~(M_SIZE-1))) */
50 * Only one mbuf is ever used in a chain, for each "cell" of data.
58 /* header at beginning of each mbuf: */
60 struct mbuf *mh_next; /* Linked list of mbufs *
87 struct mbuf { struct
    [all...]
if.h 37 extern struct mbuf if_fastq; /* fast queue (for interactive data) */
38 extern struct mbuf if_batchq; /* queue for non-interactive data */
39 extern struct mbuf *next_m;
mbuf.c 9 * mbuf's in SLiRP are much simpler than the real mbufs in
11 * so that one whole packet can fit. Mbuf's cannot be
12 * chained together. If there's more data than the mbuf
21 struct mbuf m_freelist, m_usedlist;
39 * Get an mbuf from the free list, if there are none
46 struct mbuf *
49 register struct mbuf *m;
55 m = (struct mbuf *)malloc(SLIRP_MSIZE);
83 m_free(struct mbuf *m)
112 * Copy data from one mbuf to the end o
    [all...]
  /external/qemu/slirp-android/
mbuf.h 29 * @(#)mbuf.h 8.3 (Berkeley) 1/21/94
30 * mbuf.h,v 1.9 1994/11/14 13:54:20 bde Exp
39 #define MINCSIZE 4096 /* Amount to increase mbuf if too small */
43 * mtod(m,t) - convert mbuf pointer to data pointer of correct type
44 * dtom(x) - convert data pointer within mbuf to mbuf pointer (XXX)
47 /* #define dtom(x) ((struct mbuf *)((int)(x) & ~(M_SIZE-1))) */
50 * Only one mbuf is ever used in a chain, for each "cell" of data.
58 /* header at beginning of each mbuf: */
60 struct mbuf *mh_next; /* Linked list of mbufs *
87 struct mbuf { struct
    [all...]
if.h 37 extern struct mbuf if_fastq; /* fast queue (for interactive data) */
38 extern struct mbuf if_batchq; /* queue for non-interactive data */
39 extern struct mbuf *next_m;
mbuf.c 9 * mbuf's in SLiRP are much simpler than the real mbufs in
11 * so that one whole packet can fit. Mbuf's cannot be
12 * chained together. If there's more data than the mbuf
21 struct mbuf m_freelist, m_usedlist;
39 * Get an mbuf from the free list, if there are none
46 struct mbuf *
49 register struct mbuf *m;
55 m = (struct mbuf *)malloc(SLIRP_MSIZE);
83 m_free(struct mbuf *m)
112 * Copy data from one mbuf to the end o
    [all...]
  /external/emma/core/java12/com/vladium/util/
ByteArrayOStream.java 53 byte [] mbuf = m_buf;
54 final int mbuflen = mbuf.length;
61 for (int i = 0; i < pos; ++ i) newbuf [i] = mbuf [i];
63 System.arraycopy (mbuf, 0, newbuf, 0, pos);
65 m_buf = mbuf = newbuf;
68 mbuf [pos] = (byte) b1;
69 mbuf [pos + 1] = (byte) b2;
77 byte [] mbuf = m_buf;
78 final int mbuflen = mbuf.length;
85 for (int i = 0; i < pos; ++ i) newbuf [i] = mbuf [i]
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 130 MediaBuffer *mbuf; local
131 status_t err = mSource->read(&mbuf);
145 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
147 sp<ABuffer> accessUnit = new ABuffer(mbuf->range_length());
150 (const uint8_t *)mbuf->data() + mbuf->range_offset(),
151 mbuf->range_length());
156 mbuf->release();
157 mbuf = NULL;
161 accessUnit->meta()->setPointer("mediaBuffer", mbuf);
    [all...]
  /bionic/libc/include/net/
if_ieee1394.h 95 struct mbuf *rp_m;
118 void ieee1394_input(struct ifnet *, struct mbuf *, u_int16_t);
122 struct mbuf * ieee1394_fragment(struct ifnet *, struct mbuf *, int, u_int16_t);
  /development/ndk/platforms/android-3/include/net/
if_ieee1394.h 95 struct mbuf *rp_m;
118 void ieee1394_input(struct ifnet *, struct mbuf *, u_int16_t);
122 struct mbuf * ieee1394_fragment(struct ifnet *, struct mbuf *, int, u_int16_t);

Completed in 291 milliseconds

1 2 3 4 5 6 7 8 91011>>