Searched defs:os (Results 1 - 25 of 40) sorted by relevance

12

/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/
H A DDoNothingActionReporter.java55 public void writeReport(OutputStream os) throws IOException { argument
H A DHTMLActionReporter.java66 public void writeReport(OutputStream os) throws IOException { argument
67 PrintWriter writer = new PrintWriter(os);
H A DJsonActionReporter.java76 public void writeReport(OutputStream os) throws IOException { argument
77 PrintWriter writer = new PrintWriter(os);
H A DXMLContentActionReporter.java87 public void writeReport(OutputStream os) { argument
95 writeXML(d, os);
177 * @param os the output stream
180 private void writeXML(Document doc, OutputStream os) argument
184 Result result = new StreamResult(os);
H A DPropsFileActionReporter.java72 public void writeReport(OutputStream os) throws IOException { argument
84 out.write(os);
H A DXMLActionReporter.java93 public void writeReport(OutputStream os) { argument
100 writeXML(d, os);
202 private void writeXML(Document doc, OutputStream os) throws TransformerConfigurationException, TransformerException { argument
205 Result result = new StreamResult(os);
H A DPlainTextActionReporter.java64 public void writeReport(OutputStream os) throws IOException { argument
67 writer = new PrintWriter(os);
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/utils/xml/
H A DRestActionReporter.java59 public void writeReport(OutputStream os) throws IOException { argument
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DArchivistUtils.java60 public static void copy(InputStream is, OutputStream os) throws IOException { argument
61 copyWithoutClose(is, os);
63 os.close();
70 public static void copyWithoutClose(InputStream is, OutputStream os) throws IOException { argument
81 os.write(buf, 0, len);
84 os.flush();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/io/
H A DJ2EEObjectStreamFactoryImpl.java71 final OutputStream os,
79 oos = new EJBObjectOutputStream(os, replaceObject);
87 os, replaceObject);
70 createObjectOutputStream( final OutputStream os, final boolean replaceObject) argument
H A DJavaEEIOUtilsImpl.java62 public ObjectOutputStream createObjectOutputStream(OutputStream os, boolean replaceObject) throws IOException { argument
63 return IOUtils.createObjectOutputStream(os, replaceObject);
H A DIOUtils.java79 final OutputStream os, final boolean replaceObject)
82 return _streamFactory.createObjectOutputStream(os, replaceObject);
78 createObjectOutputStream( final OutputStream os, final boolean replaceObject) argument
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/io/
H A DJ2EEObjectStreamFactory.java68 public ObjectOutputStream createObjectOutputStream(OutputStream os, argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DIOTools.java109 public static void flow( InputStream is, OutputStream os, byte[] buf ) argument
113 os.write(buf, 0, numRead);
120 public static void flow( InputStream is, OutputStream os )
123 flow( is, os, buf );
/glassfish-3.1.2/build/glassfish-obr-builder/src/main/java/org/glassfish/obrbuilder/xmlentities/
H A DObrXmlReaderWriter.java108 * @param os target stream to write to
111 public void write(Repository repository, OutputStream os) throws IOException { argument
113 getMarshaller(repository.getClass()).marshal(repository, os);
126 OutputStream os = new BufferedOutputStream(new FileOutputStream(out));
128 write(repository, os);
131 os.close();
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/spi/util/
H A DJavaEEIOUtils.java65 public ObjectOutputStream createObjectOutputStream(OutputStream os, boolean replaceObject) argument
H A DJavaEEObjectStreamFactory.java88 final OutputStream os,
100 oos = new JavaEEObjectOutputStream(os, replaceObject, handlers);
107 return new JavaEEObjectOutputStream(os, replaceObject, handlers);
87 createObjectOutputStream( final OutputStream os, final boolean replaceObject) argument
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/
H A DRejar.java152 protected void copy(JarFile in, JarEntry je, OutputStream os) throws IOException { argument
153 copy(in, je, Channels.newChannel(os));
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/commands/
H A DSummaryReporter.java66 final OperatingSystemMXBean os = ManagementFactory.newPlatformMXBeanProxy(mbsc,
68 sb.append(getOSInfo(os));
78 private String getOSInfo(final OperatingSystemMXBean os) { argument
80 sb.append(sm.getString("os.info"));
81 sb.append(sm.getString("os.name", os.getName()));
82 sb.append(sm.getString("os.arch", os.getArch(), os.getVersion()));
83 sb.append(sm.getString("os
109 getSystemLoad(OperatingSystemMXBean os) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/
H A DJ2EEDocumentBuilder.java138 public static void write (Descriptor descriptor, final RootXMLNode node, final OutputStream os) throws Exception { argument
139 Result output = new StreamResult(os);
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/
H A DPayload.java329 * @param os OutputStream to receive the formatted payload
332 public void writeTo(final OutputStream os) throws IOException; argument
403 * @param os target OutputStream to receive the content of the Part
406 public void copy(final OutputStream os) throws IOException; argument
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/config/
H A DConfigBeanArchive.java85 public void closeEntry(ReadableArchive os) throws IOException { argument
97 public void closeEntry(OutputStream os) throws IOException { argument
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/io/
H A DDeploymentDescriptorFile.java373 * @param os the output stream
375 public void write(T descriptor, OutputStream os) throws IOException { argument
377 J2EEDocumentBuilder.write(descriptor, getRootXMLNode(descriptor), os);
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/sfsb/store/
H A DSFSBBeanState.java179 public void _storeable_writeState(OutputStream os) throws IOException { argument
180 ObjectOutputStream oos = new ObjectOutputStream(os);
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/
H A DActionReport.java82 public abstract void writeReport(OutputStream os) throws IOException; argument

Completed in 1013 milliseconds

12