HomeSort by relevance Sort by last modified time
    Searched defs:Decompressor (Results 1 - 8 of 8) sorted by null

  /external/grpc-grpc-java/core/src/main/java/io/grpc/
Decompressor.java 23 * Represents a message decompressor.
26 public interface Decompressor {
  /external/brotli/python/
brotli.py 22 # The Decompressor object.
23 Decompressor = _brotli.Decompressor
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
Decompressor.h 1 //===-- Decompressor.h ------------------------------------------*- C++ -*-===//
20 /// Decompressor helps to handle decompression of compressed sections.
21 class Decompressor {
23 /// Create decompressor object.
28 static Expected<Decompressor> create(StringRef Name, StringRef Data,
55 Decompressor(StringRef Data);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
Decompressor.cpp 1 //===-- Decompressor.cpp --------------------------------------------------===//
10 #include "llvm/Object/Decompressor.h"
21 Expected<Decompressor> Decompressor::create(StringRef Name, StringRef Data,
26 Decompressor D(Data);
34 Decompressor::Decompressor(StringRef Data)
37 Error Decompressor::consumeCompressedGnuHeader() {
52 Error Decompressor::consumeCompressedZLibHeader(bool Is64Bit,
76 bool Decompressor::isGnuStyle(StringRef Name)
    [all...]
  /build/soong/third_party/zip/
register.go 22 // A Decompressor returns a new decompressing reader, reading from r.
24 // The Decompressor itself must be safe to invoke from multiple goroutines
27 type Decompressor func(r io.Reader) io.ReadCloser
106 mu sync.RWMutex // guards compressor and decompressor maps
113 decompressors = map[uint16]Decompressor{
121 func RegisterDecompressor(method uint16, dcomp Decompressor) {
126 panic("decompressor already registered")
149 func decompressor(method uint16) Decompressor { func
  /external/syzkaller/vendor/google.golang.org/grpc/
rpc_util.go 105 // Decompressor defines the interface gRPC uses to decompress a message.
108 type Decompressor interface {
111 // Type returns the compression algorithm the Decompressor uses.
119 // NewGZIPDecompressor creates a Decompressor based on GZIP.
122 func NewGZIPDecompressor() Decompressor {
566 return status.Newf(codes.Unimplemented, "grpc: Decompressor is not installed for grpc-encoding %q", recvCompress)
576 // TODO(dfawley): wrap the old compressor/decompressor using the new API?
577 func recv(p *parser, c baseCodec, s *transport.Stream, dc Decompressor, m interface{}, maxReceiveMessageSize int, inPayload *stats.InPayload, compressor encoding.Compressor) error {
591 // To match legacy behavior, if the decompressor is set by WithDecompressor or RPCDecompressor,
592 // use this decompressor as the default
    [all...]
  /external/python/cpython3/Modules/
_lzmamodule.c 58 } Decompressor;
466 class _lzma.LZMADecompressor "Decompressor *" "&Decompressor_type"
878 decompress_buf(Decompressor *d, Py_ssize_t max_length)
934 decompress(Decompressor *d, uint8_t *data, size_t len, Py_ssize_t max_length)
    [all...]
  /external/grpc-grpc-java/core/
grpc-core-1.14.0.jar 

Completed in 376 milliseconds