Searched refs:os (Results 276 - 300 of 680) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/os/linux/vm/
H A DosThread_linux.hpp80 os::SuspendResume sr;
/openjdk7/hotspot/src/os/solaris/vm/
H A DosThread_solaris.hpp75 os::SuspendResume sr;
H A DattachListener_solaris.cpp27 #include "runtime/os.hpp"
386 os::get_temp_directory(), os::current_process_id());
436 int status = os::Solaris::mutex_init(&_mutex);
462 res = os::Solaris::mutex_lock(mutex());
475 os::Solaris::mutex_unlock(mutex());
487 int res = os::Solaris::mutex_lock(mutex());
504 os::Solaris::mutex_unlock(mutex());
612 sprintf(fn, ".attach_pid%d", os::current_process_id());
618 os
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp54 char* mapAddress = os::reserve_memory(size);
61 if (!os::commit_memory(mapAddress, size, !ExecMem)) {
65 os::release_memory(mapAddress, size);
145 // os::get_temp_directory() in os_win32.cpp), control the location of the
158 const char* tmpdir = os::get_temp_directory();
305 const char* tmpdirname = os::get_temp_directory();
307 DIR* tmpdirp = os::opendir(tmpdirname);
319 char* tdbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(tmpdirname), mtInternal);
321 while ((dentry = os::readdir(tmpdirp, (struct dirent *)tdbuf)) != NULL) {
334 DIR* subdirp = os
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjniCheck.hpp39 os::abort(true);
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.cpp31 #include "runtime/os.hpp"
87 os::vm_allocation_granularity());
91 " os::vm_allocation_granularity = " SIZE_FORMAT ","
94 os::vm_allocation_granularity(),
236 _prologue->mod_time_stamp = os::elapsed_counter();
262 "%s_%d", PERFDATA_NAME, os::current_process_id());
H A Dvm_version.cpp84 char* vm_version = os::strdup(HOTSPOT_RELEASE_VERSION);
103 os::free(vm_version);
275 os::print_cpu_info(tty);
292 unsigned int ncpus = (unsigned int) os::active_processor_count();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DFastInfosetReflection.java167 OutputStream os) throws Exception
172 fiDOMDocumentSerializer_setOutputStream.invoke(serializer, new Object[] { os });
223 public static Result FastInfosetResult_new(OutputStream os) argument
229 return (Result) fiFastInfosetResult_new.newInstance(new Object[] { os });
166 DOMDocumentSerializer_setOutputStream(Object serializer, OutputStream os) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DStreamSerializer.java179 private static XMLWriter createWriter(OutputStream os, String encoding) throws UnsupportedEncodingException { argument
180 XMLWriter writer = createWriter(new OutputStreamWriter(os,encoding));
185 private static XMLWriter createWriter(OutputStream os) { argument
187 return createWriter(os,"UTF-8");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DAttachment.java81 void writeTo(OutputStream os) throws IOException; argument
/openjdk7/jdk/test/com/sun/jndi/ldap/
H A DBalancedParentheses.java68 OutputStream os = socket.getOutputStream();
80 os.write(bindResponse);
81 os.flush();
90 os.close();
H A DInvalidLdapFilters.java125 OutputStream os = socket.getOutputStream();
137 os.write(bindResponse);
138 os.flush();
147 os.close();
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSHeader.java216 * @param os the OutputStream to which the token should be written.
220 public int encode(OutputStream os) throws IOException { argument
222 os.write(TOKEN_ID);
224 retVal += putLength(length, os);
225 os.write(mechOidBytes);
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dassembler_linux_x86.cpp28 #include "runtime/os.hpp"
33 call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
71 call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DConnectionFilter.java66 for (OutputSlot os : f.getOutputSlots()) {
67 for (Connection c : os.getConnections()) {
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.hpp73 _vm_init_done_time->set_value(os::javaTimeMillis());
111 { _timer.update_to(0); _begin_time = os::javaTimeMillis(); }
116 * os::shutdown() when there was an initialization failure).
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DXmlDataContentHandler.java99 public void writeTo(Object obj, String mimeType, OutputStream os) argument
108 StreamResult result = new StreamResult(os);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/
H A DAsyncSSLSocketClose.java108 OutputStream os = socket.getOutputStream();
113 os.write(ba);
/openjdk7/langtools/test/tools/apt/Compile/
H A DClassDeclApf2.java72 void drain(InputStream is, OutputStream os) { argument
75 os.write(is.read());
/openjdk7/langtools/test/tools/apt/Discovery/
H A DTouch.java71 OutputStream os = filer.createClassFile("Empty");
75 os.write(datum);
/openjdk7/jdk/test/java/util/zip/
H A DInfoZip.java88 try (OutputStream os = new FileOutputStream(f)) {
89 os.write(new byte[]
/openjdk7/jdk/test/sun/java2d/SunGraphicsEnvironment/
H A DTestSGEuseAlternateFontforJALocales.java51 String os = System.getProperty("os.name");
55 if (!os.startsWith("Win") && jaTest) {
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DRetryPost.java114 OutputStream os = t.getResponseBody();
115 os.close();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DReflectiveTie.java147 OutputStream os = (OutputStream)reply.createReply() ;
149 dmm.writeResult( os, result ) ;
151 return os ;
169 OutputStream os = (OutputStream)reply.createExceptionReply() ;
170 dmm.writeException( os, (Exception)thr ) ;
171 return os ;
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DApacheCanonicalizer.java98 public Data canonicalize(Data data, XMLCryptoContext xc, OutputStream os) argument
115 if (os != null) {
116 apacheCanonicalizer.setWriter(os);
181 public Data transform(Data data, XMLCryptoContext xc, OutputStream os) argument
186 if (os == null) {
241 in = apacheTransform.performTransform(in, os);

Completed in 93 milliseconds

<<11121314151617181920>>