/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/spi/ |
H A D | HandleDelegate.java | 70 * portable Handle implementation classes. The <code>ostream</code> object is the 76 * @param ostream The output stream. 81 public void writeEJBObject(EJBObject ejbObject, ObjectOutputStream ostream) argument 114 * portable <code>HomeHandle</code> implementation classes. The <code>ostream</code> 120 * @param ostream The output stream. 125 public void writeEJBHome(EJBHome ejbHome, ObjectOutputStream ostream) argument
|
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | Streamable.java | 78 * @param ostream OutputStream that holds value of a 82 void write(OutputStream ostream) throws IOException; argument
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/portable/ |
H A D | HandleImpl.java | 76 private void writeObject(ObjectOutputStream ostream) argument 85 handleDelegate.writeEJBObject(ejbObject, ostream);
|
H A D | HomeHandleImpl.java | 75 private void writeObject(ObjectOutputStream ostream) argument 84 handleDelegate.writeEJBHome(ejbHome, ostream);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/ |
H A D | ResponseUtil.java | 74 * @param ostream The output stream to write to 79 ServletOutputStream ostream) { 89 ostream.write(buffer, 0, len); 78 copy(InputStream istream, ServletOutputStream ostream) argument
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/codegen/otsidl/ |
H A D | TransAncestryHelper.java | 95 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosTransactions.TransIdentity[] value) argument 97 ostream.write_long (value.length); 99 org.omg.CosTransactions.TransIdentityHelper.write (ostream, value[_i0]);
|
H A D | ResourceStatusHelper.java | 88 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.codegen.otsidl.ResourceStatus value) argument 90 ostream.write_long (value.value ());
|
H A D | CoordinatorResourceHelper.java | 90 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.codegen.otsidl.CoordinatorResource value) argument 92 ostream.write_Object ((org.omg.CORBA.Object) value);
|
H A D | JControlHelper.java | 90 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.codegen.otsidl.JControl value) argument 92 ostream.write_Object ((org.omg.CORBA.Object) value);
|
H A D | JCoordinatorHelper.java | 90 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.codegen.otsidl.JCoordinator value) argument 92 ostream.write_Object ((org.omg.CORBA.Object) value);
|
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/ |
H A D | IIOPHandleDelegate.java | 86 java.io.ObjectOutputStream ostream) 89 ostream.writeObject(ejbObject); // IIOP stubs are Serializable 99 java.io.ObjectOutputStream ostream) 102 ostream.writeObject(ejbHome); // IIOP stubs are Serializable 85 writeEJBObject(javax.ejb.EJBObject ejbObject, java.io.ObjectOutputStream ostream) argument 98 writeEJBHome(javax.ejb.EJBHome ejbHome, java.io.ObjectOutputStream ostream) argument
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/codegen/jtsxa/ |
H A D | OTSResourceHelper.java | 90 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.codegen.jtsxa.OTSResource value) argument 92 ostream.write_Object ((org.omg.CORBA.Object) value);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/ |
H A D | DefaultServlet.java | 973 ServletOutputStream ostream = null; 981 ostream = response.getOutputStream(); 1038 if (ostream != null) { 1040 copy(cacheEntry, renderResult, ostream); 1088 if (ostream != null) { 1090 copy(cacheEntry, ostream, range); 1107 if (ostream != null) { 1108 copy(cacheEntry, ostream, ranges.iterator(), 1994 * @param ostream The output stream to write to 1999 ServletOutputStream ostream) 1998 copy(CacheEntry cacheEntry, InputStream is, ServletOutputStream ostream) argument 2090 copy(CacheEntry cacheEntry, ServletOutputStream ostream, Range range) argument 2162 copy(CacheEntry cacheEntry, ServletOutputStream ostream, Iterator<Range> ranges, String contentType) argument 2276 copyRange(InputStream istream, ServletOutputStream ostream) argument 2339 copyRange(InputStream istream, ServletOutputStream ostream, long start, long end) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
H A D | ApplicationDispatcherForward.java | 296 ServletOutputStream ostream = null; 309 ostream = response.getOutputStream(); 327 ioe = ResponseUtil.copy(istream, ostream);
|
H A D | StandardHostValve.java | 538 ServletOutputStream ostream = null; 550 ostream = response.getResponse().getOutputStream(); 568 ioe = ResponseUtil.copy(istream, ostream);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/ |
H A D | HostConfig.java | 574 BufferedOutputStream ostream = null; 584 ostream = 593 ostream.write(buffer, 0, n); 595 ostream.flush(); 596 ostream.close(); 597 ostream = null; 608 if (ostream != null) { 610 ostream.close(); 614 ostream = null;
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/net/ |
H A D | NetUtils.java | 697 java.io.OutputStream ostream = socket.getOutputStream(); 698 ostream.write(TEST_QUERY);
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/ |
H A D | DOMStreamReader.java | 892 private static void displayDOM(Node node, java.io.OutputStream ostream) { argument 897 new javax.xml.transform.stream.StreamResult(ostream));
|