/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securegcm/ |
D | D2DDiffieHellmanKeyExchangeHandshake.java | 96 protocolVersionToUse = D2DConnectionContextV1.PROTOCOL_VERSION; in D2DDiffieHellmanKeyExchangeHandshake() 169 case D2DConnectionContextV0.PROTOCOL_VERSION: in makeResponderHelloWithPayload() 173 case D2DConnectionContextV1.PROTOCOL_VERSION: in makeResponderHelloWithPayload() 226 if (protocolVersion == D2DConnectionContextV0.PROTOCOL_VERSION) { in parseResponderHello() 227 protocolVersionToUse = D2DConnectionContextV0.PROTOCOL_VERSION; in parseResponderHello() 234 if (protocolVersionToUse == D2DConnectionContextV0.PROTOCOL_VERSION) { in parseResponderHello() 270 if (protocolVersion == D2DConnectionContextV0.PROTOCOL_VERSION) { in parseInitiatorHello() 271 protocolVersionToUse = D2DConnectionContextV0.PROTOCOL_VERSION; in parseInitiatorHello() 290 if (protocolVersionToUse == D2DConnectionContextV0.PROTOCOL_VERSION) { in toConnectionContext()
|
D | D2DConnectionContextV0.java | 29 public static final int PROTOCOL_VERSION = 0; field in D2DConnectionContextV0 42 super(PROTOCOL_VERSION); in D2DConnectionContextV0()
|
D | D2DConnectionContextV1.java | 30 public static final int PROTOCOL_VERSION = 1; field in D2DConnectionContextV1 51 super(PROTOCOL_VERSION); in D2DConnectionContextV1()
|
/external/ukey2/src/main/javatest/com/google/security/cryptauth/lib/securegcm/ |
D | D2DConnectionContextTest.java | 121 testPeerToPeerProtocol(D2DConnectionContextV0.PROTOCOL_VERSION); in testPeerToPeerProtocol_V0() 126 testPeerToPeerProtocol(D2DConnectionContextV1.PROTOCOL_VERSION); in testPeerToPeerProtocol_V1() 159 testResponderSendsFirst(D2DConnectionContextV0.PROTOCOL_VERSION); in testResponderSendsFirst_V0() 164 testResponderSendsFirst(D2DConnectionContextV1.PROTOCOL_VERSION); in testResponderSendsFirst_V1() 198 testAssymmetricFlows(D2DConnectionContextV0.PROTOCOL_VERSION); in testAssymmetricFlows_V0() 203 testAssymmetricFlows(D2DConnectionContextV1.PROTOCOL_VERSION); in testAssymmetricFlows_V1() 230 testErrorWhenResponderResendsMessage(D2DConnectionContextV0.PROTOCOL_VERSION); in testErrorWhenResponderResendsMessage_V0() 235 testErrorWhenResponderResendsMessage(D2DConnectionContextV1.PROTOCOL_VERSION); in testErrorWhenResponderResendsMessage_V1() 259 testErrorWhenResponderEchoesInitiatorMessage(D2DConnectionContextV0.PROTOCOL_VERSION); in testErrorWhenResponderEchoesInitiatorMessage_V0() 264 testErrorWhenResponderEchoesInitiatorMessage(D2DConnectionContextV1.PROTOCOL_VERSION); in testErrorWhenResponderEchoesInitiatorMessage_V1() [all …]
|
D | D2DDiffieHellmanKeyExchangeHandshakeTest.java | 388 assertEquals(D2DConnectionContextV0.PROTOCOL_VERSION, initiatorCtx.getProtocolVersion()); in testHandshakeWithInitiatorV1AndResponderV0() 414 assertEquals(D2DConnectionContextV0.PROTOCOL_VERSION, responderCtx.getProtocolVersion()); in testHandshakeWithInitiatorV0AndResponderV1() 423 assertEquals(D2DConnectionContextV1.PROTOCOL_VERSION, initiatorCtx.getProtocolVersion()); in checkInitializedConnectionContexts() 424 assertEquals(D2DConnectionContextV1.PROTOCOL_VERSION, responderCtx.getProtocolVersion()); in checkInitializedConnectionContexts()
|
/external/rust/crates/quiche/src/recovery/ |
D | reno.rs | 140 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in reno_init() 151 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in reno_send() 165 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in reno_slow_start() 211 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in reno_congestion_event() 228 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in reno_congestion_avoidance()
|
D | cubic.rs | 296 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in cubic_init() 307 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in cubic_send() 319 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in cubic_slow_start() 364 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in cubic_congestion_event() 380 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in cubic_congestion_avoidance() 416 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in cubic_collapse_cwnd_and_restart() 455 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in cubic_hystart_limited_slow_start()
|
D | mod.rs | 990 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in collapse_cwnd() 1002 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in loss_on_pto() 1228 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in loss_on_timer() 1381 let mut cfg = crate::Config::new(crate::PROTOCOL_VERSION).unwrap(); in loss_on_reordering()
|
/external/apache-http/src/org/apache/http/params/ |
D | HttpProtocolParams.java | 133 (CoreProtocolPNames.PROTOCOL_VERSION); in getVersion() 150 params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, version); in setVersion()
|
D | CoreProtocolPNames.java | 57 public static final String PROTOCOL_VERSION = "http.protocol.version"; field
|
/external/deqp/execserver/ |
D | xsProtocol.hpp | 37 PROTOCOL_VERSION = 18, enumerator 109 HelloMessage (void) : Message(MESSAGETYPE_HELLO), version(PROTOCOL_VERSION) {} in HelloMessage()
|
D | xsExecutionServer.cpp | 268 if (msg.version != PROTOCOL_VERSION) in processMessage()
|
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/ |
D | WaltDevice.java | 35 public static final String PROTOCOL_VERSION = "6"; field in WaltDevice 219 if (!PROTOCOL_VERSION.equals(s)) { in checkVersion() 222 s, PROTOCOL_VERSION)); in checkVersion() local
|
D | AboutFragment.java | 53 text += "WALT protocol version: " + WaltDevice.PROTOCOL_VERSION + "\n"; in onResume()
|
/external/rust/crates/criterion/patches/ |
D | cargo_pkg_version.patch | 14 hello_buf[i..i + 2].clone_from_slice(&PROTOCOL_VERSION.to_be_bytes());
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | DebugEventListener.java | 44 public static final String PROTOCOL_VERSION = "2"; field
|
/external/mtpd/ |
D | pptp.c | 68 #define PROTOCOL_VERSION htons(0x0100) macro 230 outgoing.sccrq.protocol_version = PROTOCOL_VERSION; in pptp_connect() 448 if (incoming.sccrp.protocol_version == PROTOCOL_VERSION && in pptp_process()
|
D | l2tp.c | 73 #define PROTOCOL_VERSION htons(2) macro 333 add_attribute_u16(PROTOCOL_VERSION, htons(0x0100)); in l2tp_connect()
|
/external/rust/crates/quiche/src/ |
D | lib.rs | 275 pub const PROTOCOL_VERSION: u32 = PROTOCOL_VERSION_DRAFT29; constant 4471 let mut config = Config::new(crate::PROTOCOL_VERSION)?; in default() 4507 let mut config = Config::new(crate::PROTOCOL_VERSION)?; in with_client_config() 4530 let mut config = Config::new(crate::PROTOCOL_VERSION)?; in with_server_config() 4858 assert_eq!(pipe.client.version, PROTOCOL_VERSION); in version_negotiation() 4859 assert_eq!(pipe.server.version, PROTOCOL_VERSION); in version_negotiation() 4866 let mut config = Config::new(PROTOCOL_VERSION).unwrap(); in verify_custom_root() 4996 let mut config = Config::new(PROTOCOL_VERSION).unwrap(); in handshake_alpn_mismatch() 5014 let mut config = Config::new(PROTOCOL_VERSION).unwrap(); in limit_handshake_data() 5063 let mut config = Config::new(crate::PROTOCOL_VERSION).unwrap(); in stream_send_on_32bit_arch() [all …]
|
/external/rust/crates/criterion/src/ |
D | connection.rs | 59 const PROTOCOL_VERSION: u16 = 1; constant 91 hello_buf[i..i + 2].clone_from_slice(&PROTOCOL_VERSION.to_be_bytes()); in new()
|
/external/rust/crates/quiche/examples/ |
D | client.rs | 84 let mut config = quiche::Config::new(quiche::PROTOCOL_VERSION).unwrap(); in main()
|
D | http3-client.rs | 82 let mut config = quiche::Config::new(quiche::PROTOCOL_VERSION).unwrap(); in main()
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
D | debug.rb | 377 PROTOCOL_VERSION = '2' constant
|
D | profile.rb | 199 PROTOCOL_VERSION = 2 constant in ANTLR3.Profile.Profiler
|
/external/antlr/runtime/Ruby/lib/antlr3/debug/ |
D | socket.rb | 53 write( 'ANTLR %s', PROTOCOL_VERSION )
|