Home | History | Annotate | Download | only in aapt

Lines Matching refs:readSize

711         long readSize;
713 readSize = sizeof(tmpBuf);
714 if (readSize > length)
715 readSize = length;
717 count = fread(tmpBuf, 1, readSize, srcFp);
718 if ((long) count != readSize) { // error or unexpected EOF
719 ALOGD("fread %d bytes failed\n", (int) readSize);
731 length -= readSize;