Home
last modified time | relevance | path

Searched refs:CONTENT_ENCODING_KEY (Results 1 – 5 of 5) sorted by relevance

/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DAbstractClientStreamTest.java211 headers.put(GrpcUtil.CONTENT_ENCODING_KEY, "gzip"); in inboundHeadersReceived_acceptsGzipContentEncoding()
226 headers.put(GrpcUtil.CONTENT_ENCODING_KEY, "gZIp"); in inboundHeadersReceived_contentEncodingIsCaseInsensitive()
240 headers.put(GrpcUtil.CONTENT_ENCODING_KEY, "not-a-real-compression-method"); in inboundHeadersReceived_failsOnUnrecognizedContentEncoding()
261 headers.put(GrpcUtil.CONTENT_ENCODING_KEY, "gzip"); in inboundHeadersReceived_disallowsContentAndMessageEncoding()
DClientCallImplTest.java486 m.put(GrpcUtil.CONTENT_ENCODING_KEY, "gzip"); in prepareHeaders_removeReservedHeaders()
494 assertNull(m.get(GrpcUtil.CONTENT_ENCODING_KEY)); in prepareHeaders_removeReservedHeaders()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DAbstractClientStream.java21 import static io.grpc.internal.GrpcUtil.CONTENT_ENCODING_KEY;
301 String streamEncoding = headers.get(CONTENT_ENCODING_KEY); in inboundHeadersReceived()
DClientCallImpl.java26 import static io.grpc.internal.GrpcUtil.CONTENT_ENCODING_KEY;
172 headers.discardAll(CONTENT_ENCODING_KEY); in prepareHeaders()
DGrpcUtil.java101 public static final Metadata.Key<String> CONTENT_ENCODING_KEY = field in GrpcUtil