Home | History | Annotate | Download | only in aapt

Lines Matching refs:readSize

708         long readSize;
710 readSize = sizeof(tmpBuf);
711 if (readSize > length)
712 readSize = length;
714 count = fread(tmpBuf, 1, readSize, srcFp);
715 if ((long) count != readSize) { // error or unexpected EOF
716 ALOGD("fread %d bytes failed\n", (int) readSize);
728 length -= readSize;