Searched refs:os (Results 101 - 125 of 897) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/share/vm/gc/shared/
H A DgcTraceTime.cpp28 #include "runtime/os.hpp"
37 bool valid = os::getTimesSecs(&_starting_real_time,
41 log_warning(gc, cpu)("TraceCPUTime: os::getTimesSecs() returned invalid result");
50 bool valid = os::getTimesSecs(&real_time, &user_time, &system_time);
57 log_warning(gc, cpu)("TraceCPUTime: os::getTimesSecs() returned invalid result");
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/fmt/
H A DJSerializedObject.java55 protected void build( OutputStream os ) throws IOException {
57 ObjectOutputStream oos = new ObjectOutputStream(os);
/openjdk10/jdk/test/java/awt/FontClass/
H A DAppleFontNameTest.java27 * @requires (os.family == "mac")
46 String os = System.getProperty("os.name");
47 if (!(os.startsWith("Mac"))) {
/openjdk10/nashorn/test/script/nosecurity/
H A DJDK-8050964.js49 var os = System.getProperty("os.name"), variable
50 win = os.startsWith("Windows"),
H A DJDK-8130127.js37 os = System.getProperty("os.name"),
38 win = os.startsWith("Windows"),
/openjdk10/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp33 #include "runtime/os.hpp"
58 char* mapAddress = os::reserve_memory(size);
65 if (!os::commit_memory(mapAddress, size, !ExecMem)) {
69 os::release_memory(mapAddress, size);
90 // Note: this function might be called from signal handler (by os::abort()),
105 destfile, os::strerror(errno));
116 destfile, os::strerror(errno));
128 warning("Could not close %s: %s\n", destfile, os::strerror(errno));
156 const char* tmpdir = os::get_temp_directory();
314 warning("could not open directory %s: %s\n", dirname, os
[all...]
/openjdk10/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp84 // os::Solaris::fetch_frame_from_ucontext() tries to skip nested
86 // same as os::fetch_frame_from_context().
87 ExtendedPC os::Linux::fetch_frame_from_ucontext(Thread* thread,
95 return os::fetch_frame_from_context(uc, ret_sp, ret_fp);
98 ExtendedPC os::fetch_frame_from_context(const void* ucVoid,
105 epc = ExtendedPC(os::Linux::ucontext_get_pc(uc));
107 *ret_sp = os::Linux::ucontext_get_sp(uc);
126 frame os::fetch_frame_from_context(const void* ucVoid) {
132 frame os::get_sender_for_C_frame(frame* fr) {
136 frame os
[all...]
/openjdk10/hotspot/src/share/vm/runtime/
H A Dos.cpp54 #include "runtime/os.inline.hpp"
70 OSThread* os::_starting_thread = NULL;
71 address os::_polling_page = NULL;
72 volatile int32_t* os::_mem_serialize_page = NULL;
73 uintptr_t os::_serialize_page_mask = 0;
74 volatile unsigned int os::_rand_seed = 1;
75 int os::_processor_count = 0;
76 int os::_initial_active_processor_count = 0;
77 size_t os::_page_sizes[os
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPProfileTemplateImpl.java124 public void write( ObjectKeyTemplate okeyTemplate, ObjectId id, OutputStream os) argument
126 giopVersion.write( os ) ;
127 primary.write( os ) ;
136 (ORB)os.orb(), ((CDROutputStream)os).isLittleEndian() ) ;
139 EncapsulationUtility.writeOutputStream( encapsulatedOS, os ) ;
142 EncapsulationUtility.writeIdentifiableSequence( this, os ) ;
147 public void writeContents( OutputStream os) argument
149 giopVersion.write( os ) ;
150 primary.write( os ) ;
[all...]
/openjdk10/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp280 address os::current_stack_pointer() {
295 char* os::non_memory_address_word() {
303 void os::initialize_thread(Thread* thr) {
307 address os::Bsd::ucontext_get_pc(const ucontext_t * uc) {
311 void os::Bsd::ucontext_set_pc(ucontext_t * uc, address pc) {
315 intptr_t* os::Bsd::ucontext_get_sp(const ucontext_t * uc) {
319 intptr_t* os::Bsd::ucontext_get_fp(const ucontext_t * uc) {
325 // os::Solaris::fetch_frame_from_ucontext() tries to skip nested signal
327 // os::fetch_frame_from_context().
329 ExtendedPC os
[all...]
H A Dos_bsd_x86.inline.hpp28 #include "runtime/os.hpp"
31 inline jlong os::rdtsc() {
/openjdk10/hotspot/src/os/solaris/vm/
H A DosThread_solaris.cpp28 #include "runtime/os.hpp"
52 os::Solaris::SR_handler(thread, uc);
/openjdk10/hotspot/src/os_cpu/linux_aarch64/vm/
H A Dos_linux_aarch64.inline.hpp29 #include "runtime/os.hpp"
32 inline jlong os::rdtsc() {
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.inline.hpp28 #include "runtime/os.hpp"
31 inline jlong os::rdtsc() {
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DORBVersion.java41 void write( OutputStream os ) ;
/openjdk10/hotspot/src/os/aix/vm/
H A Dloadlib_aix.hpp100 static void print(outputStream* os);
/openjdk10/hotspot/src/os_cpu/solaris_x86/vm/
H A DorderAccess_solaris_x86.inline.hpp30 #include "runtime/os.hpp"
51 if (os::is_MP()) {
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMultipartDataContentHandler.java88 public void writeTo(Object obj, String mimeType, OutputStream os) argument
95 if (os instanceof ByteOutputStream) {
96 baos = (ByteOutputStream)os;
99 os.getClass().getName());
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJResourceFile.java64 protected abstract void build( OutputStream os ) throws IOException;
/openjdk10/hotspot/src/share/vm/logging/
H A DlogOutput.cpp31 #include "runtime/os.inline.hpp"
34 os::free(_config_string);
38 os::free(_config_string);
45 os::free(_config_string);
46 _config_string = os::strdup(string, mtLogging);
/openjdk10/jdk/make/src/classes/build/tools/charsetmapping/
H A DCharset.java34 String os; field in class:Charset
/openjdk10/jdk/test/com/sun/net/httpserver/bugs/
H A DB6526913.java91 OutputStream os = t.getResponseBody();
93 os.write (bb);
94 os.flush();
98 os.close();
/openjdk10/jdk/test/sun/net/www/http/HttpClient/
H A DB7025238.java95 OutputStream os = exchange.getResponseBody();
97 os.write(str.getBytes());
98 os.flush();
99 os.close();
/openjdk10/jdk/test/sun/net/www/http/KeepAliveStream/
H A DKeepAliveStreamCloseWithWrongContentLength.java40 OutputStream os; field in class:KeepAliveStreamCloseWithWrongContentLength.XServer
56 new OutputStreamWriter((os = s.getOutputStream()));
72 try {if (os != null) { os.close(); }} catch (IOException e) {}
H A DKeepAliveStreamClose.java39 OutputStream os; field in class:KeepAliveStreamClose.XServer
58 os = s.getOutputStream ();
63 os.write (response.getBytes());
65 os.write ("X".getBytes());

Completed in 152 milliseconds

1234567891011>>