Searched refs:readLen (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/cmds/rawbu/ |
D | backup.cpp | 200 int readLen = fread(copyBuffer, 1, amt, src); in copy_file() local 201 if (readLen <= 0) { in copy_file() 211 int writeLen = fwrite(copyBuffer, 1, readLen, dest); in copy_file() 212 if (writeLen != readLen) { in copy_file() 215 writeLen, readLen, destName, strerror(errno)); in copy_file() 218 writeLen, readLen, strerror(errno)); in copy_file() 222 size -= readLen; in copy_file()
|
/frameworks/base/libs/utils/ |
D | BackupHelpers.cpp | 879 int readLen = amt < len ? amt : len; in compare_file() local 880 amt = read(fd, contents, readLen); in compare_file() 881 if (amt != readLen) { in compare_file() 886 for (int i=0; i<readLen; i++) { in compare_file()
|
/frameworks/base/core/java/com/google/android/mms/pdu/ |
D | PduParser.java | 1222 int readLen = pduDataStream.read(area, 0, length); in skipWapValue() local 1223 if (readLen < length) { //The actually read length is lower than the length in skipWapValue() 1226 return readLen; in skipWapValue()
|