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

  /external/chromium_org/net/quic/test_tools/
crypto_test_utils.h 110 // arguments. |message_tag| is passed to |ParseTag| and used as the tag of
121 static CryptoHandshakeMessage Message(const char* message_tag, ...);
127 static CryptoHandshakeMessage BuildMessage(const char* message_tag,
crypto_test_utils.cc 447 CryptoHandshakeMessage CryptoTestUtils::Message(const char* message_tag, ...) {
449 va_start(ap, message_tag);
451 CryptoHandshakeMessage message = BuildMessage(message_tag, ap);
457 CryptoHandshakeMessage CryptoTestUtils::BuildMessage(const char* message_tag,
460 msg.set_tag(ParseTag(message_tag));
  /external/chromium_org/net/quic/crypto/
crypto_framer.cc 207 QuicTag message_tag; local
208 reader.ReadUInt32(&message_tag);
209 message_.set_tag(message_tag);
crypto_server_test.cc 158 CryptoHandshakeMessage InchoateClientHello(const char* message_tag, ...) {
160 va_start(ap, message_tag);
163 CryptoTestUtils::BuildMessage(message_tag, ap);

Completed in 38 milliseconds