Searched refs:os (Results 251 - 275 of 680) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DExchangeImpl.java272 void write (Headers map, OutputStream os) throws IOException { argument
283 os.write (buf, 0, i);
288 os.write (buf, 0, i);
291 os.write ('\r');
292 os.write ('\n');
414 PlaceholderOutputStream (OutputStream os) { argument
415 wrapped = os;
418 void setWrappedStream (OutputStream os) { argument
419 wrapped = os;
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/gopher/
H A DGopherClient.java82 PipedOutputStream os; field in class:GopherClient
125 this.os = os;
170 os = new PipedOutputStream();
172 ret.connect(os);
261 PrintStream ps = new PrintStream(os, false, encoding);
268 os.write(buf, 0, n);
272 PrintStream ps = new PrintStream(os, false, encoding);
332 os.close();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DIORTemplateImpl.java121 public void write( OutputStream os )
123 oktemp.write( os ) ;
124 EncapsulationUtility.writeIdentifiableSequence( this, os ) ;
H A DIORTemplateListImpl.java96 public void write( OutputStream os )
98 os.write_long( size() ) ;
102 iortemp.write( os ) ;
H A DWireObjectKeyTemplate.java100 public void write( ObjectId id, OutputStream os )
103 os.write_octet_array( key, 0, key.length ) ;
106 public void write( OutputStream os )
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp31 #include "runtime/os.hpp"
119 if (os::stat(path, &st) != 0) {
132 if (!os::dir_is_empty(name)) {
262 long new_file_offset = align_size_up(_file_offset, os::vm_allocation_granularity());
330 size_t size = align_size_up(used, os::vm_allocation_granularity());
334 char *base = os::remap_memory(_fd, _full_path, si->_file_offset,
356 size_t size = align_size_up(used, os::vm_allocation_granularity());
377 size_t size = align_size_up(used, os::vm_allocation_granularity());
382 char *base = os::map_memory(_fd, _full_path, si->_file_offset,
406 size_t size = align_size_up(used, os
[all...]
H A Dallocation.cpp30 #include "runtime/os.hpp"
203 // No VM lock can be taken inside ThreadCritical lock, so os::malloc
209 if (p == NULL) p = os::malloc(bytes, mtChunk, CURRENT_PC);
254 os::free(cur, mtChunk);
321 void *p = os::malloc(bytes, mtChunk, CALLER_PC);
336 default: os::free(c, mtChunk);
438 void* p = os::malloc(size, flags|otArena, CALLER_PC);
442 return os::malloc(size, flags|otArena, CALLER_PC);
593 return (*save = (char*)os::malloc(size, mtChunk));
649 start_mallocs = os
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformC14NExclusiveWithComments.java66 protected XMLSignatureInput enginePerformTransform(XMLSignatureInput input,OutputStream os, Transform _transformObject) argument
87 if (os!=null) {
88 c14n.setWriter( os);
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfSymbolTable.cpp43 m_symbols = (Elf_Sym*)os::malloc(shdr.sh_size, mtInternal);
49 os::free(m_symbols);
63 os::free(m_symbols);
/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsAttachProvider.java40 String os = System.getProperty("os.name");
41 if (os.startsWith("Windows 9") || os.equals("Windows Me")) {
45 String arch = System.getProperty("os.arch");
/openjdk7/jdk/test/java/io/Serializable/typeSafeEnum/
H A DTypeSafeEnum.java139 ObjectOutputStream os = new ObjectOutputStream(baos);
140 os.writeObject(writeArray);
141 os.close();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/
H A DNotifyHandshakeTest.java181 OutputStream os = s.getOutputStream();
182 os.write(0x77);
183 os.flush();
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSToken.java118 * @param os the OutputStream to write to
121 public static final void writeInt(int val, OutputStream os) argument
123 os.write(val>>>8);
124 os.write(val);
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DWrapToken_v2.java205 public void encode(OutputStream os) throws IOException { argument
206 encodeHeader(os);
207 os.write(tokenData);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificatePoliciesExtension.java92 DerOutputStream os = new DerOutputStream();
99 os.write(DerValue.tag_Sequence, tmp);
100 this.extensionValue = os.toByteArray();
H A DIssuerAlternativeNameExtension.java73 DerOutputStream os = new DerOutputStream();
74 names.encode(os);
75 this.extensionValue = os.toByteArray();
H A DPolicyMappingsExtension.java77 DerOutputStream os = new DerOutputStream();
84 os.write(DerValue.tag_Sequence, tmp);
85 this.extensionValue = os.toByteArray();
H A DSubjectAlternativeNameExtension.java78 DerOutputStream os = new DerOutputStream();
79 names.encode(os);
80 this.extensionValue = os.toByteArray();
/openjdk7/jdk/test/sun/net/www/http/ChunkedInputStream/
H A DChunkedEncodingTest.java110 OutputStream os = t.getResponseBody();
111 DigestOutputStream dos = new DigestOutputStream(os, serverDigest);
119 os.close();
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DProxyFromCache.java125 OutputStream os = sock.getOutputStream();
128 os.write(replyOK.getBytes("UTF-8"));
133 os.write(replyOK.getBytes("UTF-8"));
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DFinalizer.java34 OutputStream os; field in class:XServer
51 os = s.getOutputStream ();
52 BufferedWriter w = new BufferedWriter(new OutputStreamWriter(os));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DBootstrapServerRequestDispatcher.java90 MarshalOutputStream os = (MarshalOutputStream)
102 os.write_Object(serviceObject);
105 os.write_long( keys.size() ) ;
109 os.write_string( obj ) ;
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DTransform.java136 * @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/java/util/
H A DXMLUtils.java123 static void save(Properties props, OutputStream os, String comment, argument
152 emitDocument(doc, os, encoding);
155 static void emitDocument(Document doc, OutputStream os, String encoding) argument
170 StreamResult sr = new StreamResult(os);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DbufferingOopClosure.hpp30 #include "runtime/os.hpp"
61 double start = os::elapsedTime();
71 _closure_app_seconds += (os::elapsedTime() - start);
160 double start = os::elapsedTime();
179 _closure_app_seconds += (os::elapsedTime() - start);

Completed in 54 milliseconds

<<11121314151617181920>>