/openjdk7/jdk/test/java/io/Serializable/subclassGC/ |
H A D | SubclassOfOOS.java | 27 public SubclassOfOOS(OutputStream os) throws IOException { argument 28 super(os);
|
/openjdk7/jdk/test/java/lang/ProcessBuilder/ |
H A D | Zombies.java | 35 static final String os = System.getProperty("os.name"); field in class:Zombies 37 static final String TrueCommand = os.contains("OS X")?
|
/openjdk7/jdk/test/java/io/PipedInputStream/ |
H A D | ClosedWriter.java | 36 static PipedOutputStream os; field in class:ClosedWriter 40 os.write(0); 41 os.write(0); 42 os.write(0); 43 os.write(0); 44 os.write(0); 45 os.close(); 53 os = new PipedOutputStream(); 54 is.connect(os);
|
H A D | FasterWriter.java | 36 static PipedOutputStream os; field in class:FasterWriter 40 os.write(0); 41 os.write(0); 42 os.write(0); 50 os = new PipedOutputStream(is);
|
/openjdk7/corba/src/share/classes/org/omg/CORBA/ |
H A D | CustomMarshal.java | 47 * @param os a DataOutputStream 49 void marshal(DataOutputStream os); argument
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/ |
H A D | JBinaryFile.java | 59 public void build(OutputStream os) throws IOException { argument 60 os.write( baos.toByteArray() );
|
/openjdk7/jdk/test/java/net/URLConnection/ |
H A D | SetIfModifiedSince.java | 40 OutputStream os; field in class:SetIfModifiedSince.XServer 56 os = s.getOutputStream ();
|
H A D | URLConnectionHeaders.java | 43 OutputStream os; field in class:URLConnectionHeaders.XServer 59 os = s.getOutputStream (); 60 BufferedWriter w = new BufferedWriter(new OutputStreamWriter(os));
|
/openjdk7/jdk/test/sun/net/www/http/KeepAliveStream/ |
H A D | KeepAliveStreamCloseWithWrongContentLength.java | 40 OutputStream os; field in class:KeepAliveStreamCloseWithWrongContentLength.XServer 56 new OutputStreamWriter((os = s.getOutputStream())); 72 try {if (os != null) { os.close(); }} catch (IOException e) {}
|
/openjdk7/jdk/test/sun/nio/cs/ |
H A D | StreamEncoderClose.java | 59 MyBufferedOutputStream(OutputStream os) { argument 60 super(os);
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/ |
H A D | NewObjectKeyTemplateBase.java | 57 public void write(ObjectId objectId, OutputStream os) argument 59 super.write( objectId, os ) ; 60 getORBVersion().write( os ) ; 63 public void write(OutputStream os) argument 65 super.write( os ) ; 66 getORBVersion().write( os ) ;
|
H A D | POAObjectKeyTemplate.java | 83 public void writeTemplate(OutputStream os) argument 85 os.write_long( getMagic() ) ; 86 os.write_long( getSubcontractId() ) ; 87 os.write_long( getServerId() ) ; 88 os.write_string( getORBId() ) ; 89 getObjectAdapterId().write( os ) ;
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/ |
H A D | AlternateIIOPAddressComponentImpl.java | 76 public void writeContents(OutputStream os) argument 78 addr.write( os ) ;
|
H A D | JavaCodebaseComponentImpl.java | 77 public void writeContents(OutputStream os) argument 79 os.write_string( URLs ) ;
|
H A D | ORBTypeComponentImpl.java | 79 public void writeContents(OutputStream os) argument 81 os.write_ulong( ORBType ) ;
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/ |
H A D | ExceptionHandler.java | 41 /** Write the exception ex to os. ex must be assignment 46 void writeException( OutputStream os, Exception ex ) ; argument
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/ |
H A D | TaggedProfileTemplate.java | 59 /** Write the profile create( oktemp, id ) to the OutputStream os. 61 void write( ObjectKeyTemplate oktemp, ObjectId id, OutputStream os) ; argument
|
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/ |
H A D | BoxedValueHelper.java | 37 void write_value(OutputStream os, Serializable value); argument
|
/openjdk7/corba/src/share/classes/org/omg/PortableServer/ServantLocatorPackage/ |
H A D | CookieHolder.java | 50 public void _write( org.omg.CORBA.portable.OutputStream os) { argument
|
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/ |
H A D | Transform.java | 136 * @param os the <code>OutputStream</code> that should be used to write 140 * @throws NullPointerException if <code>data</code> or <code>os</code> 146 (Data data, XMLCryptoContext context, OutputStream os) 145 transform(Data data, XMLCryptoContext context, OutputStream os) argument
|
/openjdk7/jdk/src/share/classes/javax/crypto/ |
H A D | CipherOutputStream.java | 85 * @param os the OutputStream object 88 public CipherOutputStream(OutputStream os, Cipher c) { argument 89 super(os); 90 output = os; 101 * @param os the OutputStream object 103 protected CipherOutputStream(OutputStream os) { argument 104 super(os); 105 output = os;
|
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/ |
H A D | KeyUtils.java | 50 * @param os 53 public static void prinoutKeyInfo(KeyInfo ki, PrintStream os) argument 59 os.println("KeyName(" + i + ")=\"" + x.getKeyName() + "\""); 66 os.println("KeyValue Nr. " + i); 67 os.println(pk); 73 os.println("MgmtData(" + i + ")=\"" + x.getMgmtData() + "\""); 79 os.println("X509Data(" + i + ")=\"" + (x.containsCertificate()
|
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/ |
H A D | TransformSpi.java | 58 * @param os where to output this transformation. 69 XMLSignatureInput input, OutputStream os, Transform _transformObject) 68 enginePerformTransform( XMLSignatureInput input, OutputStream os, Transform _transformObject) argument
|
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/ |
H A D | TransformC14N.java | 61 protected XMLSignatureInput enginePerformTransform(XMLSignatureInput input,OutputStream os, Transform _transformObject) argument 64 if (os!=null) { 65 c14n.setWriter(os); 70 if (os!=null) { 71 output.setOutputStream(os);
|
H A D | TransformC14N11.java | 51 (XMLSignatureInput input, OutputStream os, Transform transform) 54 if (os != null) { 55 c14n.setWriter(os); 60 if (os != null) { 61 output.setOutputStream(os); 50 enginePerformTransform(XMLSignatureInput input, OutputStream os, Transform transform) argument
|