OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bytesIn
(Results
1 - 6
of
6
) sorted by null
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
HpackTest.java
33
private final Buffer
bytesIn
= new Buffer();
39
hpackReader = newReader(
bytesIn
);
55
bytesIn
.writeAll(bytesOut);
68
bytesIn
.writeByte(0x00); // Literal indexed
69
bytesIn
.writeByte(0x0a); // Literal name (len = 10)
70
bytesIn
.writeUtf8("custom-key");
72
bytesIn
.writeByte(0x0d); // Literal value (len = 13)
73
bytesIn
.writeUtf8("custom-header");
85
bytesIn
.writeByte(0x40); // Literal indexed
86
bytesIn
.writeByte(0x0a); // Literal name (len = 10
[
all
...]
/libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidGZIPStreamTest.java
54
ByteArrayInputStream
bytesIn
= new ByteArrayInputStream(zipData);
55
scanGZIP(
bytesIn
);
94
static void scanGZIP(ByteArrayInputStream
bytesIn
) throws IOException {
95
GZIPInputStream in = new GZIPInputStream(
bytesIn
);
OldAndroidZipStreamTest.java
53
ByteArrayInputStream
bytesIn
= new ByteArrayInputStream(zipData);
54
scanZip(
bytesIn
);
61
bytesIn
= new ByteArrayInputStream(zipData);
62
scanZip(
bytesIn
);
138
private static void scanZip(ByteArrayInputStream
bytesIn
) throws IOException {
139
ZipInputStream in = new ZipInputStream(
bytesIn
);
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/
HpackDecodeTestBase.java
53
private final Buffer
bytesIn
= new Buffer();
54
private final Hpack.Reader hpackReader = new Hpack.Reader(4096,
bytesIn
);
72
bytesIn
.write(caze.getWire());
/libcore/luni/src/test/java/libcore/java/io/
OldOutputStreamWriterTest.java
306
ByteArrayInputStream
bytesIn
= new ByteArrayInputStream(bytesOut.toByteArray());
307
InputStreamReader charsIn = new InputStreamReader(
bytesIn
, charset);
314
bytesIn
= new ByteArrayInputStream(bytesOut.toByteArray());
315
charsIn = new InputStreamReader(
bytesIn
, charset);
/external/bzip2/
bzip2recover.c
67
MaybeUInt64
bytesIn
= 0;
Completed in 219 milliseconds