• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/IONetworkingFamily-101/

Lines Matching defs:packet

784         // Publish max/min packet size.
794 // Publish supported packet filters.
855 // Transmit a packet mbuf.
1012 mbuf_t packet;
1016 //as protection from drivers that incorrectly assume they always get a single-mbuf packet
1022 if( 0 == mbuf_allocpacket(how, reqSize, NULL, &packet))
1024 mbuf_t m = packet;
1025 mbuf_pkthdr_setlen(packet, size);
1037 mbuf_setlen(m, size); //truncate to remaining portion of packet
1042 return packet;
1169 // Allocate a new packet to replace the current packet.
1186 // Returns a new mbuf created from the source packet.
1241 // Large packet, it is more efficient to allocate a new mbuf
1243 // packet shall have exactly the same size as the original
1359 // Initialize checksum result fields in the packet.
1402 // headers. Must pass up the offset to the packet data where
1566 // function when KDP is polling for a received packet. This function will
1583 // function when KDP sends an outgoing packet. This function will in turn
1622 // method will be called by the debugger client to poll for a incoming packet
1629 // pkt: Pointer to a receive buffer where the received packet should
1631 // pkt_len: The length of the received packet must be written to the
1634 // a packet to arrive before this method must return.
1647 // debugger to send an outbound packet when the kernel debugger is active.
1654 // pkt: Pointer to a transmit buffer containing the packet to be sent.
2378 mbuf_t packet,
2387 if (!packet || !data || !length)
2390 error = mbuf_add_drvaux(packet, MBUF_WAITOK, family, subFamily,
2404 mbuf_t packet )
2406 mbuf_del_drvaux(packet);