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

<<11121314151617181920>>

  /external/chromium_org/net/quic/test_tools/
simple_quic_framer.cc 39 const QuicPublicResetPacket& packet) OVERRIDE {
40 public_reset_packet_.reset(new QuicPublicResetPacket(packet));
43 const QuicVersionNegotiationPacket& packet) OVERRIDE {
45 new QuicVersionNegotiationPacket(packet));
67 // Save a copy of the data so it is valid after the packet is processed.
201 bool SimpleQuicFramer::ProcessPacket(const QuicPacket& packet) {
203 ENCRYPTION_NONE, 0, packet));
207 bool SimpleQuicFramer::ProcessPacket(const QuicEncryptedPacket& packet) {
210 return framer_.ProcessPacket(packet);
simple_quic_framer.h 36 bool ProcessPacket(const QuicEncryptedPacket& packet);
37 bool ProcessPacket(const QuicPacket& packet);
  /external/chromium_org/remoting/protocol/
channel_multiplexer.h 53 void OnIncomingPacket(scoped_ptr<MultiplexPacket> packet,
57 bool DoWrite(scoped_ptr<MultiplexPacket> packet,
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
packet_manipulator.cc 48 uint8_t* packet = NULL; local
53 while ((nbr_bytes_to_read = packet_reader_->NextPacket(&packet)) > 0) {
54 // Check if we're currently in a packet loss burst that is not completed:
  /external/chromium_org/third_party/webrtc/video/
video_receive_stream.h 67 virtual bool DeliverRtcp(const uint8_t* packet, size_t length);
68 virtual bool DeliverRtp(const uint8_t* packet, size_t length);
end_to_end_tests.cc 58 virtual bool SendRtp(const uint8_t* packet, size_t length) OVERRIDE {
63 virtual bool SendRtcp(const uint8_t* packet, size_t length) OVERRIDE {
281 virtual Action OnReceiveRtcp(const uint8_t* packet,
283 RTCPUtility::RTCPParserV2 parser(packet, length, true);
286 ssrc |= static_cast<uint32_t>(packet[4]) << 24;
287 ssrc |= static_cast<uint32_t>(packet[5]) << 16;
288 ssrc |= static_cast<uint32_t>(packet[6]) << 8;
289 ssrc |= static_cast<uint32_t>(packet[7]) << 0;
298 << "Timed out while waiting for a receiver RTCP packet to be sent.";
319 virtual Action OnSendRtp(const uint8_t* packet, size_t length) OVERRIDE
1125 const RTCPUtility::RTCPPacket& packet = parser.Packet(); local
1129 const RTCPUtility::RTCPPacket& packet = parser.Packet(); local
    [all...]
call.cc 104 virtual DeliveryStatus DeliverPacket(const uint8_t* packet,
110 DeliveryStatus DeliverRtcp(const uint8_t* packet, size_t length);
111 DeliveryStatus DeliverRtp(const uint8_t* packet, size_t length);
346 PacketReceiver::DeliveryStatus Call::DeliverRtcp(const uint8_t* packet,
349 // Do NOT broadcast! Also make sure it's a valid packet.
351 // there's no receiver of the packet.
359 if (it->second->DeliverRtcp(packet, length))
370 if (it->second->DeliverRtcp(packet, length))
377 PacketReceiver::DeliveryStatus Call::DeliverRtp(const uint8_t* packet,
383 const uint8_t* ptr = &packet[8]
    [all...]
  /external/deqp/framework/referencerenderer/
rrVertexPacket.cpp 21 * \brief Vertex packet and Vertex packet allocator
85 VertexPacket* packet = *--m_singleAllocPool.end(); local
87 return packet;
  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 92 inline const PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::ArrayWrapper
94 return m_expression.template packet<LoadMode>(rowId, colId);
104 inline const PacketScalar packet(Index index) const function in class:Eigen::ArrayWrapper
106 return m_expression.template packet<LoadMode>(index);
212 inline const PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::MatrixWrapper
214 return m_expression.template packet<LoadMode>(rowId, colId);
224 inline const PacketScalar packet(Index index) const function in class:Eigen::MatrixWrapper
226 return m_expression.template packet<LoadMode>(index);
  /external/libvorbis/doc/
a1-encapsulation-ogg.tex 9 streams to encapsulate Vorbis compressed audio packet data into file
67 Ogg encapsulation of a Vorbis packet stream is straightforward.
72 The first Vorbis packet (the identification header), which
86 packet finishes the page on which it ends. The next (first audio) packet
95 The first audio packet of the logical stream begins a fresh Ogg page.
118 position of the last packet \emph{completed} on that
122 packet (that completes on a subsequent page) has no granule
126 Note that the last decoded (fully lapped) PCM sample from a packet
128 current Vorbis packet encodes a "long block" and the next Vorbi
    [all...]
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioGroupTest.java 78 DatagramPacket packet = new DatagramPacket(new byte[length + 1], length + 1); local
80 socket.receive(packet);
81 assertEquals(packet.getLength(), length);
85 DatagramPacket packet = new DatagramPacket(new byte[1], 1); local
91 socket.receive(packet);
  /external/eigen/Eigen/src/LU/arch/
Inverse_SSE.h 48 __m128 _L1 = matrix.template packet<MatrixAlignment>( 0);
49 __m128 _L2 = matrix.template packet<MatrixAlignment>( 4);
50 __m128 _L3 = matrix.template packet<MatrixAlignment>( 8);
51 __m128 _L4 = matrix.template packet<MatrixAlignment>(12);
186 A1 = matrix.template packet<MatrixAlignment>( 0); B1 = matrix.template packet<MatrixAlignment>( 2);
187 A2 = matrix.template packet<MatrixAlignment>( 4); B2 = matrix.template packet<MatrixAlignment>( 6);
188 C1 = matrix.template packet<MatrixAlignment>( 8); D1 = matrix.template packet<MatrixAlignment>(10)
    [all...]
  /external/iptables/extensions/
libxt_statistic.c 29 "[!] --every n Match every nth packet\n"
30 " --packet p Initial counter value (0 <= p <= n-1, default 0)\n");
43 {.name = "packet", .id = O_PACKET, .type = XTTYPE_UINT32,
44 .flags = XTOPT_PUT, XTOPT_POINTER(s, u.nth.packet),
89 "--every and --packet must be specified when "
93 if (info->u.nth.packet > info->u.nth.every)
95 "the --packet p must be 0 <= p <= n-1");
97 info->u.nth.count = info->u.nth.every - info->u.nth.packet;
114 if (info->u.nth.packet || *prefix)
115 printf(" %spacket %u", prefix, info->u.nth.packet);
    [all...]
  /external/libpcap/
pcap-enet.c 41 u_char packet[8]
75 * Loop through each packet.
82 if (bpf_filter(fcode, (char *)ph->packet,
86 (*printit)((char *)ph->packet,
96 if (bpf_filter(fcode, buf.hdr.packet, cc, caplen)) {
99 (*printit)(buf.hdr.packet, &tv, cc, caplen);
107 /* Call ONLY if read() has returned an error on packet filter */
  /external/chromium_org/remoting/host/
video_scheduler.cc 319 void VideoScheduler::SendVideoPacket(scoped_ptr<VideoPacket> packet) {
326 packet.Pass(), base::Bind(&VideoScheduler::OnVideoPacketSent, this));
377 // If there is nothing to encode then send an empty packet.
380 scoped_ptr<VideoPacket> packet(new VideoPacket());
381 packet->set_client_sequence_number(sequence_number);
385 &VideoScheduler::SendVideoPacket, this, base::Passed(&packet)));
389 scoped_ptr<VideoPacket> packet = encoder_->Encode(*frame); local
390 packet->set_client_sequence_number(sequence_number);
393 packet->set_timestamp(timestamp.ToInternalValue());
396 // Destroy the frame before sending |packet| because SendVideoPacket() ma
    [all...]
  /external/chromium_org/remoting/test/
fake_socket_factory.cc 277 // Drop the packet.
290 // Put the packet to the |pending_packets_| and post a task for
292 // deliver a different packet, not the one added to the queue here. This
296 PendingPacket packet(from, to, data, data_size);
297 pending_packets_.push_back(packet);
308 PendingPacket packet; local
312 packet = *it;
315 packet = pending_packets_.front();
319 UdpSocketsMap::iterator iter = udp_sockets_.find(packet.to.port());
325 iter->second.Run(packet.from, packet.to, packet.data, packet.data_size)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
receiver_unittest.cc 15 #include "webrtc/modules/video_coding/main/source/packet.h"
45 VCMPacket packet; local
46 packet.dataPtr = data_buffer_;
47 bool packet_available = stream_generator_->GetPacket(&packet, index);
52 return receiver_.InsertPacket(packet, 640, 480);
56 VCMPacket packet; local
57 packet.dataPtr = data_buffer_;
58 bool packet_available = stream_generator_->PopPacket(&packet, index);
62 return receiver_.InsertPacket(packet, kWidth, kHeight);
74 // Drop the second packet
75 VCMPacket packet; local
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
richards.js 51 var queue = new Packet(null, ID_WORKER, KIND_WORK);
52 queue = new Packet(queue, ID_WORKER, KIND_WORK);
55 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
60 queue = new Packet(null, ID_DEVICE_B, KIND_DEVICE);
61 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
62 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
83 * These two constants specify how many times a packet is queued and
123 * @param {Packet} queue the queue of work to be processed by the tas
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-richards.js 46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
55 queue = new Packet(null, ID_DEVICE_B, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
78 * These two constants specify how many times a packet is queued and
118 * @param {Packet} queue the queue of work to be processed by the tas
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-richards.js 46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
55 queue = new Packet(null, ID_DEVICE_B, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
78 * These two constants specify how many times a packet is queued and
118 * @param {Packet} queue the queue of work to be processed by the tas
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-richards.js 46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
55 queue = new Packet(null, ID_DEVICE_B, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
78 * These two constants specify how many times a packet is queued and
118 * @param {Packet} queue the queue of work to be processed by the tas
    [all...]
  /external/chromium_org/v8/benchmarks/
richards.js 51 var queue = new Packet(null, ID_WORKER, KIND_WORK);
52 queue = new Packet(queue, ID_WORKER, KIND_WORK);
55 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
60 queue = new Packet(null, ID_DEVICE_B, KIND_DEVICE);
61 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
62 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
83 * These two constants specify how many times a packet is queued and
123 * @param {Packet} queue the queue of work to be processed by the tas
    [all...]
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_tcp_unittest.cc 172 std::vector<char> packet; local
173 CreateRandomPacket(&packet);
174 socket_host_->Send(dest_.ip_address, packet, options, 0);
182 // Receive packet from |dest_|.
199 std::vector<char> packet; local
200 CreateRandomPacket(&packet);
201 socket_host_->Send(dest_.ip_address, packet, options, 0);
204 expected_data.append(IntToSize(packet.size()));
205 expected_data.append(packet.begin(), packet.end())
260 std::vector<char> packet; local
355 std::vector<char> packet; local
    [all...]
  /external/chromium_org/remoting/codec/
codec_test.cc 82 void ReceivedPacket(VideoPacket* packet) {
83 ASSERT_TRUE(decoder_->DecodePacket(*packet));
96 void ReceivedScopedPacket(scoped_ptr<VideoPacket> packet) {
97 ReceivedPacket(packet.get());
217 void DataAvailable(scoped_ptr<VideoPacket> packet) {
221 decoder_tester_->ReceivedPacket(packet.get());
258 scoped_ptr<VideoPacket> packet = encoder->Encode(*frame); local
259 tester->DataAvailable(packet.Pass());
308 scoped_ptr<VideoPacket> packet = encoder->Encode(*frame); local
309 encoder_tester->DataAvailable(packet.Pass())
368 scoped_ptr<VideoPacket> packet = encoder->Encode(*frame); local
419 scoped_ptr<VideoPacket> packet = encoder->Encode(*test_frames.front()); local
    [all...]
  /external/deqp/modules/egl/
teglColorClearCase.cpp 324 ClearPacket& packet = packets[threadNdx][packetNdx]; local
327 packet.wait = semaphores[packetNdx*numThreads + threadNdx];
328 packet.signal = semaphores[packetNdx*numThreads + threadNdx + 1];
330 for (int clearNdx = 0; clearNdx < DE_LENGTH_OF_ARRAY(packet.clears); clearNdx++)
334 packet.clears[clearNdx] = ClearOp(0, 0, width, height, RGBA::black);
336 packet.clears[clearNdx] = computeRandomClear(rnd, width, height);
372 const ClearPacket& packet = packets[threadNdx][packetNdx]; local
373 for (int clearNdx = 0; clearNdx < DE_LENGTH_OF_ARRAY(packet.clears); clearNdx++)
376 packet.clears[clearNdx].x, packet.clears[clearNdx].y, 0
    [all...]

Completed in 1833 milliseconds

<<11121314151617181920>>