Searched refs:bufpos (Results 1 - 3 of 3) sorted by relevance

/javamail/mail/src/main/java/com/sun/mail/imap/
H A DIMAPInputStream.java65 private int bufpos; // The current position within 'buf' field in class:IMAPInputStream
118 * data has already been read in, hence bufpos > bufcount.
177 bufpos = ba.getStart();
182 bufcount = bufpos + n;
191 if (bufpos >= bufcount) {
193 if (bufpos >= bufcount)
196 return buf[bufpos++] & 0xff;
216 int avail = bufcount - bufpos;
219 avail = bufcount - bufpos;
224 System.arraycopy(buf, bufpos,
[all...]
/javamail/mail/src/main/java/javax/mail/util/
H A DSharedFileInputStream.java88 protected long bufpos; field in class:SharedFileInputStream
238 this.bufpos = start;
254 bufpos += count;
260 bufpos += markpos;
265 bufpos += count;
277 if (bufpos - start + pos + len > datalen)
278 len = (int)(datalen - (bufpos - start + pos));
280 in.seek(bufpos + pos);
318 // XXX - seek, update bufpos - how?
416 return (int)((start + datalen) - (bufpos
[all...]
/javamail/
H A Dmail.sig1368 fld protected long bufpos

Completed in 10 milliseconds