HomeSort by relevance Sort by last modified time
    Searched refs:QuicTag (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/net/quic/crypto/
crypto_protocol.h 23 static_cast<QuicTag>((d << 24) + (c << 16) + (b << 8) + a)
29 const QuicTag kCHLO = TAG('C', 'H', 'L', 'O'); // Client hello
30 const QuicTag kSHLO = TAG('S', 'H', 'L', 'O'); // Server hello
31 const QuicTag kSCFG = TAG('S', 'C', 'F', 'G'); // Server config
32 const QuicTag kREJ = TAG('R', 'E', 'J', '\0'); // Reject
33 const QuicTag kCETV = TAG('C', 'E', 'T', 'V'); // Client encrypted tag-value
35 const QuicTag kPRST = TAG('P', 'R', 'S', 'T'); // Public reset
36 const QuicTag kSCUP = TAG('S', 'C', 'U', 'P'); // Server config update.
39 const QuicTag kP256 = TAG('P', '2', '5', '6'); // ECDH, Curve P-256
40 const QuicTag kC255 = TAG('C', '2', '5', '5'); // ECDH, Curve2551
    [all...]
crypto_handshake_message.h 40 template<class T> void SetValue(QuicTag tag, const T& v) {
47 template<class T> void SetVector(QuicTag tag, const std::vector<T>& v) {
57 QuicTag tag() const { return tag_; }
59 void set_tag(QuicTag tag) { tag_ = tag; }
65 void SetTaglist(QuicTag tag, ...);
67 void SetStringPiece(QuicTag tag, base::StringPiece value);
70 void Erase(QuicTag tag);
77 QuicErrorCode GetTaglist(QuicTag tag, const QuicTag** out_tags,
80 bool GetStringPiece(QuicTag tag, base::StringPiece* out) const
    [all...]
quic_decrypter.cc 15 QuicDecrypter* QuicDecrypter::Create(QuicTag algorithm) {
quic_encrypter.cc 15 QuicEncrypter* QuicEncrypter::Create(QuicTag algorithm) {
crypto_handshake_message.cc 65 void CryptoHandshakeMessage::SetTaglist(QuicTag tag, ...) {
66 // Warning, if sizeof(QuicTag) > sizeof(int) then this function will break
68 COMPILE_ASSERT(sizeof(QuicTag) <= sizeof(int),
71 vector<QuicTag> tags;
76 QuicTag list_item = va_arg(ap, QuicTag);
91 void CryptoHandshakeMessage::SetStringPiece(QuicTag tag, StringPiece value) {
95 void CryptoHandshakeMessage::Erase(QuicTag tag) {
99 QuicErrorCode CryptoHandshakeMessage::GetTaglist(QuicTag tag,
100 const QuicTag** out_tags
    [all...]
key_exchange.h 42 virtual QuicTag tag() const = 0;
crypto_server_config_protobuf.h 29 QuicTag tag() const {
32 void set_tag(QuicTag tag) {
43 QuicTag tag_;
curve25519_key_exchange.h 38 virtual QuicTag tag() const OVERRIDE;
quic_decrypter.h 17 static QuicDecrypter* Create(QuicTag algorithm);
crypto_handshake.h 99 QuicTag key_exchange;
100 QuicTag aead;
crypto_utils.h 60 QuicTag aead,
p256_key_exchange.h 45 virtual QuicTag tag() const OVERRIDE;
quic_encrypter.h 17 static QuicEncrypter* Create(QuicTag algorithm);
crypto_framer.h 107 std::vector<std::pair<QuicTag, size_t> > tags_and_lengths_;
curve25519_key_exchange.cc 85 QuicTag Curve25519KeyExchange::tag() const { return kC255; }
quic_crypto_client_config_test.cc 77 QuicTag cver;
100 QuicTag pdmd;
115 QuicTag pdmd;
141 QuicTag cver;
crypto_framer.cc 205 QuicTag message_tag;
231 QuicTag tag;
257 for (vector<pair<QuicTag, size_t> >::const_iterator
  /external/chromium_org/net/quic/
quic_config.h 22 // Describes whether or not a given QuicTag is required or optional in the
43 QuicConfigValue(QuicTag tag, QuicConfigPresence presence);
57 const QuicTag tag_;
63 QuicNegotiableValue(QuicTag tag, QuicConfigPresence presence);
77 QuicNegotiableUint32(QuicTag name, QuicConfigPresence presence);
111 QuicNegotiableTag(QuicTag name, QuicConfigPresence presence);
117 void set(const QuicTagVector& possible_values, QuicTag default_value);
121 QuicTag GetTag() const;
141 const QuicTag** out,
145 QuicTag negotiated_tag_
    [all...]
quic_utils.h 40 const QuicTag* their_tags,
43 QuicTag* out_result,
69 static std::string TagToString(QuicTag tag);
quic_config.cc 24 QuicTag tag,
50 QuicConfigValue::QuicConfigValue(QuicTag tag,
57 QuicNegotiableValue::QuicNegotiableValue(QuicTag tag,
64 QuicNegotiableUint32::QuicNegotiableUint32(QuicTag tag,
121 QuicNegotiableTag::QuicNegotiableTag(QuicTag tag, QuicConfigPresence presence)
130 QuicTag default_value) {
136 QuicTag QuicNegotiableTag::GetTag() const {
155 const QuicTag** out,
185 const QuicTag* received_tags;
201 QuicTag negotiated_tag
    [all...]
quic_utils.cc 64 const QuicTag* their_tags,
67 QuicTag* out_result,
73 const QuicTag* our_tags = &our_tags_vector[0];
76 const QuicTag* priority_tags;
77 const QuicTag* inferior_tags;
256 string QuicUtils::TagToString(QuicTag tag) {
259 const QuicTag orig_tag = tag;
quic_protocol_test.cc 28 QuicTag tag = MakeQuicTag('A', 'B', 'C', 'D');
118 QuicTag tag = QuicVersionToQuicTag(version);
133 EXPECT_CALL(log, Log(INFO, _, "Unsupported QuicTag version: FAKE")).Times(1);
  /external/chromium_org/net/quic/test_tools/
quic_config_peer.h 22 QuicTag loss_detection);
quic_config_peer.cc 20 QuicTag loss_detection) {
crypto_test_utils.h 120 QuicTag tag);
147 // ParseTag returns a QuicTag from parsing |tagstr|. |tagstr| may either be
150 static QuicTag ParseTag(const char* tagstr);

Completed in 96 milliseconds

1 2