HomeSort by relevance Sort by last modified time
    Searched refs:readByte (Results 1 - 25 of 50) sorted by null

1 2

  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_ETC.c 66 size_t readByte = 0;
68 pCurrentPointer = *ppLine + readByte;
87 readByte += j;
88 retSize = readByte;
93 readByte += j;
95 if (readByte) {
96 retSize = readByte;
105 i = ((readByte + (chunk * 2)) / chunk) * chunk;
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponseParser.java 128 private int readByte() throws IOException {
197 int b = readByte();
213 final int next = readByte();
227 final int ch = readByte();
261 readByte(); // skip +
276 readByte(); // skip *
290 readByte(); // skip ' '
299 readByte();
338 readByte(); // Skip "
343 readByte(); // Consume \
    [all...]
  /external/guava/src/com/google/common/io/
ByteArrayDataInput.java 36 /*@Override*/ byte readByte();
  /libcore/luni/src/main/java/java/io/
DataInput.java 71 public abstract byte readByte() throws IOException;
DataInputStream.java 128 public final byte readByte() throws IOException {
ObjectInputStream.java 628 pushbackTC = input.readByte();
707 byte[] result = new byte[input.readByte() & 0xff];
752 public byte readByte() throws IOException {
753 return primitiveTypes.readByte();
    [all...]
  /external/skia/src/images/
SkImageDecoder_libico.cpp 40 #define readByte(buffer,begin) buffer[begin]
113 int width = readByte(buf, 6 + i*16);
114 int height = readByte(buf, 7 + i*16);
150 int w = readByte(buf, 6 + choice*16);
151 int h = readByte(buf, 7 + choice*16);
152 int colorCount = readByte(buf, 8 + choice*16);
153 //int reservedToo = readByte(buf, 9 + choice*16); //0
215 blue = readByte(buf, begin + 4*j);
216 green = readByte(buf, begin + 4*j + 1);
217 red = readByte(buf, begin + 4*j + 2)
    [all...]
  /external/proguard/src/proguard/classfile/io/
RuntimeDataInput.java 56 public byte readByte()
60 return dataInput.readByte();
  /packages/apps/Email/src/org/apache/commons/io/input/
SwappedDataInputStream.java 51 * Return <code>{@link #readByte()} == 0</code>
59 return ( 0 == readByte() );
68 public byte readByte()
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
SmsMessage.java 138 // Note: Parcel.readByte actually reads one Int and masks to byte
150 if (0 != p.readByte()) { //p_cur->bIsServicePresent
169 count = p.readByte(); //p_cur->sAddress.number_of_digits
174 data[index] = p.readByte();
187 count = p.readByte(); //p_cur->sSubAddress.number_of_digits
190 p.readByte();
206 data[index] = p.readByte();
496 addr.digitMode = dis.readByte();
497 addr.numberMode = dis.readByte();
498 addr.ton = dis.readByte();
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
Parser.java 322 readByte(); // version
375 int pg = readByte();
459 private int readByte() throws IOException {
479 int i = readByte();
497 i = readByte();
  /frameworks/base/tests/CoreTests/android/core/
DataInputStreamTest.java 90 assertEquals('a', g.readByte());
92 assertEquals('D', g.readByte());
PipedStreamTest.java 83 byte readByte;
92 readByte = (byte) readInt;
93 assertEquals(readByte, (byte) fib.next());
  /cts/tests/tests/content/src/android/content/res/cts/
AssetFileDescriptorTest.java 126 int readByte = 0;
127 while ((readByte != FILE_END) && (readLength < FILE_DATA.length)) {
128 readLength += readByte;
129 readByte = mInputStream.read(dataFromFile,
  /libcore/luni/src/main/java/java/sql/
SQLInput.java 77 public byte readByte() throws SQLException;
  /external/proguard/src/proguard/classfile/instruction/
Instruction.java 793 protected static int readByte(byte[] code, int offset)
817 case 1: return readByte( code, offset);
  /libcore/luni/src/main/java/java/util/logging/
LogRecord.java 484 byte major = in.readByte();
485 byte minor = in.readByte();
  /packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushProtocol.java 73 version = input.readByte();
102 mActions[i] = input.readByte();
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_info.java 63 byte tag = bytes.readByte ();
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectInputOutputStreamTest.java 88 * @tests java.io.ObjectInputStream#readByte()
103 method = "readByte",
114 (byte) 127, is.readByte());
117 is.readByte();
125 is.readByte();
DataInputOutputStreamTest.java 94 * @tests java.io.DataInputStream#readByte()
107 method = "readByte",
126 (byte) 127, dis.readByte());
129 dis.readByte();
137 dis.readByte();
RandomAccessFileTest.java 505 * @tests java.io.RandomAccessFile#readByte()
518 method = "readByte",
532 Byte.MIN_VALUE, raf.readByte());
534 11, raf.readByte());
536 Byte.MAX_VALUE, raf.readByte());
538 127, raf.readByte());
540 -128, raf.readByte());
543 raf.readByte();
557 raf.readByte();
    [all...]
  /frameworks/base/core/java/android/accounts/
AuthenticatorDescription.java 100 this.customTokens = source.readByte() == 1;
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 439 byte readByte() throws IOException {
482 val = readByte();
503 byte val = readByte();
  /external/emma/core/java12/com/vladium/emma/data/
ClassDescriptor.java 176 final byte srcFileNameFlag = in.readByte ();

Completed in 1007 milliseconds

1 2