HomeSort by relevance Sort by last modified time
    Searched refs:packet (Results 576 - 600 of 720) sorted by null

<<212223242526272829

  /external/chromium_org/net/quic/
quic_sent_packet_manager.h 37 // retransmittable data associated with each packet. If a packet is
38 // retransmitted, it will keep track of each version of a packet so that if a
44 // the packet manager or connection as a result of these callbacks.
74 const SerializedPacket& packet) {}
79 // state of the packet manager as a result of these callbacks.
118 // Called when a new packet is serialized. If the packet contains
119 // retransmittable data, it will be added to the unacked packet map.
122 // Called when a packet is retransmitted with a new sequence number
    [all...]
  /external/chromium_org/remoting/host/
desktop_session_agent.h 92 // Forwards an audio packet though the IPC channel to the network process.
93 void ProcessAudioPacket(scoped_ptr<AudioPacket> packet);
video_scheduler_unittest.cc 47 scoped_ptr<VideoPacket> packet(new VideoPacket());
48 return packet.release();
268 // cycle. When the first encoded packet is submitted to the network
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannel.h 179 // A packet queue which tracks the total queued bytes. Queued packets are
196 void Push(DataBuffer* packet);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
pseudotcp.h 52 // Write the packet onto the network
90 // Call this whenever a packet arrives.
91 // Returns true if the packet was processed successfully.
156 // Creates a packet and submits it to the network. This method can either
157 // send payload or just an ACK packet.
159 // |seq| is the sequence number of this packet.
160 // |flags| is the flags for sending this packet.
163 // value is 0 then this is an ACK packet, otherwise this packet has payload.
164 IPseudoTcpNotify::WriteResult packet(uint32 seq, uint8 flags
    [all...]
pseudotcp.cc 45 // The following logging is for detailed (packet-level) analysis only.
81 // Note: we removed lowest level because packet overhead was larger!
180 S_SENT_PACKET, // All packet sends
181 S_RESENT_PACKET, // All packet sends that are retransmits
182 S_RECV_PACKET, // All packet receives
183 S_RECV_NEW, // All packet receives that are too new
184 S_RECV_OLD, // All packet receives that are too old
343 packet(m_snd_nxt - 1, 0, 0, 0);
352 packet(m_snd_nxt, 0, 0, 0);
364 packet(m_snd_nxt, 0, 0, 0)
525 IPseudoTcpNotify::WriteResult PseudoTcp::packet(uint32 seq, uint8 flags, function in class:cricket::PseudoTcp
    [all...]
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.cc 68 const TimeSizePair& packet = window_.front(); local
69 if (packet.first > (last_accumulated_us_ - kWindowSizeUs)) {
73 assert(bytes_per_second_ >= packet.second);
75 bytes_per_second_ -= packet.second;
122 Packet::Packet()
130 Packet::Packet(int flow_id, int64_t send_time_us, uint32_t payload_size,
139 Packet::Packet(int64_t send_time_us, uint32_t sequence_number
    [all...]
bwe_test_framework_unittest.cc 75 packets.push_back(Packet(100, 0));
78 packets.push_back(Packet(110, 0));
82 packets.push_back(Packet(100, 0));
85 // ...remove the out-of-order packet, insert another in-order packet.
87 packets.push_back(Packet(120, 0));
96 packets.push_back(Packet(0, 100));
99 packets.push_back(Packet(0, 110));
103 packets.push_back(Packet(0, 100));
106 // ...remove the out-of-order packet, insert another in-order packet
604 const Packet& packet = output_packets_.front(); local
617 const Packet& packet = *it; local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fStencilTests.cpp 92 rr::VertexPacket& packet = *packets[packetNdx]; local
94 packet.position = rr::readVertexAttribFloat(inputs[0], packet.instanceNdx, packet.vertexNdx);
  /external/deqp/modules/gles3/functional/
es3fStencilTests.cpp 95 rr::VertexPacket& packet = *packets[packetNdx]; local
97 packet.position = rr::readVertexAttribFloat(inputs[0], packet.instanceNdx, packet.vertexNdx);
  /external/libnl/lib/netfilter/
queue_obj.c 58 __ADD(NFNL_QUEUE_COPY_PACKET, packet)
  /external/libogg/include/ogg/
ogg.h 54 unsigned char *body_data; /* bytes from packet bodies */
72 int e_o_s; /* set when we have buffered the last packet in the
88 to a single raw Ogg/Vorbis packet *************************************/
91 unsigned char *packet; member in struct:__anon4081
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.h 106 // Wait for a packet within 'nsec' seconds
117 lldb_private::DataExtractor &packet);
125 // Set the global packet timeout.
  /external/chromium_org/media/cast/net/rtcp/
rtcp.cc 23 // the newest packet we've seen so far. This protect internal
31 // A receiver packet event is identified by all of the above plus packet id.
36 // bits 16-31: packet ID if packet event, 0 otherwise.
80 bool Rtcp::IsRtcpPacket(const uint8* packet, size_t length) {
82 LOG(ERROR) << "Invalid RTCP packet received.";
86 uint8 packet_type = packet[1];
102 // Check if this is a valid RTCP packet.
105 << "Received an invalid (non-RTCP?) packet."
    [all...]
  /external/chromium_org/net/dns/
dns_response.cc 28 DnsRecordParser::DnsRecordParser(const void* packet,
31 : packet_(reinterpret_cast<const char*>(packet)),
72 // If seen the whole packet, then we must be in a loop.
  /external/chromium_org/net/tools/quic/
quic_client.cc 356 QuicEncryptedPacket packet(buf, bytes_read, false);
360 client_address, server_address, packet);
  /external/chromium_org/third_party/webrtc/test/
fake_network_pipe_unittest.cc 52 scoped_ptr<uint8_t[]> packet(new uint8_t[kPacketSize]);
54 pipe->SendPacket(packet.get(), kPacketSize);
81 // Time to get one packet through the link.
90 // Advance enough time to release one packet.
96 // Release all but one packet
122 // Time to get one packet through the link.
132 // Advance the network delay to get the first packet.
138 // Advance one more kPacketTimeMs to get the last packet.
190 // Packet 1: kPacketTimeMs + config.queue_delay_ms,
191 // packet 2: 2 * kPacketTimeMs + config.queue_delay_ms => 170 ms average
    [all...]
  /external/chromium_org/v8/tools/testrunner/network/
network_execution.py 178 packet = workpacket.WorkPacket(peer=peer, context=self.context,
182 data, test_map = packet.Pack(self.binaries)
  /external/dnsmasq/src/
helper.c 141 /* and CLID into packet */
144 for (p = daemon->packet, i = 0; i < data.clid_len; i++)
196 my_setenv("DNSMASQ_CLIENT_ID", daemon->packet, &err);
  /external/jmdns/src/javax/jmdns/impl/
HostInfo.java 177 boolean shouldIgnorePacket(DatagramPacket packet) {
180 InetAddress from = packet.getAddress();
186 // of the interface on which the packet was received.
  /external/chromium_org/third_party/boringssl/src/ssl/
s3_pkt.c 128 /* If extend == 0, obtain new n-byte packet; if extend == 1, increase
129 * packet by another n bytes.
130 * The packet will be in the sub-array of s->s3->rbuf.buf specified
131 * by s->packet and s->packet_length.
155 /* start with empty packet ... */
160 /* check if next packet length is large
166 /* Note that even if packet is corrupted
177 s->packet = rb->buf + rb->offset;
183 * because the read operation returns the whole packet
205 * 'len' bytes already pointed to by 'packet',
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/
libusb.h 395 /** Delay from the time a host transmits a packet to the time it is
504 /** Maximum packet size for endpoint 0 */
558 /** Maximum packet size this endpoint is capable of sending/receiving. */
869 * Setup packet for control transfers. */
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_sanity.c 58 /* New (1.3) state mechanism. 3 commands (packet, scalar, vector) in
66 } packet[RADEON_MAX_STATE_PACKETS] = { variable in typeref:struct:__anon19112
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_sanity.c 54 /* New (1.3) state mechanism. 3 commands (packet, scalar, vector) in
62 } packet[RADEON_MAX_STATE_PACKETS] = { variable in typeref:struct:__anon19124
530 int id = (int)header.packet.packet_id;
531 int sz = packet[id].len;
536 fprintf(stderr, "Packet overflows cmdbuf\n");
540 if (!packet[id].name) {
541 fprintf(stderr, "*** Unknown packet 0 nr %d\n", id );
547 fprintf(stderr, "Packet 0 reg %s nr %d\n", packet[id].name, sz );
550 struct reg *reg = lookup_reg( regs, packet[id].start + i*4 )
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_sanity.c 58 /* New (1.3) state mechanism. 3 commands (packet, scalar, vector) in
66 } packet[RADEON_MAX_STATE_PACKETS] = { variable in typeref:struct:__anon7450
    [all...]

Completed in 1189 milliseconds

<<212223242526272829