HomeSort by relevance Sort by last modified time
    Searched full:serialized_packet (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/net/quic/
quic_connection.cc 1022 SerializedPacket serialized_packet = local
1524 SerializedPacket serialized_packet = local
    [all...]
quic_packet_creator_test.cc 201 SerializedPacket serialized_packet = creator_.SerializePacket(); local
202 ASSERT_TRUE(serialized_packet.packet);
203 delete serialized_packet.packet;
204 delete serialized_packet.retransmittable_frames;
quic_packet_generator.cc 209 SerializedPacket serialized_packet = packet_creator_->SerializePacket(); local
210 DCHECK(serialized_packet.packet);
211 delegate_->OnSerializedPacket(serialized_packet);
quic_connection_test.cc 499 SerializedPacket serialized_packet = creator_.SerializeAllFrames(frames); local
500 scoped_ptr<QuicPacket> packet(serialized_packet.packet);
503 serialized_packet.sequence_number, *packet));
505 return serialized_packet.entropy_hash;
    [all...]
  /external/chromium_org/remoting/host/
desktop_session_agent.cc 349 std::string serialized_packet; local
350 if (!packet->SerializeToString(&serialized_packet)) {
355 SendToNetwork(new ChromotingDesktopNetworkMsg_AudioPacket(serialized_packet));
chromoting_messages.h 188 // |serialized_packet| is a serialized AudioPacket.
190 std::string /* serialized_packet */ )
desktop_session_proxy.cc 429 void DesktopSessionProxy::OnAudioPacket(const std::string& serialized_packet) {
435 if (!packet->ParseFromString(serialized_packet)) {
desktop_session_proxy.h 137 void OnAudioPacket(const std::string& serialized_packet);

Completed in 7600 milliseconds