Searched refs:mbuf_t (Results 1 - 25 of 154) sorted by relevance

1234567

/macosx-10.9.5/smb-697.95.1/include/netsmb/
H A Dupi_mbuf.h65 typedef struct smb_mbuf* mbuf_t; typedef in typeref:struct:smb_mbuf
67 mbuf_t mbuf_free(mbuf_t mbuf);
68 void mbuf_freem(mbuf_t mbuf);
69 int mbuf_gethdr(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
70 int mbuf_get(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
71 int mbuf_getcluster(mbuf_how_t how, mbuf_type_t type, size_t size, mbuf_t *mbuf);
73 mbuf_t *mbuf, void * extbuf, void (*extfree)(caddr_t , size_t, caddr_t),
75 size_t mbuf_len(const mbuf_t mbuf);
76 size_t mbuf_maxlen(const mbuf_t mbu
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dkpi_mbuf.h296 extern void *mbuf_data(mbuf_t mbuf);
309 extern void *mbuf_datastart(mbuf_t mbuf);
325 extern errno_t mbuf_setdata(mbuf_t mbuf, void *data, size_t len);
338 extern errno_t mbuf_align_32(mbuf_t mbuf, size_t len);
370 extern errno_t mbuf_get(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
382 extern errno_t mbuf_gethdr(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
387 points to a NULL mbuf_t, an mbuf will be allocated for you. If
388 mbuf points to a non-NULL mbuf_t, the user-supplied mbuf will
398 a different mbuf_t than the one you passed in.
411 mbuf_t *mbu
[all...]
/macosx-10.9.5/ppp-727.90.1/Drivers/PPTP/PPTP-extension/
H A Dpptp_ip.h31 int pptp_ip_output(mbuf_t m, u_int32_t from, u_int32_t to);
H A Dpptp_rfc.h52 typedef int (*pptp_rfc_input_callback)(void *data, mbuf_t m);
67 u_int16_t pptp_rfc_output(void *data, mbuf_t m);
70 int pptp_rfc_lower_input(mbuf_t m, u_int32_t from);
H A Dpptp_wan.h32 int pptp_wan_input(struct ppp_link *link, mbuf_t m);
/macosx-10.9.5/ppp-727.90.1/Family/
H A Dppp_compress.h35 void ppp_comp_ccp(struct ppp_if *wan, mbuf_t m, int rcvd);
37 int ppp_comp_compress(struct ppp_if *wan, mbuf_t *m);
38 int ppp_comp_incompress(struct ppp_if *wan, mbuf_t m);
39 int ppp_comp_decompress(struct ppp_if *wan, mbuf_t *m);
H A Dppp_domain.h72 int ppp_proto_input(void *data, mbuf_t m);
122 mbuf_t head;
123 mbuf_t tail;
131 void ppp_enqueue(struct pppqueue *pppq, mbuf_t m);
132 mbuf_t ppp_dequeue(struct pppqueue *pppq);
133 void ppp_prepend(struct pppqueue *pppq, mbuf_t m);
H A Dppp_if.h57 mbuf_t outm; /* mbuf currently being output */
98 int ppp_if_input(ifnet_t ifp, mbuf_t m, u_int16_t proto, u_int16_t hdrlen);
102 int ppp_if_send(ifnet_t ifp, mbuf_t m);
104 int ppp_if_xmit(ifnet_t ifp, mbuf_t m);
H A Dppp_link.h34 int ppp_link_send(struct ppp_link *link, mbuf_t m);
/macosx-10.9.5/IONetworkingFamily-100/
H A DIOPacketQueue.h136 virtual const mbuf_t peek() const;
143 virtual void prepend(mbuf_t m);
161 virtual void lockPrepend(mbuf_t m);
172 virtual bool enqueue(mbuf_t m);
192 virtual UInt32 enqueueWithDrop(mbuf_t m);
203 virtual bool lockEnqueue(mbuf_t m);
212 virtual UInt32 lockEnqueueWithDrop(mbuf_t m);
220 virtual mbuf_t dequeue();
229 virtual mbuf_t lockDequeue();
239 virtual mbuf_t dequeueAl
[all...]
H A DIOPacketQueue.cpp150 const mbuf_t IOPacketQueue::peek() const
158 void IOPacketQueue::prepend(mbuf_t m)
171 bool IOPacketQueue::enqueue(mbuf_t m)
181 UInt32 IOPacketQueue::enqueueWithDrop(mbuf_t m)
189 mbuf_t IOPacketQueue::dequeue()
197 mbuf_t IOPacketQueue::dequeueAll()
215 void IOPacketQueue::lockPrepend(mbuf_t m)
222 bool IOPacketQueue::lockEnqueue(mbuf_t m)
231 UInt32 IOPacketQueue::lockEnqueueWithDrop(mbuf_t m)
240 mbuf_t IOPacketQueu
[all...]
H A DIOMbufMemoryCursor.h106 virtual UInt32 genPhysicalSegments(mbuf_t packet, void * vector,
165 UInt32 getPhysicalSegments(mbuf_t packet,
183 UInt32 getPhysicalSegmentsWithCoalesce(mbuf_t packet,
229 UInt32 getPhysicalSegments(mbuf_t packet,
247 UInt32 getPhysicalSegmentsWithCoalesce(mbuf_t packet,
294 UInt32 getPhysicalSegments(mbuf_t packet,
312 UInt32 getPhysicalSegmentsWithCoalesce(mbuf_t packet,
357 UInt32 getPhysicalSegments(mbuf_t packet,
373 UInt32 getPhysicalSegmentsWithCoalesce(mbuf_t packet,
H A DIOMbufQueue.h33 mbuf_t head;
34 mbuf_t tail;
41 int IOMbufFree(mbuf_t m)
56 bool IOMbufQueueEnqueue( IOMbufQueue * q, mbuf_t m )
93 void IOMbufQueuePrepend( IOMbufQueue * q, mbuf_t m )
95 mbuf_t tail;
125 mbuf_t IOMbufQueueDequeue( IOMbufQueue * q )
127 mbuf_t m = q->head;
139 mbuf_t IOMbufQueueDequeueAll( IOMbufQueue * q )
141 mbuf_t
[all...]
/macosx-10.9.5/smb-697.95.1/kernel/sys5/sys/
H A Dmchain.h48 mbuf_t mb_top; /* head of mbufs chain */
49 mbuf_t mb_cur; /* current mbuf */
56 mbuf_t md_top; /* head of mbufs chain */
57 mbuf_t md_cur; /* current mbuf */
66 size_t m_fixhdr(mbuf_t );
71 mbuf_t mb_detach(mbchain_t ); /* KERNEL */
89 int mb_put_mbuf(mbchain_t , mbuf_t );
92 void mbuf_cat_internal(mbuf_t md_top, mbuf_t m0);
104 void md_initm(mdchain_t mbp, mbuf_t
[all...]
/macosx-10.9.5/ppp-727.90.1/Drivers/PPPoE/PPPoE-extension/
H A Dpppoe_wan.h32 int pppoe_wan_input(struct ppp_link *link, mbuf_t m);
H A Dpppoe_dlil.h33 int pppoe_dlil_output(ifnet_t ifp, mbuf_t m, u_int8_t *to, u_int16_t typ);
/macosx-10.9.5/smb-697.95.1/lib/smb/
H A Dmbuf.c63 mbuf_t mbuf_free(mbuf_t mbuf)
65 mbuf_t next = NULL;
101 int smb_mbuf_get(uint32_t how, uint32_t type, mbuf_t *mbuf, size_t maxlen)
133 void mbuf_freem(mbuf_t mbuf)
155 int mbuf_gethdr(uint32_t how, uint32_t type, mbuf_t *mbuf)
176 int mbuf_get(uint32_t how, uint32_t type, mbuf_t *mbuf)
185 * external data. If mbuf points to a NULL mbuf_t, an mbuf will be allocated for
186 * you. If mbuf points to a non-NULL mbuf_t, mbuf_getcluster may return a different
187 * mbuf_t tha
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkpi_mbuf.c53 void* mbuf_data(mbuf_t mbuf)
58 void* mbuf_datastart(mbuf_t mbuf)
67 errno_t mbuf_setdata(mbuf_t mbuf, void* data, size_t len)
80 errno_t mbuf_align_32(mbuf_t mbuf, size_t len)
99 errno_t mbuf_get(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf)
107 errno_t mbuf_gethdr(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf)
116 mbuf_attachcluster(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf,
177 mbuf_getcluster(mbuf_how_t how, mbuf_type_t type, size_t size, mbuf_t* mbuf)
221 errno_t mbuf_mclget(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf)
250 errno_t mbuf_getpacket(mbuf_how_t how, mbuf_t *mbu
[all...]
/macosx-10.9.5/ppp-727.90.1/Drivers/L2TP/L2TP-extension/
H A Dl2tp_rfc.h65 typedef int (*l2tp_rfc_input_callback)(void *data, mbuf_t m, struct sockaddr *from, int more);
77 u_int16_t l2tp_rfc_output(void *data, mbuf_t m, struct sockaddr *to);
80 int l2tp_rfc_lower_input(socket_t so, mbuf_t m, struct sockaddr *from);
H A Dl2tp_wan.h32 int l2tp_wan_input(struct ppp_link *link, mbuf_t m);
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dif_ether.h45 errno_t ether_demux(ifnet_t interface, mbuf_t packet, char* header,
51 errno_t ether_frameout(ifnet_t interface, mbuf_t *packet,
55 errno_t ether_frameout(ifnet_t interface, mbuf_t *packet,
60 errno_t ether_frameout_extended(ifnet_t interface, mbuf_t *packet,
H A Dkpi_interfacefilter.h85 protocol_family_t protocol, mbuf_t *data, char **frame_ptr);
108 protocol_family_t protocol, mbuf_t *data);
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet/
H A Dkpi_ipfilter.h95 typedef errno_t (*ipf_input_func)(void *cookie, mbuf_t *data, int offset,
117 typedef errno_t (*ipf_output_func)(void *cookie, mbuf_t *data,
198 extern errno_t ipf_inject_input(mbuf_t data, ipfilter_t filter_ref);
216 extern errno_t ipf_inject_output(mbuf_t data, ipfilter_t filter_ref,
H A Din_arp.h66 size_t ll_dest_len, route_t hint, mbuf_t packet);
71 size_t ll_dest_len, route_t hint, mbuf_t packet);
/macosx-10.9.5/IOFireWireIP-226.4/KernelHeaders/IOKit/
H A DIOFWIPBusInterface.h67 mbuf_t fMbuf;
78 void reinit(mbuf_t pkt, IOFireWireIP *ipNode, IOCommandPool *pool);
80 mbuf_t getMBuf();
299 SInt32 txARP(mbuf_t m, UInt16 nodeID, UInt32 busGeneration, IOFWSpeed speed);
301 SInt32 txBroadcastIP(const mbuf_t m, UInt16 nodeID, UInt32 busGeneration, UInt16 ownMaxPayload, UInt16 maxBroadcastPayload, IOFWSpeed speed, const UInt16 type, UInt32 channel);
303 SInt32 txUnicastUnFragmented(IOFireWireNub *device, const FWAddress addr, const mbuf_t m, const UInt16 pktSize, const UInt16 type);
305 SInt32 txUnicastFragmented(IOFireWireNub *device, const FWAddress addr, const mbuf_t m,
308 SInt32 txUnicastIP(mbuf_t m, UInt16 nodeID, UInt32 busGeneration, UInt16 ownMaxPayload, IOFWSpeed speed,const UInt16 type);
310 UInt32 outputPacket(mbuf_t pkt, void * param);
312 static UInt32 staticOutputPacket(mbuf_t pk
[all...]

Completed in 309 milliseconds

1234567