Searched refs:DataInputStream (Results 126 - 150 of 182) sorted by relevance

12345678

/openjdk9/jdk/src/java.base/share/classes/java/util/
H A DCurrency.java29 import java.io.DataInputStream;
208 DataInputStream dis = new DataInputStream(new BufferedInputStream(in));
685 private static int[] readIntArray(DataInputStream dis, int count) throws IOException {
694 private static List<SpecialCaseEntry> readSpecialCases(DataInputStream dis,
724 private static List<OtherCurrencyEntry> readOtherCurrencies(DataInputStream dis,
/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DUtil.java44 import java.io.DataInputStream;
275 DataInputStream stream;
299 DataInputStream stream = FileLocator.locateLocaleSpecificFileInClassPath (filename);
/openjdk9/jdk/src/java.base/share/classes/sun/security/util/
H A DDerInputStream.java34 import java.io.DataInputStream;
397 DataInputStream dis = new DataInputStream(buffer);
H A DDerValue.java265 DataInputStream dis = new DataInputStream(inbuf);
397 DataInputStream dis = new DataInputStream(in);
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/
H A DTCPChannel.java27 import java.io.DataInputStream;
242 DataInputStream in =
243 new DataInputStream(conn.getInputStream());
H A DMultiplexInputStream.java182 void receive(int length, DataInputStream in)
H A DTCPTransport.java32 import java.io.DataInputStream;
547 DataInputStream in = new DataInputStream(conn.getInputStream());
719 DataInputStream in = new DataInputStream(bufIn);
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/
H A DStackMapEntry.java50 StackMapEntry(DataInputStream file, ConstantPool constant_pool) throws IOException
H A DUnknown.java98 Unknown(int name_index, int length, DataInputStream file,
H A DLocalVariable.java62 LocalVariable(DataInputStream file, ConstantPool constant_pool)
H A DLineNumberTable.java72 LineNumberTable(int name_index, int length, DataInputStream file,
H A DInnerClass.java55 InnerClass(DataInputStream file) throws IOException
H A DMethod.java56 Method(DataInputStream file, ConstantPool constant_pool)
H A DLocalVariableTable.java71 LocalVariableTable(int name_index, int length, DataInputStream file,
H A DLocalVariableTypeTable.java71 LocalVariableTypeTable(int nameIdx, int len, DataInputStream dis,ConstantPool cpool) throws IOException {
H A DFieldOrMethod.java56 protected FieldOrMethod(DataInputStream file, ConstantPool constant_pool)
H A DExceptionTable.java74 ExceptionTable(int name_index, int length, DataInputStream file,
/openjdk9/jdk/test/javax/security/auth/x500/X500Principal/
H A DNameFormat.java101 p = new X500Principal(new java.io.DataInputStream
/openjdk9/langtools/test/tools/javac/processing/filer/
H A DTestValidRelativeNames.java114 try (InputStream in = new DataInputStream(filer.getResource(
/openjdk9/jdk/test/java/util/zip/ZipFile/
H A DComment.java79 String result = new DataInputStream(is).readUTF();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/
H A DHotSpotCryptoSubstitutionTest.java26 import java.io.DataInputStream;
175 new DataInputStream(stream).readFully(classFile);
/openjdk9/jdk/test/java/io/Serializable/subclass/
H A DXObjectInputStream.java37 dis = new DataInputStream(in);
327 private DataInputStream dis;
/openjdk9/langtools/test/tools/javac/diags/
H A DCheckExamples.java202 DataInputStream in = new DataInputStream(new FileInputStream(f));
/openjdk9/jdk/test/java/lang/invoke/indify/
H A DIndify.java1087 DataInputStream in = new DataInputStream(new ByteArrayInputStream((byte[]) bsms.item));
1105 private DataInputStream openInput(File f) throws IOException {
1106 return new DataInputStream(new BufferedInputStream(new FileInputStream(f)));
1116 static byte[] readRawBytes(DataInputStream in, int size) throws IOException {
1125 void readFrom(DataInputStream in) throws IOException;
1137 public void readFrom(DataInputStream in) throws IOException {
1159 private static <T> T readInput(DataInputStream in, Class<T> dataClass) throws IOException {
1182 return readInput(new DataInputStream(new ByteArrayInputStream(bytes)), dataClass);
1187 private static void readInputs(DataInputStream i
[all...]
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DStringSharingPlugin.java43 import java.io.DataInputStream;
249 DataInputStream stream = new DataInputStream(new ByteArrayInputStream(content));

Completed in 233 milliseconds

12345678