OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isInProgress
(Results
1 - 9
of
9
) sorted by null
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
NettyTsiHandshaker.java
106
boolean
isInProgress
() {
107
return internalHandshaker.
isInProgress
();
116
checkState(!internalHandshaker.
isInProgress
());
126
checkState(!internalHandshaker.
isInProgress
());
TsiHandshaker.java
37
* if (!tsiHandshaker.
isInProgress
()) break;
43
* if (!tsiHandshaker.
isInProgress
()) break;
75
boolean
isInProgress
();
AltsTsiHandshaker.java
101
Preconditions.checkState(!
isInProgress
(), "Handshake is not complete.");
117
Preconditions.checkState(!
isInProgress
(), "Handshake is not complete.");
162
public boolean
isInProgress
() {
176
Preconditions.checkState(!
isInProgress
(), "Handshake is not complete.");
TsiHandshakeHandler.java
145
if (handshaker.processBytesFromPeer(in) && handshaker.
isInProgress
()) {
150
if (!handshaker.
isInProgress
()) {
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
NettyTsiHandshakerTest.java
87
public void
isInProgress
() throws GeneralSecurityException {
88
assertTrue(clientHandshaker.
isInProgress
());
89
assertTrue(serverHandshaker.
isInProgress
());
93
assertFalse(clientHandshaker.
isInProgress
());
94
assertFalse(serverHandshaker.
isInProgress
());
160
if (!(clientHandshaker.
isInProgress
() || serverHandshaker.
isInProgress
())) {
FakeTsiHandshaker.java
197
public boolean
isInProgress
() {
217
Preconditions.checkState(!
isInProgress
(), "Handshake is not complete.");
TsiTest.java
88
while (clientHandshaker.
isInProgress
() || serverHandshaker.
isInProgress
()) {
90
if (handshaker.
isInProgress
()) {
96
if (handshaker.
isInProgress
()) {
AltsProtocolNegotiatorTest.java
374
assertFalse(serverHandshaker.
isInProgress
());
448
public boolean
isInProgress
() {
449
return delegate.
isInProgress
();
/development/samples/CrossCompatibility/src/com/example/android/touchexample/
VersionedGestureDetector.java
156
return !mDetector.
isInProgress
();
Completed in 236 milliseconds