Home
last modified time | relevance | path

Searched refs:readLen (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/src/android/graphics/
H A DFontFileUtilTest.java93 int readLen; in copyToFile() local
94 while ((readLen = is.read(buffer)) != -1) { in copyToFile()
95 os.write(buffer, 0, readLen); in copyToFile()
/aosp14/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp882 int readLen = amt < len ? amt : len; in compare_file() local
883 amt = read(fd, contents, readLen); in compare_file()
884 if (amt != readLen) { in compare_file()
889 for (int i=0; i<readLen; i++) { in compare_file()
/aosp14/frameworks/base/telephony/common/com/google/android/mms/pdu/
H A DPduParser.java1332 int readLen = pduDataStream.read(area, 0, length); in skipWapValue() local
1333 if (readLen < length) { //The actually read length is lower than the length in skipWapValue()
1336 return readLen; in skipWapValue()