/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ |
H A D | DataSource.java | 36 public byte readByte() throws IOException; method in interface:DataSource
|
H A D | MappedByteBufferDataSource.java | 42 public byte readByte() throws IOException { return buf.get(); } method in class:MappedByteBufferDataSource
|
H A D | RandomAccessFileDataSource.java | 35 public byte readByte() throws IOException { return file.readByte(); } method in class:RandomAccessFileDataSource
|
H A D | InputLexer.java | 64 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...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/ |
H A D | CompressedReadStream.java | 43 public byte readByte() { method in class:CompressedReadStream
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/ |
H A D | AddressDataSource.java | 36 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 D | AddressDataSource.java | 37 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/jdk/src/share/classes/java/io/ |
H A D | DataInput.java | 335 byte readByte() throws IOException; method in interface:DataInput
|
H A D | DataInputStream.java | 249 * See the general contract of the <code>readByte</code> 264 public final byte readByte() throws IOException { method in class:DataInputStream
|
H A D | RandomAccessFile.java | 690 public final byte readByte() throws IOException { method in class:RandomAccessFile
|
H A D | ObjectInputStream.java | 913 public byte readByte() throws IOException { method in class:ObjectInputStream 914 return bin.readByte(); 1317 bin.readByte(); 1435 if (bin.readByte() != TC_NULL) { 1447 if (bin.readByte() != TC_REFERENCE) { 1478 if (bin.readByte() != TC_CLASS) { 1538 if (bin.readByte() != TC_PROXYCLASSDESC) { 1589 if (bin.readByte() != TC_CLASSDESC) { 1633 byte tc = bin.readByte(); 1657 if (bin.readByte() ! 2762 public byte readByte() throws IOException { method in class:ObjectInputStream.BlockDataInputStream [all...] |
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/ |
H A D | SQLInputImpl.java | 227 public byte readByte() throws SQLException { method in class:SQLInputImpl
|
/openjdk7/jdk/src/share/classes/java/sql/ |
H A D | SQLInput.java | 99 byte readByte() throws SQLException; method in interface:SQLInput
|
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | RIFFReader.java | 225 public byte readByte() throws IOException { method in class:RIFFReader
|
/openjdk7/jdk/test/java/io/Serializable/subclass/ |
H A D | AbstractObjectInputStream.java | 304 abstract public byte readByte() throws IOException; method in class:AbstractObjectInputStream
|
H A D | XObjectInputStream.java | 123 public byte readByte() throws IOException { method in class:XObjectInputStream
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | InstructionDecoder.java | 99 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/jdk/src/share/classes/javax/imageio/stream/ |
H A D | ImageInputStream.java | 207 byte readByte() throws IOException; method in interface:ImageInputStream
|
H A D | ImageInputStreamImpl.java | 211 public byte readByte() throws IOException { method in class:ImageInputStreamImpl
|
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/ |
H A D | PacketStream.java | 296 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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/ |
H A D | ClassReader.java | 1866 public int readByte(final int index) { method in class:ClassReader
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/ |
H A D | ELFFileParser.java | 652 info = readByte(); 653 other = readByte(); 853 byte readByte() throws ELFException { method in class:ELFFileParser.ELFFileImpl 855 return file.readByte(); 949 return unsignedByte(file.readByte());
|
/openjdk7/jdk/src/share/classes/sun/applet/ |
H A D | AppletPanel.java | 1305 int hi = readByte(b[off]); 1306 int lo = readByte(b[off + 1]); 1310 private int readByte(byte b) { method in class:AppletPanel
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/ |
H A D | IIOPInputStream.java | 725 public final byte readByte() throws IOException{ method in class:IIOPInputStream
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/ |
H A D | COFFFileParser.java | 305 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...] |