Home
last modified time | relevance | path

Searched refs:TsiFrameProtector (Results 1 – 10 of 10) sorted by relevance

/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
DTsiTest.java25 import io.grpc.alts.internal.TsiFrameProtector.Consumer;
119 TsiFrameProtector sender, in sendMessage()
120 TsiFrameProtector receiver, in sendMessage()
163 TsiFrameProtector clientProtector = handshakers.getClient().createFrameProtector(alloc); in pingPongTest()
164 TsiFrameProtector serverProtector = handshakers.getServer().createFrameProtector(alloc); in pingPongTest()
183 TsiFrameProtector clientProtector = in pingPongExactFrameSizeTest()
185 TsiFrameProtector serverProtector = in pingPongExactFrameSizeTest()
200 TsiFrameProtector clientProtector = handshakers.getClient().createFrameProtector(alloc); in pingPongSmallBufferTest()
201 TsiFrameProtector serverProtector = handshakers.getServer().createFrameProtector(alloc); in pingPongSmallBufferTest()
217 TsiFrameProtector clientProtector = in pingPongSmallFrameTest()
[all …]
DAltsProtocolNegotiatorTest.java32 import io.grpc.alts.internal.TsiFrameProtector.Consumer;
206 TsiFrameProtector serverProtector = serverHandshaker.createFrameProtector(channel.alloc()); in protectShouldRoundtrip()
252 TsiFrameProtector serverProtector = in unprotectLargeIncomingFrame()
463 public TsiFrameProtector createFrameProtector(ByteBufAllocator alloc) { in createFrameProtector()
471 public TsiFrameProtector createFrameProtector(int maxFrameSize, ByteBufAllocator alloc) { in createFrameProtector()
479 private static class InterceptingProtector implements TsiFrameProtector {
480 private final TsiFrameProtector delegate;
483 InterceptingProtector(TsiFrameProtector delegate) { in InterceptingProtector()
DFakeTsiHandshaker.java216 public TsiFrameProtector createFrameProtector(int maxFrameSize, ByteBufAllocator alloc) { in createFrameProtector()
225 public TsiFrameProtector createFrameProtector(ByteBufAllocator alloc) { in createFrameProtector()
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
DTsiHandshaker.java99 TsiFrameProtector createFrameProtector(int maxFrameSize, ByteBufAllocator alloc); in createFrameProtector()
108 TsiFrameProtector createFrameProtector(ByteBufAllocator alloc); in createFrameProtector()
DTsiHandshakeHandler.java61 private final TsiFrameProtector protector;
66 TsiFrameProtector protector, TsiPeer peer, @Nullable Object peerObject) { in TsiHandshakeCompletionEvent()
106 TsiFrameProtector protector() { in protector()
DTsiFrameHandler.java23 import io.grpc.alts.internal.TsiFrameProtector.Consumer;
44 private TsiFrameProtector protector;
70 void setProtector(TsiFrameProtector protector) { in setProtector()
DNettyTsiHandshaker.java137 TsiFrameProtector createFrameProtector(int maxFrameSize, ByteBufAllocator alloc) { in createFrameProtector()
148 TsiFrameProtector createFrameProtector(ByteBufAllocator alloc) { in createFrameProtector()
DAltsTsiHandshaker.java175 public TsiFrameProtector createFrameProtector(int maxFrameSize, ByteBufAllocator alloc) { in createFrameProtector()
192 public TsiFrameProtector createFrameProtector(ByteBufAllocator alloc) { in createFrameProtector()
DTsiFrameProtector.java29 public interface TsiFrameProtector { interface
DAltsTsiFrameProtector.java31 public final class AltsTsiFrameProtector implements TsiFrameProtector {