Searched refs:FixedLengthInputStream (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Email/src/com/android/email/
H A DFixedLengthInputStream.java27 public class FixedLengthInputStream extends InputStream { class in inherits:InputStream
32 public FixedLengthInputStream(InputStream in, int length) { method in class:FixedLengthInputStream
78 return String.format("FixedLengthInputStream(in=%s, length=%d)", mIn.toString(), mLength);
/packages/apps/Email/src/com/android/email/mail/store/imap/
H A DImapMemoryLiteral.java19 import com.android.email.FixedLengthInputStream;
34 /* package */ ImapMemoryLiteral(FixedLengthInputStream in) throws IOException {
H A DImapTempFileLiteral.java19 import com.android.email.FixedLengthInputStream;
45 /* package */ ImapTempFileLiteral(FixedLengthInputStream stream) throws IOException {
H A DImapResponseParser.java21 import com.android.email.FixedLengthInputStream;
446 FixedLengthInputStream in = new FixedLengthInputStream(mIn, size);
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/
H A DImapTestUtils.java19 import com.android.email.FixedLengthInputStream;
98 * Convenience method to build an {@link FixedLengthInputStream} from a String, using
101 public static FixedLengthInputStream createFixedLengthInputStream(String content) {
102 // Add unnecessary part. FixedLengthInputStream should cut it.
104 return new FixedLengthInputStream(in, content.length());
/packages/apps/Email/src/com/android/email/service/
H A DImapTempFileLiteral.java19 import com.android.email.FixedLengthInputStream;
48 /* package */ ImapTempFileLiteral(FixedLengthInputStream stream) throws IOException {

Completed in 155 milliseconds