Home
last modified time | relevance | path

Searched refs:writeDecimalLong (Results 1 – 7 of 7) sorted by relevance

/external/okhttp/okio/okio/src/main/java/okio/
DRealBufferedSink.java161 @Override public BufferedSink writeDecimalLong(long v) throws IOException { in writeDecimalLong() method in RealBufferedSink
163 buffer.writeDecimalLong(v); in writeDecimalLong()
DBufferedSink.java97 BufferedSink writeDecimalLong(long v) throws IOException; in writeDecimalLong() method
DBuffer.java436 Buffer buffer = new Buffer().writeDecimalLong(value).writeByte(b);
1031 @Override public Buffer writeDecimalLong(long v) {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DCache.java584 sink.writeDecimalLong(varyHeaders.size()); in writeTo()
595 sink.writeDecimalLong(responseHeaders.size()); in writeTo()
640 sink.writeDecimalLong(certificates.size()); in writeCertList()
DMultipartBuilder.java264 .writeDecimalLong(contentLength) in writeOrCountBytes()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DDiskLruCache.java386 writer.writeDecimalLong(appVersion).writeByte('\n'); in rebuildJournal()
387 writer.writeDecimalLong(valueCount).writeByte('\n'); in rebuildJournal()
981 writer.writeByte(' ').writeDecimalLong(length);
/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSinkTest.java298 sink.writeDecimalLong(value).writeUtf8("zzz").flush();