OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:useTls
(Results
1 - 7
of
7
) sorted by null
/external/grpc-grpc/tools/http2_interop/
http2interop_test.go
19
useTls
= flag.Bool("use_tls", true, "Should TLS tests be run")
35
UseTLS
: *
useTls
,
51
// It would be odd if useTestCa was true, but not
useTls
. meh
/external/grpc-grpc-java/android-interop-testing/app/src/androidTest/java/io/grpc/android/integrationtest/
InteropInstrumentationTest.java
46
private boolean
useTls
;
62
useTls
=
70
if (
useTls
) {
129
TesterOkHttpChannelBuilder.build(host, port, serverHostOverride,
useTls
, testCa),
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
TestServiceServer.java
40
if (server.
useTls
) {
66
private boolean
useTls
= true;
96
useTls
= Boolean.parseBoolean(value);
112
useTls
= false;
120
+ "\n --use_tls=true|false Whether to use TLS. Default " + s.
useTls
141
if (
useTls
) {
StressTestClient.java
103
private boolean
useTls
= false;
152
useTls
= Boolean.parseBoolean(value);
191
+ "\n --use_tls=true|false Whether to use TLS. Default: " + c.
useTls
352
.negotiationType(
useTls
? NegotiationType.TLS : NegotiationType.PLAINTEXT)
627
boolean
useTls
() {
628
return
useTls
;
TestServiceClient.java
80
private boolean
useTls
= true;
122
useTls
= Boolean.parseBoolean(value);
152
useTls
= false;
166
+ "\n --use_tls=true|false Whether to use TLS. Default " + c.
useTls
373
.negotiationType(
useTls
? NegotiationType.TLS : NegotiationType.PLAINTEXT)
389
if (
useTls
) {
/external/grpc-grpc/src/android/test/interop/app/src/androidTest/java/io/grpc/interop/cpp/
InteropTest.java
36
private boolean
useTls
;
44
useTls
=
47
if (
useTls
) {
66
assertTrue(InteropActivity.doEmpty(host, port,
useTls
));
71
assertTrue(InteropActivity.doLargeUnary(host, port,
useTls
));
76
assertTrue(InteropActivity.doEmptyStream(host, port,
useTls
));
81
assertTrue(InteropActivity.doRequestStreaming(host, port,
useTls
));
86
assertTrue(InteropActivity.doResponseStreaming(host, port,
useTls
));
91
assertTrue(InteropActivity.doPingPong(host, port,
useTls
));
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/
StressTestClientTest.java
97
assertTrue(client.
useTls
());
Completed in 137 milliseconds