Searched refs:readByte (Results 1 - 25 of 81) sorted by relevance

1234

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DAddressDataSource.java36 public byte readByte() throws IOException { method in class:AddressDataSource
51 int b1 = readByte() & 0xFF;
52 int b2 = readByte() & 0xFF;
58 int b1 = ((int) readByte()) & 0xFF;
59 int b2 = ((int) readByte()) & 0xFF;
60 int b3 = ((int) readByte()) & 0xFF;
61 int b4 = ((int) readByte()) & 0xFF;
67 long b1 = ((long) readByte()) & 0xFFL;
68 long b2 = ((long) readByte()) & 0xFFL;
69 long b3 = ((long) readByte())
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DAddressDataSource.java37 public byte readByte() throws IOException { method in class:AddressDataSource
51 int b1 = readByte() & 0xFF;
52 int b2 = readByte() & 0xFF;
58 int b1 = ((int) readByte()) & 0xFF;
59 int b2 = ((int) readByte()) & 0xFF;
60 int b3 = ((int) readByte()) & 0xFF;
61 int b4 = ((int) readByte()) & 0xFF;
67 long b1 = ((long) readByte()) & 0xFFL;
68 long b2 = ((long) readByte()) & 0xFFL;
69 long b3 = ((long) readByte())
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DInputLexer.java64 byte b = readByte();
72 b = readByte();
83 if ((b = readByte()) != '0') {
86 b = readByte();
91 while (isHexDigit((char) (b = readByte()))) {
100 readByte();
104 public byte readByte() throws IOException { method in class:InputLexer
133 int hi = ((int) readByte()) & 0xFF;
134 int lo = ((int) readByte()) & 0xFF;
141 long b1 = ((long) readByte())
[all...]
H A DRandomAccessFileDataSource.java35 public byte readByte() throws IOException { return file.readByte(); } method in class:RandomAccessFileDataSource
H A DDataSource.java36 public byte readByte() throws IOException; method in interface:DataSource
H A DMappedByteBufferDataSource.java42 public byte readByte() throws IOException { return buf.get(); } method in class:MappedByteBufferDataSource
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DICUBinary.java122 byte magic1 = input.readByte();
124 byte magic2 = input.readByte();
134 byte bigendian = input.readByte();
136 byte charset = input.readByte();
138 byte charsize = input.readByte();
140 input.readByte(); // reading reserved byte
/openjdk7/jdk/src/share/classes/java/io/
H A DDataInput.java335 byte readByte() throws IOException; method in interface:DataInput
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCompressedLineNumberReadStream.java42 int next = readByte() & 0xFF;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DInstructionDecoder.java99 ret = readByte(bytesArray, index);
100 ret |= readByte(bytesArray, index+1) << 8;
101 ret |= readByte(bytesArray, index+2) << 16;
102 ret |= readByte(bytesArray, index+3) << 24;
107 ret = readByte(bytesArray, index);
108 ret |= readByte(bytesArray, index+1) << 8;
111 static int readByte(byte[] bytesArray, int index) { method in class:InstructionDecoder
148 int ModRM = readByte(bytesArray, byteIndex);
251 int sib = readByte(bytesArray, byteIndex);
293 disp = (byte)readByte(bytesArra
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DBIPUSH.java108 b = bytes.readByte();
H A DNEWARRAY.java121 type = bytes.readByte();
/openjdk7/jdk/test/java/io/Serializable/evolution/AddedExternField/
H A DWriteAddedField.java52 l = s.readByte();
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DReaderUtil.java207 int value = iis.readByte();
211 value = iis.readByte();
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageReaderSpi.java88 int type = stream.readByte(); // TypeField
89 int fixHeaderField = stream.readByte();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java382 int type = in.readByte();
392 int type = in.readByte();
393 byte flags = in.readByte();
406 byte flag = in.readByte();
411 int type = in.readByte();
417 int type = in.readByte();
444 for (int num = in.readByte(); num > 0; --num) {
446 int type = in.readByte();
447 int modifier = in.readByte();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java296 byte readByte() { method in class:PacketStream
306 byte ret = readByte();
426 byte typeKey = readByte();
465 byte tag = readByte();
504 byte typeKey = readByte();
516 val = new ByteValueImpl(vm, readByte());
559 byte tag = readByte();
581 byte typeKey = readByte();
593 typeKey = readByte();
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DReadLongZipFileName.java83 byte val = dis.readByte();
86 dis.readByte();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java305 majorLinkerVersion = readByte();
306 minorLinkerVersion = readByte();
799 if (readByte() == 'N' &&
800 readByte() == 'B' &&
801 readByte() == '1' &&
802 readByte() == '1') {
816 return readByte();
866 if (readByte() == 'N' &&
867 readByte() == 'B' &&
868 readByte()
3824 byte readByte() throws COFFException { method in class:COFFFileParser.COFFFileImpl
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstant.java132 byte b = file.readByte(); // Read tag byte
H A DStackMapType.java85 this(file.readByte(), -1, constant_pool);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCompressedReadStream.java43 public byte readByte() { method in class:CompressedReadStream
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLInput.java99 byte readByte() throws SQLException; method in interface:SQLInput
/openjdk7/jdk/test/java/io/Serializable/corruptedUTFConsumption/
H A DCorruptedUTFConsumption.java81 // if readUTF consumed padding byte, readByte will throw EOFException
82 oin.readByte();
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DAbstractObjectInputStream.java304 abstract public byte readByte() throws IOException; method in class:AbstractObjectInputStream

Completed in 109 milliseconds

1234