HomeSort by relevance Sort by last modified time
    Searched defs:AccessException (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/com/android/internal/util/
BitwiseInputStream.java 41 public static class AccessException extends Exception {
42 public AccessException(String s) {
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 " +
BitwiseOutputStream.java 41 public static class AccessException extends Exception {
42 public AccessException(String s) {
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 32 milliseconds