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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet6/
sctp6_var.h 50 int sctp6_usrreq(struct socket *, int, struct mbuf *, struct mbuf *, struct mbuf *);
54 int sctp6_input(struct mbuf **, int *);
55 int sctp6_input_with_port(struct mbuf **, int *, uint16_t);
59 int sctp6_input __P((struct mbuf **, int *, int));
60 int sctp6_input_with_port __P((struct mbuf **, int *, uint16_t));
62 int sctp6_input(struct mbuf **, int *, int);
63 int sctp6_input_with_port(struct mbuf **, int *, uint16_t);
67 __P((struct sctp_inpcb *, struct mbuf *, struct sockaddr *
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_crc32.h 43 uint32_t sctp_calculate_cksum(struct mbuf *, uint32_t);
46 void sctp_delayed_cksum(struct mbuf *, uint32_t offset);
51 uint32_t sctp_calculate_cksum(struct mbuf *, uint32_t);
sctp_output.h 46 struct mbuf *
50 struct mbuf *m_at,
86 sctp_send_initiate_ack(struct sctp_inpcb *, struct sctp_tcb *, struct mbuf *,
95 struct mbuf *
96 sctp_arethere_unrecognized_parameters(struct mbuf *, int, int *,
98 void sctp_queue_op_err(struct sctp_tcb *, struct mbuf *);
101 sctp_send_cookie_echo(struct mbuf *, int, struct sctp_tcb *,
107 sctp_send_heartbeat_ack(struct sctp_tcb *, struct mbuf *, int, int,
145 sctp_output(struct sctp_inpcb *, struct mbuf *, struct sockaddr *,
146 struct mbuf *, struct thread *, int)
    [all...]
sctputil.h 51 struct mbuf *sctp_m_free(struct mbuf *m);
52 void sctp_m_freem(struct mbuf *m);
123 struct mbuf *m,
141 uint32_t sctp_calculate_len(struct mbuf *);
143 caddr_t sctp_m_getptr(struct mbuf *, int, int, uint8_t *);
146 sctp_get_next_param(struct mbuf *, int,
149 int sctp_add_pad_tombuf(struct mbuf *, int);
151 int sctp_pad_lastmbuf(struct mbuf *, int, struct mbuf *);
    [all...]
sctp_asconf.h 48 extern struct mbuf *sctp_compose_asconf(struct sctp_tcb *, int *, int);
51 sctp_handle_asconf(struct mbuf *, unsigned int, struct sockaddr *,
55 sctp_handle_asconf_ack(struct mbuf *, int, struct sctp_asconf_ack_chunk *,
79 sctp_check_address_list(struct sctp_tcb *, struct mbuf *, int, int,
  /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...]
tftp.h 33 void tftp_input(struct mbuf *m);
udp.h 97 struct mbuf;
100 void udp_input _P((register struct mbuf *, int));
101 int udp_output _P((struct socket *, struct mbuf *, struct sockaddr_in *));
105 int udp_output2(struct socket *so, struct mbuf *m,
  /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...]
tftp.h 33 void tftp_input(struct mbuf *m);
udp.h 95 struct mbuf;
98 void udp_input _P((register struct mbuf *, int));
99 int udp_output_ _P((struct socket *, struct mbuf *, SockAddress *));
105 int udp_output2_(struct socket *so, struct mbuf *m,
  /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...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_mbuf.h 54 struct mbuf * m_gethdr(int how, short type);
55 struct mbuf * m_get(int how, short type);
56 struct mbuf * m_free(struct mbuf *m);
57 void m_clget(struct mbuf *m, int how);
60 /* mbuf initialization function */
90 * mtod(m, t) -- Convert mbuf pointer to data pointer of correct type.
91 * dtom(x) -- Convert data pointer within mbuf to mbuf pointer (XXX).
94 #define dtom(x) ((struct mbuf *)((intptr_t)(x) & ~(MSIZE-1))
231 struct mbuf { struct
    [all...]
  /bionic/tests/
mntent_test.cpp 28 struct mntent mbuf; local
30 ASSERT_TRUE(getmntent_r(fp, &mbuf, cbuf, sizeof(cbuf)) == NULL);
  /frameworks/av/media/libstagefright/webm/
WebmFrame.cpp 30 sp<ABuffer> toABuffer(MediaBuffer *mbuf) {
31 sp<ABuffer> abuf = new ABuffer(mbuf->range_length());
32 memcpy(abuf->data(), (uint8_t*) mbuf->data() + mbuf->range_offset(), mbuf->range_length());
49 WebmFrame::WebmFrame(int type, bool key, uint64_t absTimecode, MediaBuffer *mbuf)
53 mData(toABuffer(mbuf)),
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 141 MediaBuffer *mbuf; local
142 status_t err = mSource->read(&mbuf);
146 mbuf->release();
147 mbuf = NULL;
166 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
168 sp<ABuffer> accessUnit = new ABuffer(mbuf->range_length());
171 (const uint8_t *)mbuf->data() + mbuf->range_offset(),
172 mbuf->range_length());
177 mbuf->release()
    [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);
  /development/ndk/platforms/android-L/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);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/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);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/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 556 milliseconds

1 2 3 4 5 6 7 8 91011>>