Searched refs:os (Results 126 - 150 of 680) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DAlternateIIOPAddressComponentImpl.java76 public void writeContents(OutputStream os) argument
78 addr.write( os ) ;
H A DJavaCodebaseComponentImpl.java77 public void writeContents(OutputStream os) argument
79 os.write_string( URLs ) ;
H A DORBTypeComponentImpl.java79 public void writeContents(OutputStream os) argument
81 os.write_ulong( ORBType ) ;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcollectorCounters.hpp78 _c->last_entry_counter()->set_value(os::elapsed_counter());
83 if (UsePerfData) _c->last_exit_counter()->set_value(os::elapsed_counter());
H A DgcTraceTime.cpp29 #include "runtime/os.hpp"
50 _start_counter = os::elapsed_counter();
72 stop_counter = os::elapsed_counter();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformBase64Decode.java106 OutputStream os, Transform _transformObject)
117 if (os==null) {
121 Base64.decode(sb.toString(),os);
123 output.setOutputStream(os);
130 if (os==null) {
136 Base64.decode(input.getBytes(),os);
139 ,os);
142 output.setOutputStream(os);
105 enginePerformTransform(XMLSignatureInput input, OutputStream os, Transform _transformObject) argument
/openjdk7/hotspot/src/os/solaris/vm/
H A DthreadCritical_solaris.cpp37 // os::init() call completes. I'm not sure why this
50 if (os::Solaris::mutex_lock(&global_mut))
70 if (os::Solaris::mutex_unlock(&global_mut))
80 // This method is called at the end of os::init(). Until
/openjdk7/hotspot/src/os/windows/vm/
H A Dchaitin_windows.cpp34 if (ImplicitNullChecks && !os::win32::is_nt()) {
59 if (ImplicitNullChecks && !os::win32::is_nt()) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp32 #include "runtime/os.hpp"
225 const char *signame = os::exception_name(_id, signame_buf, sizeof(signame_buf));
231 os::current_process_id(), os::current_thread_id());
234 char separator = os::file_separator()[0];
239 os::current_process_id(), os::current_thread_id());
243 os::line_separator(), _message, _detail_msg);
246 os::line_separator(), _message);
252 _id, os
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJStaticFile.java69 protected void build(OutputStream os) throws IOException { argument
75 os.write(buf,0,sz);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/writer/
H A DSingleStreamCodeWriter.java51 * @param os
54 public SingleStreamCodeWriter( OutputStream os ) {
55 out = new PrintStream(os);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DFileServerHandler.java108 OutputStream os = t.getResponseBody();
109 PrintStream p = new PrintStream (os);
126 OutputStream os = t.getResponseBody();
133 os.write (buf, 0, len);
140 os.close();
159 OutputStream os = t.getResponseBody();
162 os.write (s.getBytes());
163 os.close();
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DZombies.java35 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/net/Socket/
H A DReadTimeout.java39 OutputStream os = null;
53 os = soc1.getOutputStream();
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DDriveLetter.java38 String os = System.getProperty("os.name");
39 if (!os.startsWith("Windows")) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/util/
H A DKrbDataOutputStream.java45 public KrbDataOutputStream(OutputStream os) { argument
46 super(os);
/openjdk7/jdk/test/javax/swing/UITest/
H A DUITest.java40 OSType os = OSInfo.getOSType();
43 switch (os) {
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DB6890349.java62 OutputStream os = s.getOutputStream();
63 os.write (resp.getBytes());
H A DGetOutputStream.java38 OutputStream os = urlConnection.getOutputStream();
/openjdk7/jdk/test/sun/nio/cs/
H A DStreamEncoderClose.java59 MyBufferedOutputStream(OutputStream os) { argument
60 super(os);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java362 String[] os = options[oi];
363 String opt = os[0].toLowerCase();
365 destDirName = addTrailingFileSep(os[1]);
370 docencoding = os[1];
372 encoding = os[1];
382 sourcepath = os[1];
385 sourcepath = os[1];
387 addToSet(excludedDocFileDirs, os[1]);
389 addToSet(excludedQualifiers, os[1]);
395 sourcetab = Integer.parseInt(os[
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DJIDLObjectKeyTemplate.java77 protected void writeTemplate( OutputStream os )
79 os.write_long( getMagic() ) ;
80 os.write_long( getSubcontractId() ) ;
81 os.write_long( getServerId() ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DExceptionHandler.java41 /** Write the exception ex to os. ex must be assignment
46 void writeException( OutputStream os, Exception ex ) ; argument
/openjdk7/hotspot/agent/make/
H A Dsaenv64.sh48 LD_AUDIT_64=$STARTDIR/../src/os/solaris/proc/$CPU/libsaproc_audit.so
56 SA_LIBPATH=$STARTDIR/../src/os/solaris/proc/$CPU:$STARTDIR/solaris/$CPU
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniPeriodicChecker.cpp36 void task() { os::run_periodic_checks(); }

Completed in 59 milliseconds

1234567891011>>