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

1 2 3

  /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 struct mbuf *
150 sctp_add_pad_tombuf(struct mbuf *, int);
152 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,
sctp_bsd_addr.h 57 void sctp_packet_log(struct mbuf *m);
sctp_indata.h 49 struct mbuf *dm);
82 struct mbuf *
96 sctp_handle_sack(struct mbuf *m, int offset_seg, int offset_dup,
105 struct sctp_forward_tsn_chunk *, int *, struct mbuf *, int);
116 sctp_process_data(struct mbuf **, int, int *, int,
sctp_input.h 43 sctp_common_input_processing(struct mbuf **, int, int, int,
sctp_auth.h 177 /* mbuf versions */
179 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer);
181 struct mbuf *m, uint32_t m_offset, uint8_t *digest);
195 extern void sctp_auth_get_cookie_params(struct sctp_tcb *stcb, struct mbuf *m,
197 extern void sctp_fill_hmac_digest_m(struct mbuf *m, uint32_t auth_offset,
199 extern struct mbuf *sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
203 struct mbuf *m, uint32_t offset);
206 extern int sctp_validate_init_auth_params(struct mbuf *m, int offset
    [all...]
sctp_var.h 101 * an mbuf cache as well so it is not really worth doing, at least
308 struct mbuf *_m; \
406 void sctp_input_with_port __P((struct mbuf *, int, uint16_t));
407 void sctp_input __P((struct mbuf *, int));
414 void sctp_input_with_port(struct mbuf *, int, uint16_t);
416 int sctp_input(struct mbuf **, int *, int);
418 void sctp_input(struct mbuf *, int);
429 void sctp_input(struct mbuf *,...);
432 int sctp_ctloutput(int, struct socket *, int, int, struct mbuf **);
474 int sctp_ingetaddr(struct socket *, struct mbuf *);
    [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...]
ByteArrayIStream.java 67 final byte [] mbuf = m_buf;
70 for (int i = 0; i < length; ++ i) buf [offset + i] = mbuf [pos + i];
72 System.arraycopy (mbuf, pos, buf, offset, length);
  /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...]
user_mbuf.c 64 * Note: I had to use struct clust_args as an encapsulation for an mbuf pointer.
65 * struct mbuf * clust_mb_args; does not work.
81 static int mbuf_constructor_dup(struct mbuf *m, int pkthdr, short type)
109 struct mbuf *
112 struct mbuf *mret;
123 /* Mbuf master zone, zone_mbuf, has already been
125 mret = SCTP_ZONE_GET(zone_mbuf, struct mbuf);
129 /*mret = ((struct mbuf *)umem_cache_alloc(zone_mbuf, UMEM_DEFAULT));*/
134 * so that the mbuf is properly constructed before returning it.
151 struct mbuf *
    [all...]
user_socketvar.h 178 struct mbuf *sb_mb; /* (c/d) the mbuf chain */
179 struct mbuf *sb_mbtail; /* (c/d) the last mbuf in the chain */
180 struct mbuf *sb_lastrecord; /* (c/d) first mbuf of last
182 struct mbuf *sb_sndptr; /* (c/d) pointer into mbuf chain */
545 struct mbuf;
557 int sockargs(struct mbuf **mp, caddr_t buf, int buflen, int type)
    [all...]
user_ip6_var.h 109 struct mbuf *t; \
  /bionic/tests/
mntent_test.cpp 28 struct mntent mbuf; local
30 ASSERT_TRUE(getmntent_r(fp, &mbuf, cbuf, sizeof(cbuf)) == NULL);
  /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);
  /external/iproute2/ip/
ipmroute.c 99 char mbuf[256]; local
120 format_host(AF_INET, 4, &maddr.data[0], mbuf, sizeof(mbuf)));
  /bionic/libc/include/netinet/
icmp6.h 678 void icmp6_paramerror(struct mbuf *, int);
679 void icmp6_error(struct mbuf *, int, int, int);
680 void icmp6_error2(struct mbuf *, int, int, int, struct ifnet *);
681 int icmp6_input(struct mbuf **, int *, int);
683 void icmp6_reflect(struct mbuf *, size_t);
684 void icmp6_prepare(struct mbuf *);
685 void icmp6_redirect_input(struct mbuf *, int);
686 void icmp6_redirect_output(struct mbuf *, struct rtentry *);
  /development/ndk/platforms/android-3/include/netinet/
icmp6.h 651 void icmp6_paramerror(struct mbuf *, int);
652 void icmp6_error(struct mbuf *, int, int, int);
653 void icmp6_error2(struct mbuf *, int, int, int, struct ifnet *);
654 int icmp6_input(struct mbuf **, int *, int);
656 void icmp6_reflect(struct mbuf *, size_t);
657 void icmp6_prepare(struct mbuf *);
658 void icmp6_redirect_input(struct mbuf *, int);
659 void icmp6_redirect_output(struct mbuf *, struct rtentry *);
  /development/ndk/platforms/android-L/include/netinet/
icmp6.h 678 void icmp6_paramerror(struct mbuf *, int);
679 void icmp6_error(struct mbuf *, int, int, int);
680 void icmp6_error2(struct mbuf *, int, int, int, struct ifnet *);
681 int icmp6_input(struct mbuf **, int *, int);
683 void icmp6_reflect(struct mbuf *, size_t);
684 void icmp6_prepare(struct mbuf *);
685 void icmp6_redirect_input(struct mbuf *, int);
686 void icmp6_redirect_output(struct mbuf *, struct rtentry *);
  /external/libpcap/bpf/net/
bpf_filter.c 73 # define mbuf msgb macro
127 #include <sys/mbuf.h>
143 register struct mbuf *m;
148 register struct mbuf *m0;
179 register struct mbuf *m;
184 register struct mbuf *m0;
207 * For the kernel, p is assumed to be a pointer to an mbuf if buflen is 0,
221 struct mbuf *m, *n;
225 m = (struct mbuf *)p;

Completed in 335 milliseconds

1 2 3