BufferedSource.java
3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package okio;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.Charset;
public abstract interface BufferedSource
extends Source
{
public abstract Buffer buffer();
public abstract boolean exhausted()
throws IOException;
public abstract long indexOf(byte paramByte)
throws IOException;
public abstract long indexOf(byte paramByte, long paramLong)
throws IOException;
public abstract long indexOf(ByteString paramByteString)
throws IOException;
public abstract long indexOf(ByteString paramByteString, long paramLong)
throws IOException;
public abstract long indexOfElement(ByteString paramByteString)
throws IOException;
public abstract long indexOfElement(ByteString paramByteString, long paramLong)
throws IOException;
public abstract InputStream inputStream();
public abstract int read(byte[] paramArrayOfByte)
throws IOException;
public abstract int read(byte[] paramArrayOfByte, int paramInt1, int paramInt2)
throws IOException;
public abstract long readAll(Sink paramSink)
throws IOException;
public abstract byte readByte()
throws IOException;
public abstract byte[] readByteArray()
throws IOException;
public abstract byte[] readByteArray(long paramLong)
throws IOException;
public abstract ByteString readByteString()
throws IOException;
public abstract ByteString readByteString(long paramLong)
throws IOException;
public abstract long readDecimalLong()
throws IOException;
public abstract void readFully(Buffer paramBuffer, long paramLong)
throws IOException;
public abstract void readFully(byte[] paramArrayOfByte)
throws IOException;
public abstract long readHexadecimalUnsignedLong()
throws IOException;
public abstract int readInt()
throws IOException;
public abstract int readIntLe()
throws IOException;
public abstract long readLong()
throws IOException;
public abstract long readLongLe()
throws IOException;
public abstract short readShort()
throws IOException;
public abstract short readShortLe()
throws IOException;
public abstract String readString(long paramLong, Charset paramCharset)
throws IOException;
public abstract String readString(Charset paramCharset)
throws IOException;
public abstract String readUtf8()
throws IOException;
public abstract String readUtf8(long paramLong)
throws IOException;
public abstract int readUtf8CodePoint()
throws IOException;
public abstract String readUtf8Line()
throws IOException;
public abstract String readUtf8LineStrict()
throws IOException;
public abstract boolean request(long paramLong)
throws IOException;
public abstract void require(long paramLong)
throws IOException;
public abstract void skip(long paramLong)
throws IOException;
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/okio/BufferedSource.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/