Searched refs:QuicTag (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium_org/net/quic/crypto/
H A Dcrypto_protocol.h23 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 kC25
[all...]
H A Dcrypto_handshake_message.h40 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 ta
[all...]
H A Dquic_decrypter.cc15 QuicDecrypter* QuicDecrypter::Create(QuicTag algorithm) {
H A Dquic_encrypter.cc15 QuicEncrypter* QuicEncrypter::Create(QuicTag algorithm) {
H A Dcrypto_handshake_message.cc65 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_tag
[all...]
H A Dkey_exchange.h42 virtual QuicTag tag() const = 0;
H A Dcrypto_server_config_protobuf.h29 QuicTag tag() const {
32 void set_tag(QuicTag tag) {
43 QuicTag tag_;
H A Dcurve25519_key_exchange.h38 virtual QuicTag tag() const OVERRIDE;
H A Dcrypto_handshake.h99 QuicTag key_exchange;
100 QuicTag aead;
H A Dcrypto_utils.h60 QuicTag aead,
H A Dp256_key_exchange.h45 virtual QuicTag tag() const OVERRIDE;
H A Dquic_decrypter.h17 static QuicDecrypter* Create(QuicTag algorithm);
H A Dquic_encrypter.h17 static QuicEncrypter* Create(QuicTag algorithm);
H A Dcrypto_framer.h107 std::vector<std::pair<QuicTag, size_t> > tags_and_lengths_;
H A Dcurve25519_key_exchange.cc85 QuicTag Curve25519KeyExchange::tag() const { return kC255; }
H A Dquic_crypto_client_config_test.cc77 QuicTag cver;
100 QuicTag pdmd;
115 QuicTag pdmd;
141 QuicTag cver;
H A Dcrypto_framer.cc205 QuicTag message_tag;
231 QuicTag tag;
257 for (vector<pair<QuicTag, size_t> >::const_iterator
/external/chromium_org/net/quic/
H A Dquic_config.h22 // 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...]
H A Dquic_utils.h40 const QuicTag* their_tags,
43 QuicTag* out_result,
69 static std::string TagToString(QuicTag tag);
H A Dquic_config.cc24 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_ta
[all...]
H A Dquic_utils.cc64 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;
H A Dquic_protocol_test.cc28 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/
H A Dquic_config_peer.h22 QuicTag loss_detection);
H A Dquic_config_peer.cc20 QuicTag loss_detection) {
H A Dcrypto_test_utils.h120 QuicTag tag);
147 // ParseTag returns a QuicTag from parsing |tagstr|. |tagstr| may either be
150 static QuicTag ParseTag(const char* tagstr);

Completed in 136 milliseconds

12