Home | History | Annotate | Download | only in srec

Lines Matching defs:mIn

39     private InputStream mIn;
136 mIn = in;
142 if (mIn == null) throw new IllegalStateException("not open");
146 int n = mIn.read(mBuf, mBufCount, Math.min(length * 2, mBuf.length - mBufCount));
152 int n = Math.min(mBufCount / 2, length);
176 if (mIn != null) {
177 InputStream in = mIn;
178 mIn = null;
185 return (mIn.available() + mBufCount) / 2;