Home
last modified time | relevance | path

Searched refs:totalBytesWritten (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/compression/
DExhaustiveTest.java109 int totalBytesWritten = 0; in myMultipassTest() local
126 totalBytesWritten, bytesWritten); in myMultipassTest()
132 totalBytesWritten += bytesWritten; in myMultipassTest()
143 logln("MP: " + len + " chars ===> " + totalBytesWritten + " bytes."); in myMultipassTest()
151 totalBytesDecompressed, totalBytesWritten, in myMultipassTest()
167 } while (totalBytesDecompressed < totalBytesWritten); in myMultipassTest()
169 if (totalBytesDecompressed != totalBytesWritten) { in myMultipassTest()
173 + totalBytesWritten + ")"); in myMultipassTest()
175 logln("MP: " + totalBytesWritten in myMultipassTest()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/compression/
DExhaustiveTest.java113 int totalBytesWritten = 0; in myMultipassTest() local
130 totalBytesWritten, bytesWritten); in myMultipassTest()
136 totalBytesWritten += bytesWritten; in myMultipassTest()
147 logln("MP: " + len + " chars ===> " + totalBytesWritten + " bytes."); in myMultipassTest()
155 totalBytesDecompressed, totalBytesWritten, in myMultipassTest()
171 } while (totalBytesDecompressed < totalBytesWritten); in myMultipassTest()
173 if (totalBytesDecompressed != totalBytesWritten) { in myMultipassTest()
177 + totalBytesWritten + ")"); in myMultipassTest()
179 logln("MP: " + totalBytesWritten in myMultipassTest()
/external/protobuf/java/src/main/java/com/google/protobuf/
DCodedOutputStream.java56 private int totalBytesWritten = 0; field in CodedOutputStream
1027 return totalBytesWritten; in getTotalBytesWritten()
1037 ++totalBytesWritten; in writeRawByte()
1082 totalBytesWritten += length; in writeRawBytesInternal()
1090 totalBytesWritten += bytesWritten; in writeRawBytesInternal()
1102 totalBytesWritten += limit; in writeRawBytesInternal()
1106 totalBytesWritten += length; in writeRawBytesInternal()
1117 totalBytesWritten += length; in writeRawBytes()
1126 totalBytesWritten += bytesWritten; in writeRawBytes()
1140 totalBytesWritten += length; in writeRawBytes()
[all …]
/external/okhttp/okio/okio/src/main/java/okio/
DRealBufferedSource.java147 long totalBytesWritten = 0; in readAll() local
151 totalBytesWritten += emitByteCount; in readAll()
156 totalBytesWritten += buffer.size(); in readAll()
159 return totalBytesWritten; in readAll()
/external/skia/experimental/Networking/
DSkSockets.cpp175 int totalBytesWritten = 0; in writePacket() local
238 totalBytesWritten += bytesWrittenInTransfer; in writePacket()
240 return totalBytesWritten; in writePacket()