Searched refs:istr (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DClosedChannelTransfer.java45 ByteArrayInputStream istr = new ByteArrayInputStream(
48 ReadableByteChannel rbc = Channels.newChannel(istr);
59 ByteArrayOutputStream istr = new ByteArrayOutputStream(4);
60 WritableByteChannel wbc = Channels.newChannel(istr);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPProfileTemplateImpl.java110 public IIOPProfileTemplateImpl( InputStream istr )
112 byte major = istr.read_octet() ;
113 byte minor = istr.read_octet() ;
115 primary = new IIOPAddressImpl( istr ) ;
116 orb = (ORB)(istr.orb()) ;
120 this, orb.getTaggedComponentFactoryFinder(), istr ) ;
H A DIIOPProfileImpl.java173 EncapsInputStream istr = new EncapsInputStream((ORB)orb, profile.profile_data,
175 istr.consumeEndian();
176 init( istr ) ;
179 private void init( InputStream istr )
183 version.read( istr ) ;
184 IIOPAddress primary = new IIOPAddressImpl( istr ) ;
185 byte[] key = EncapsulationUtility.readOctets( istr ) ;
197 orb.getTaggedComponentFactoryFinder(), istr ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DEncapsulationUtility.java66 IdentifiableFactoryFinder finder, InputStream istr)
68 int count = istr.read_long() ;
70 int id = istr.read_long() ;
71 Identifiable obj = finder.create( id, istr ) ;
65 readIdentifiableSequence( List container, IdentifiableFactoryFinder finder, InputStream istr) argument
H A DStubIORImpl.java87 InputStream istr = ostr.create_input_stream();
90 int typeLength = istr.read_long();
92 istr.read_octet_array(typeData, 0, typeLength);
93 int numProfiles = istr.read_long();
97 profileTags[i] = istr.read_long();
98 profileData[i] = new byte[istr.read_long()];
99 istr.read_octet_array(profileData[i], 0, profileData[i].length);
116 InputStream istr = ostr.create_input_stream() ;
119 org.omg.CORBA.Object obj = (org.omg.CORBA.Object)istr.read_Object();
H A DObjectReferenceTemplateImpl.java118 org.omg.CORBA_2_3.portable.InputStream istr =
120 iorTemplate = IORFactories.makeIORTemplate( istr ) ;
121 orb = (ORB)(istr.orb()) ;
H A DObjectReferenceFactoryImpl.java117 org.omg.CORBA_2_3.portable.InputStream istr =
120 iorTemplates = IORFactories.makeIORTemplateList( istr ) ;
/openjdk7/jdk/test/javax/management/openmbean/
H A DMBeanFeatureInfoSerialStore.java1060 final ObjectInputStream istr = new ObjectInputStream(bin);
1061 return istr.readObject();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DStreamMonitor.java88 /** Equivalent to StreamMonitor(istr, null, false) */
89 public StreamMonitor(InputStream istr) { argument
90 this(istr, null, false);
93 public StreamMonitor(InputStream istr, String prefixString, boolean printContents) { argument
94 input = new BufferedReader(new InputStreamReader(istr));
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTML.java632 String istr = (String) attr.getAttribute(key);
633 if (istr != null) {
635 value = Integer.valueOf(istr).intValue();
/openjdk7/jdk/test/javax/rmi/ssl/
H A DSocketFactoryTest.java88 final ObjectInputStream istr =
90 return istr.readObject();

Completed in 90 milliseconds