/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/generator/ |
H A D | TextClassWriter.java | 78 writer.write("@Path(\"/" + resourcePath + "/\")\n"); 81 writer.write("public class " + className + " extends " + baseClassName + " {\n\n"); 86 writer.write("package org.glassfish.admin.rest.resources.generated;\n"); 90 writer.write("/*\n"); 91 writer.write(" * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.\n"); 92 writer.write(" *\n"); 93 writer.write(" * Copyright (c) 2009-2010 Oracle and/or its affiliates. All rights reserved.\n"); 94 writer.write(" *\n"); 95 writer.write(" * The contents of this file are subject to the terms of either the GNU\n"); 96 writer.write(" * Genera [all...] |
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/impl/client/ |
H A D | NullStream.java | 53 public void write(byte b[]) { method in class:NullStream 56 public void write(byte b[], int off, int len) { method in class:NullStream 59 public void write(int b) { method in class:NullStream
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/ |
H A D | CachingOutputStreamWrapper.java | 65 public void write(int b) throws IOException { method in class:CachingOutputStreamWrapper 66 baos.write(b); 77 public void write(byte b[]) throws IOException { method in class:CachingOutputStreamWrapper 78 baos.write(b, 0, b.length); 91 public void write(byte b[], int off, int len) throws IOException { method in class:CachingOutputStreamWrapper 92 baos.write(b, off, len);
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/logviewer/ |
H A D | LineEndNormalizingWriter.java | 67 public void write(char cbuf[]) throws IOException { method in class:LineEndNormalizingWriter 68 write(cbuf, 0, cbuf.length); 72 public void write(String str) throws IOException { method in class:LineEndNormalizingWriter 73 write(str,0,str.length()); 77 public void write(int c) throws IOException { method in class:LineEndNormalizingWriter 79 super.write("\r\n"); 81 super.write(c); 86 public void write(char cbuf[], int off, int len) throws IOException { method in class:LineEndNormalizingWriter 93 // write up to the char before LF 94 super.write(cbu 105 public void write(String str, int off, int len) throws IOException { method in class:LineEndNormalizingWriter [all...] |
H A D | CharSpool.java | 60 public void write(char cbuf[], int off, int len) { method in class:CharSpool 83 public void write(int c) { method in class:CharSpool 101 w.write(cb); 104 w.write(last,0,pos);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/ |
H A D | CoyoteWriter.java | 192 public void write(int c) { method in class:CoyoteWriter 204 ob.write(c); 212 public void write(char buf[], int off, int len) { method in class:CoyoteWriter 224 ob.write(buf, off, len); 231 public void write(char buf[]) { method in class:CoyoteWriter 232 write(buf, 0, buf.length); 236 public void write(String s, int off, int len) { method in class:CoyoteWriter 248 ob.write(s, off, len); 256 public void write(String s) { method in class:CoyoteWriter 257 write( 261 public void write(byte[] buff, int off, int len) { method in class:CoyoteWriter [all...] |
H A D | CoyoteOutputStream.java | 128 public void write(int i) method in class:CoyoteOutputStream 140 public void write(byte[] b) method in class:CoyoteOutputStream 148 write(b, 0, b.length); 152 public void write(byte[] b, int off, int len) method in class:CoyoteOutputStream 160 ob.write(b, off, len); 202 ob.write(s);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/ |
H A D | ByteArrayServletOutputStream.java | 99 * @param b The parameter to write 101 public void write(int b) { method in class:ByteArrayServletOutputStream 102 buf.write(b);
|
H A D | SSIPrintenv.java | 82 writer.write(errorMessage); 95 writer.write(variableName); 96 writer.write('='); 97 writer.write(variableValue); 98 writer.write('\n');
|
H A D | SSISet.java | 95 writer.write(errorMessage); 100 writer.write(errorMessage);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/ |
H A D | ThresholdingOutputStream.java | 77 * is actually reached, since it triggers when a pending write operation would 134 public void write(int b) throws IOException method in class:ThresholdingOutputStream 137 getStream().write(b); 150 public void write(byte b[]) throws IOException method in class:ThresholdingOutputStream 153 getStream().write(b); 164 * @param len The number of bytes to write. 168 public void write(byte b[], int off, int len) throws IOException method in class:ThresholdingOutputStream 171 getStream().write(b, off, len);
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/logger/ |
H A D | LoggerBase.java | 56 * <code>write(String msg, int verbosity)</code>, plus any property 148 write(msg, DEBUG); 177 write(msg, throwable, ERROR); 190 write(message, verbosity); 204 write(message, throwable, verbosity); 216 protected void write(String msg, Throwable throwable, int verbosity) { method in class:LoggerBase 230 write(buf.toString(), verbosity); 236 protected abstract void write(String msg, int verbosity); method in class:LoggerBase
|
/glassfish-3.1.2/tests/osgi-javaee/osgi-web/common/ |
H A D | Reporter.java | 105 out.write(lineSepatartor + "\n"); 106 out.write(testName + " :: " + statusCode[code] + "\n"); 107 out.write(lineSepatartor + "\n"); 140 out.write("Test Summary : \n \n"); 141 out.write(lineSepatartor + "\n"); 144 out.write(statusCode[i] + " : " + testSummary[i].size() + "\n"); 145 out.write(lineSepatartor2 + "\n"); 148 out.write(itr.next().toString() + "\n"); 149 out.write("\n" + lineSepatartor + "\n");
|
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/streams/ |
H A D | JMXChunkedOutputStream.java | 85 dO.write(new byte[padLen],0,padLen); 89 public void write(byte[] b) throws IOException { method in class:JMXChunkedOutputStream 92 write(b, 0, b.length); 95 public void write(byte[] b, int off, int len) throws IOException { method in class:JMXChunkedOutputStream 118 public void write(int by) throws IOException { method in class:JMXChunkedOutputStream 136 dO.write(b, off, len);
|
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | Streamable.java | 82 void write(OutputStream ostream) throws IOException; method in interface:Streamable
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/soap/ |
H A D | MessageDenormalizerImpl.java | 267 writer.write("<" + SOAP_NAMESPACE_PREFIX + ":Body>"); 269 writer.write("</" + SOAP_NAMESPACE_PREFIX + ":Body>"); 327 writer.write(stringWriter.toString()); 347 * @throws Exception if header cannot be used to write to the writer instance 369 writer.write("<" + SOAP_NAMESPACE_PREFIX + ":Header>"); 370 writer.write(stringWriter.toString()); 371 writer.write("</" + SOAP_NAMESPACE_PREFIX + ":Header>"); 386 * Uses the writer object to write the SOAP:Body header information. This method 399 writer.write("<" + SOAP_NAMESPACE_PREFIX + ":Body>"); 403 writer.write("<" [all...] |
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/util/ |
H A D | PrintWriterAdapter.java | 92 public void write(int c) { method in class:PrintWriterAdapter 94 writer.write(c); 97 public void write(char[] buf, int off, int len) { method in class:PrintWriterAdapter 99 writer.write(buf, off, len); 102 public void write(char[] buf) { method in class:PrintWriterAdapter 104 writer.write(buf); 107 public void write(String s, int off, int len) { method in class:PrintWriterAdapter 109 writer.write(s, off, len); 112 public void write(String s) { method in class:PrintWriterAdapter 114 writer.write( [all...] |
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/ |
H A D | DescriptorArchivist.java | 78 public void write(Application application, ReadableArchive in, method in class:DescriptorArchivist 83 write((BundleDescriptor)aModule.getDescriptor(), moduleArchivist, in, out); 93 // write or copy standard deployment descriptor 103 ddFile.write(bundle, os); 113 ddFile.write(webBundle, os); 128 confDDFile.write(aModule.getDescriptor(), os); 134 write((BundleDescriptor)aModule.getDescriptor(), moduleArchivist, moduleArchive2, moduleArchive); 138 // now let's write the application descriptor 158 public void write(BundleDescriptor bundle, ReadableArchive in, WritableArchive out) method in class:DescriptorArchivist 163 write(bundl 172 protected void write(BundleDescriptor bundle, Archivist archivist, ReadableArchive in, WritableArchive out) method in class:DescriptorArchivist [all...] |
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/ |
H A D | HTMLActionReporter.java | 74 write(2, topMessage, writer); 89 private void write(int level, MessagePart part, PrintWriter writer) { method in class:HTMLActionReporter 99 write(part.getProps(), writer); 102 write(level+1, child, writer); 106 private void write(Properties props, PrintWriter writer) { method in class:HTMLActionReporter
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | infutil.c | 38 n = (uInt)((q <= s->write ? s->write : s->end) - q); 60 if (s->write == s->end) 61 s->write = s->window; 64 n = (uInt)(s->write - q);
|
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/stats/lb/ |
H A D | LoadBalancerStats.java | 134 public void write(java.io.OutputStream out) throws java.io.IOException { method in class:LoadBalancerStats 135 write(out, null); 138 public void write(java.io.OutputStream out, String encoding) throws java.io.IOException { method in class:LoadBalancerStats 144 write(w, encoding); 150 public void write(java.io.Writer out, String encoding) throws java.io.IOException { method in class:LoadBalancerStats 151 out.write("<?xml version='1.0'"); // NOI18N 153 out.write(" encoding='"+encoding+"'"); // NOI18N 154 out.write(" ?>\n"); // NOI18N 159 out.write(indent); 160 out.write("<"); [all...] |
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/codegen/otsidl/ |
H A D | JControlPOA.java | 87 org.omg.CosTransactions.otid_tHelper.write (out, $result); 88 org.omg.CosTransactions.StatusHelper.write (out, status.value); 101 org.omg.CosTransactions.StatusHelper.write (out, status.value); 112 org.omg.CosTransactions.StatusHelper.write (out, $result); 132 org.omg.CosTransactions.TerminatorHelper.write (out, $result); 135 org.omg.CosTransactions.UnavailableHelper.write (out, $ex); 146 org.omg.CosTransactions.CoordinatorHelper.write (out, $result); 149 org.omg.CosTransactions.UnavailableHelper.write (out, $ex);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/ |
H A D | IOTools.java | 77 * Read input from reader and write it to writer until there is no more 81 * @param writer the writer to write to. 88 writer.write(buf, 0, numRead); 102 * Read input from input stream and write it to output stream 106 * @param output stream the output stream to write to. 113 os.write(buf, 0, numRead);
|
H A D | ResponseUtil.java | 74 * @param ostream The output stream to write to 89 ostream.write(buffer, 0, len); 106 * @param writer The writer to write to 120 writer.write(buffer, 0, len);
|
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
H A D | GenericAttribute.java | 66 void write(DataOutputStream out) throws IOException { method in class:GenericAttribute 69 out.write(attributeBytes, 0, attributeBytes.length);
|