Searched defs:AccessException (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
H A DBitwiseInputStream.java41 public static class AccessException extends Exception { class in class:BitwiseInputStream
42 public AccessException(String s) { method in class:BitwiseInputStream.AccessException
74 public int read(int bits) throws AccessException {
78 throw new AccessException("illegal read " +
95 public byte[] readByteArray(int bits) throws AccessException {
110 public void skip(int bits) throws AccessException {
112 throw new AccessException("illegal skip " +
H A DBitwiseOutputStream.java41 public static class AccessException extends Exception { class in class:BitwiseOutputStream
42 public AccessException(String s) { method in class:BitwiseOutputStream.AccessException
92 public void write(int bits, int data) throws AccessException {
94 throw new AccessException("illegal write (" + bits + " bits)");
112 public void writeByteArray(int bits, byte[] arr) throws AccessException {

Completed in 52 milliseconds