Searched refs:DataInputStream (Results 26 - 50 of 182) sorted by relevance

12345678

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/
H A DClassfile.java25 import java.io.DataInputStream;
58 public Classfile(ResolvedJavaType type, DataInputStream stream, ClassfileBytecodeProvider context) throws IOException {
99 private static void skipAttributes(DataInputStream stream) throws IOException {
109 static void skipFully(DataInputStream stream, int n) throws IOException {
124 private ClassfileBytecode findCodeAttribute(DataInputStream stream, ClassfileConstantPool cp, String name, String descriptor, boolean isStatic) throws IOException {
148 private static void skipFields(DataInputStream stream) throws IOException {
156 private List<ClassfileBytecode> readMethods(DataInputStream stream, ClassfileConstantPool cp) throws IOException {
H A DClassfileBytecode.java26 import java.io.DataInputStream;
67 public ClassfileBytecode(ResolvedJavaMethod method, DataInputStream stream, ClassfileConstantPool constantPool) throws IOException {
81 private void readCodeAttributes(DataInputStream stream) throws IOException {
135 DataInputStream stream = new DataInputStream(new ByteArrayInputStream(exceptionTableBytes));
184 DataInputStream stream = new DataInputStream(new ByteArrayInputStream(lineNumberTableBytes));
207 DataInputStream stream = new DataInputStream(new ByteArrayInputStream(localVariableTableBytes));
H A DClassfileConstant.java30 import java.io.DataInputStream;
86 ClassRef(DataInputStream stream) throws IOException {
111 MemberRef(byte tag, DataInputStream stream) throws IOException {
126 ExecutableRef(byte tag, DataInputStream stream) throws IOException {
164 MethodRef(DataInputStream stream) throws IOException {
170 InterfaceMethodRef(DataInputStream stream) throws IOException {
178 FieldRef(DataInputStream stream) throws IOException {
212 StringRef(DataInputStream stream) throws IOException {
232 NameAndType(DataInputStream stream) throws IOException {
/openjdk9/jdk/src/java.base/share/classes/java/time/zone/
H A DTzdbZoneRulesProvider.java66 import java.io.DataInputStream;
110 try (DataInputStream dis = new DataInputStream(
135 DataInputStream dis = new DataInputStream(new ByteArrayInputStream(bytes));
161 private void load(DataInputStream dis) throws Exception {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/
H A DClassParser.java44 private DataInputStream file;
71 if(file instanceof DataInputStream) // Is already a data stream
72 this.file = (DataInputStream)file;
74 this.file = new DataInputStream(new BufferedInputStream(file, BUFSIZE));
86 file = new DataInputStream(new BufferedInputStream
103 file = new DataInputStream(new BufferedInputStream(zip.getInputStream(entry),
H A DConstantInterfaceMethodref.java47 ConstantInterfaceMethodref(DataInputStream file) throws IOException
H A DConstantMethodref.java47 ConstantMethodref(DataInputStream file) throws IOException
H A DConstantFieldref.java47 ConstantFieldref(DataInputStream file) throws IOException
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/
H A DCRC32SubstitutionsTest.java25 import java.io.DataInputStream;
72 new DataInputStream(s).readFully(buf);
91 new DataInputStream(s).readFully(buf);
/openjdk9/hotspot/test/runtime/Metaspace/
H A DFragmentMetaspaceSimple.java31 import java.io.DataInputStream;
86 DataInputStream din = new DataInputStream(new FileInputStream(file));
/openjdk9/jdk/test/java/lang/ClassLoader/findSystemClass/
H A DLoader.java54 import java.io.DataInputStream;
94 DataInputStream in =
95 new DataInputStream(new FileInputStream(f));
/openjdk9/jdk/src/jdk.management.agent/share/classes/sun/management/jdp/
H A DJdpPacketReader.java28 import java.io.DataInputStream;
42 private final DataInputStream pkt;
54 pkt = new DataInputStream(bais);
/openjdk9/jdk/test/com/sun/net/httpserver/bugs/
H A DB6401598.java54 DataInputStream dis = new DataInputStream(is);
108 DataInputStream dis = new DataInputStream(is);
/openjdk9/langtools/test/tools/javah/4942232/
H A DTest.java114 try (DataInputStream in = new DataInputStream(new FileInputStream(from));
123 try (DataInputStream in = new DataInputStream(new FileInputStream(f))) {
/openjdk9/corba/src/jdk.rmic/share/classes/sun/rmi/rmic/iiop/
H A DClassPathLoader.java80 DataInputStream input
81 = new DataInputStream(classFile.getInputStream());
/openjdk9/jdk/test/java/io/DataInputStream/
H A DReadUTF.java84 DataInputStream dis = new DataInputStream(bais);
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DBinaryCode.java50 DataInputStream in = new DataInputStream(new ByteArrayInputStream(data));
/openjdk9/jdk/test/java/util/Currency/
H A DCheckDataVersion.java69 DataInputStream dis = new DataInputStream(in);
/openjdk9/langtools/test/tools/javac/
H A DEarlyAssertWrapper.java63 DataInputStream in = new DataInputStream(p.getInputStream());
/openjdk9/langtools/test/tools/javac/parser/
H A DExtraSemiTest.java93 DataInputStream in = new DataInputStream(new FileInputStream(f));
/openjdk9/langtools/test/tools/javah/
H A DT5070898.java89 DataInputStream in = new DataInputStream(p.getInputStream());
/openjdk9/langtools/test/tools/javap/
H A DT6622260.java66 DataInputStream in = new DataInputStream(new FileInputStream(f));
71 in = new DataInputStream(new ByteArrayInputStream(data));
126 int skipConstantPool(DataInputStream in) throws IOException {
171 int skipAttributes(DataInputStream in) throws IOException {
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/bytecode/
H A DClassTailor.java29 import java.io.DataInputStream;
103 DataInputStream in = new DataInputStream(image);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DAuFileReader.java28 import java.io.DataInputStream;
49 final DataInputStream dis = new DataInputStream(stream);
H A DSunFileWriter.java28 import java.io.DataInputStream;
75 final int rllong(DataInputStream dis) throws IOException {
117 final short rlshort(DataInputStream dis) throws IOException {

Completed in 204 milliseconds

12345678