Home
last modified time | relevance | path

Searched refs:_packet (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_utility.cc82 return _packet; in Packet()
547 _packet.RR.SenderSSRC = *_ptrRTCPData++ << 24; in ParseRR()
548 _packet.RR.SenderSSRC += *_ptrRTCPData++ << 16; in ParseRR()
549 _packet.RR.SenderSSRC += *_ptrRTCPData++ << 8; in ParseRR()
550 _packet.RR.SenderSSRC += *_ptrRTCPData++; in ParseRR()
552 _packet.RR.NumberOfReportBlocks = _numberOfBlocks; in ParseRR()
575 _packet.SR.SenderSSRC = *_ptrRTCPData++ << 24; in ParseSR()
576 _packet.SR.SenderSSRC += *_ptrRTCPData++ << 16; in ParseSR()
577 _packet.SR.SenderSSRC += *_ptrRTCPData++ << 8; in ParseSR()
578 _packet.SR.SenderSSRC += *_ptrRTCPData++; in ParseSR()
[all …]
Drtcp_utility.h469 RTCPPacket _packet; variable
/external/jmdns/src/javax/jmdns/impl/
DDNSIncoming.java169 private final DatagramPacket _packet; field in DNSIncoming
185 this._packet = packet; in DNSIncoming()
247 this._packet = packet; in DNSIncoming()
260 … new DNSIncoming(this.getFlags(), this.getId(), this.isMulticast(), this._packet, this._receivedTi… in clone()
446 byte[] data = new byte[_packet.getLength()]; in print()
447 System.arraycopy(_packet.getData(), 0, data, 0, data.length); in print()
457 if (_packet.getAddress() != null) { in toString()
458 buf.append(_packet.getAddress().getHostAddress()); in toString()
461 buf.append(_packet.getPort()); in toString()
463 buf.append(_packet.getLength()); in toString()
/external/libusb/libusb/
Dlibusb.h1064 int _packet; in libusb_get_iso_packet_buffer() local
1071 _packet = packet; in libusb_get_iso_packet_buffer()
1073 if (_packet >= transfer->num_iso_packets) in libusb_get_iso_packet_buffer()
1076 for (i = 0; i < _packet; i++) in libusb_get_iso_packet_buffer()
1104 int _packet; in libusb_get_iso_packet_buffer_simple() local
1111 _packet = packet; in libusb_get_iso_packet_buffer_simple()
1113 if (_packet >= transfer->num_iso_packets) in libusb_get_iso_packet_buffer_simple()
1116 return transfer->buffer + (transfer->iso_packet_desc[0].length * _packet); in libusb_get_iso_packet_buffer_simple()