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

  /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
reader.go 28 decompressors map[uint16]Decompressor
118 // RegisterDecompressor registers or overrides a custom decompressor for a
119 // specific method ID. If a decompressor for a given method is not found,
120 // Reader will default to looking up the decompressor at the package level.
121 func (z *Reader) RegisterDecompressor(method uint16, dcomp Decompressor) {
123 z.decompressors = make(map[uint16]Decompressor)
128 func (z *Reader) decompressor(method uint16) Decompressor { func
131 dcomp = decompressor(method)
163 dcomp := f.zip.decompressor(f.Method
    [all...]
  /prebuilts/go/darwin-x86/src/archive/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
reader.go 28 decompressors map[uint16]Decompressor
118 // RegisterDecompressor registers or overrides a custom decompressor for a
119 // specific method ID. If a decompressor for a given method is not found,
120 // Reader will default to looking up the decompressor at the package level.
121 func (z *Reader) RegisterDecompressor(method uint16, dcomp Decompressor) {
123 z.decompressors = make(map[uint16]Decompressor)
128 func (z *Reader) decompressor(method uint16) Decompressor { func
131 dcomp = decompressor(method)
163 dcomp := f.zip.decompressor(f.Method
    [all...]
  /prebuilts/go/linux-x86/src/archive/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
reader.go 28 decompressors map[uint16]Decompressor
118 // RegisterDecompressor registers or overrides a custom decompressor for a
119 // specific method ID. If a decompressor for a given method is not found,
120 // Reader will default to looking up the decompressor at the package level.
121 func (z *Reader) RegisterDecompressor(method uint16, dcomp Decompressor) {
123 z.decompressors = make(map[uint16]Decompressor)
128 func (z *Reader) decompressor(method uint16) Decompressor { func
131 dcomp = decompressor(method)
163 dcomp := f.zip.decompressor(f.Method
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceOutputParser.java 109 Inflater decompressor = new Inflater(); local
110 decompressor.setInput(mAtraceOutput, mSystraceIndex, mAtraceLength - mSystraceIndex);
116 while ((n = decompressor.inflate(buf)) > 0) {
122 decompressor.end();
  /prebuilts/go/darwin-x86/src/syscall/
unzip_nacl.go 20 type decompressor struct { type
33 func (f *decompressor) nextBlock() {
67 func (f *decompressor) readHuffman() {
167 func (f *decompressor) huffmanBlock(hl, hd *huffmanDecoder) {
269 func (f *decompressor) dataBlock() {
297 func (f *decompressor) moreBits() {
309 func (f *decompressor) huffSym(h *huffmanDecoder) int {
500 var d decompressor
  /prebuilts/go/linux-x86/src/syscall/
unzip_nacl.go 20 type decompressor struct { type
33 func (f *decompressor) nextBlock() {
67 func (f *decompressor) readHuffman() {
167 func (f *decompressor) huffmanBlock(hl, hd *huffmanDecoder) {
269 func (f *decompressor) dataBlock() {
297 func (f *decompressor) moreBits() {
309 func (f *decompressor) huffSym(h *huffmanDecoder) int {
500 var d decompressor
  /prebuilts/go/darwin-x86/src/compress/flate/
inflate.go 142 // Empty tree. The decompressor.huffSym function will fail later if the tree
266 type decompressor struct { type
290 step func(*decompressor)
300 func (f *decompressor) nextBlock() {
333 func (f *decompressor) Read(b []byte) (int, error) {
353 func (f *decompressor) Close() error {
365 func (f *decompressor) readHuffman() error {
477 func (f *decompressor) huffmanBlock() {
505 f.step = (*decompressor).huffmanBlock
612 f.step = (*decompressor).huffmanBlock // We need to continue this wor
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
inflate.go 142 // Empty tree. The decompressor.huffSym function will fail later if the tree
266 type decompressor struct { type
290 step func(*decompressor)
300 func (f *decompressor) nextBlock() {
333 func (f *decompressor) Read(b []byte) (int, error) {
353 func (f *decompressor) Close() error {
365 func (f *decompressor) readHuffman() error {
477 func (f *decompressor) huffmanBlock() {
505 f.step = (*decompressor).huffmanBlock
612 f.step = (*decompressor).huffmanBlock // We need to continue this wor
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.1/
grpc-core-1.0.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/
grpc-core-1.0.3.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/0.13.2/
grpc-core-0.13.2.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.0.CR3/
netty-codec-http2-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.3.Final/
netty-codec-http2-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/
netty-codec-http2-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-all/0.13.2/
grpc-all-0.13.2.jar 
  /external/python/cpython2/Mac/Modules/qt/
_Qtmodule.c 10715 DecompressorComponent decompressor; local
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/
netty-codec-http-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.3.Final/
netty-codec-http-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/
netty-codec-http-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/
netty-codec-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/
netty-codec-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/
netty-codec-4.1.6.Final.jar 

Completed in 588 milliseconds