HomeSort by relevance Sort by last modified time
    Searched refs:packet_bytes (Results 1 - 3 of 3) sorted by null

  /kernel/tests/net/test/
tun_twister.py 163 def _DecodeIpPacket(packet_bytes):
164 """Decode 'packet_bytes' as an IPv4 or IPv6 scapy object."""
165 ip_ver = (ord(packet_bytes[0]) & 0xF0) >> 4
167 return scapy.IP(packet_bytes)
169 return scapy.IPv6(packet_bytes)
171 raise ValueError("packet_bytes is not a valid IPv4 or IPv6 packet")
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_vp8.cc 289 size_t packet_bytes = 0; // How much data to send in this packet. local
301 packet_bytes += next_size;
327 assert(packet_bytes > 0);
330 packet_bytes,
333 total_bytes_processed += packet_bytes;
364 const size_t packet_bytes = local
367 const size_t this_packet_bytes = packet_bytes < remaining_partition
368 ? packet_bytes
rtp_format_vp9.cc 534 size_t packet_bytes = CalcNextSize(rem_payload_len, rem_bytes); local
535 if (packet_bytes == 0) {
541 QueuePacket(bytes_processed, packet_bytes, bytes_processed == 0,
542 rem_bytes == packet_bytes, &packets_);
543 bytes_processed += packet_bytes;

Completed in 132 milliseconds