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

1234567891011>>

/openjdk7/hotspot/src/share/vm/trace/
H A DtraceBackend.hpp32 #include "runtime/os.hpp"
44 return os::elapsed_counter();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJResourceFile.java64 protected abstract void build( OutputStream os ) throws IOException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMultipartDataContentHandler.java81 public void writeTo(Object obj, String mimeType, OutputStream os) argument
88 if (os instanceof ByteOutputStream) {
89 baos = (ByteOutputStream)os;
92 os.getClass().getName());
/openjdk7/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();
/openjdk7/jdk/test/sun/net/www/http/KeepAliveStream/
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());
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) {}
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DOldJIDLObjectKeyTemplate.java105 protected void writeTemplate( OutputStream os )
107 os.write_long( getMagic() ) ;
108 os.write_long( getSubcontractId() ) ;
109 os.write_long( getServerId() ) ;
112 public void write(ObjectId objectId, OutputStream os) argument
114 super.write(objectId, os);
117 os.write_octet( patchVersion ) ;
H A DObjectKeyImpl.java83 public void write( OutputStream os )
85 oktemp.write( id, os ) ;
90 EncapsOutputStream os =
92 write( os ) ;
93 return os.toByteArray() ;
/openjdk7/hotspot/agent/make/
H A Dsaenv.sh38 SA_LIBPATH=$STARTDIR/../src/os/linux/ia64:$STARTDIR/linux/ia64
42 SA_LIBPATH=$STARTDIR/../src/os/linux/amd64:$STARTDIR/linux/amd64
46 SA_LIBPATH=$STARTDIR/../src/os/linux/i386:$STARTDIR/linux/i386
53 LD_AUDIT_32=$STARTDIR/../src/os/solaris/proc/`uname -p`/libsaproc_audit.so
61 SA_LIBPATH=$STARTDIR/../src/os/solaris/proc/`uname -p`:$STARTDIR/solaris/`uname -p`
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.inline.hpp28 #include "runtime/os.hpp"
56 char* p = (char*) os::malloc(size, flags, pc);
67 char* p = (char*) os::realloc(old, size, flags, CURRENT_PC);
80 os::free(p, memflags);
98 void* p = os::malloc(size, F, (caller_pc != 0 ? caller_pc : CALLER_PC));
102 return os::malloc(size, F, (caller_pc != 0 ? caller_pc : CALLER_PC));
119 if (_addr == NULL && _size >= (size_t)os::vm_allocation_granularity()) {
127 int alignment = os::vm_allocation_granularity();
130 _addr = os::reserve_memory(_size, NULL, alignment, F);
135 os
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DDataHandlerAttachment.java70 ByteArrayOutputStream os = new ByteArrayOutputStream();
71 dh.writeTo(os);
72 return os.toByteArray();
98 public void writeTo(OutputStream os) throws IOException { argument
99 dh.writeTo(os);
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DReadZip.java67 try (OutputStream os = Files.newOutputStream(newZip.toPath(),
69 os.write(1); os.write(3); os.write(5); os.write(7);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/mailto/
H A DMailToURLConnection.java46 OutputStream os = null; field in class:MailToURLConnection
92 if (os != null) {
93 return os;
103 os = client.startMessage();
104 return os;
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp87 size_t os::Solaris::min_stack_allowed = 128*K;
89 size_t os::Solaris::min_stack_allowed = 96*K;
92 int os::Solaris::max_register_window_saves_before_flushing() {
109 char* os::non_memory_address_word() {
122 bool os::Solaris::valid_ucontext(Thread* thread, ucontext_t* valid, ucontext_t* suspect) {
149 ucontext_t* os::Solaris::get_valid_uc_in_signal_handler(Thread *thread,
164 } else if (os::Solaris::valid_ucontext(thread, uc, uc->uc_link)) {
170 } else if (os::Solaris::valid_ucontext(thread, uc, uc->uc_link)) {
180 ExtendedPC os::Solaris::ucontext_get_ExtendedPC(ucontext_t *uc) {
187 intptr_t* os
[all...]
/openjdk7/jdk/test/java/net/Authenticator/
H A DBasicTest.java48 OutputStream os; field in class:BasicTest.BasicServer
80 os = s.getOutputStream();
81 os.write (reply1.getBytes());
88 os = s.getOutputStream();
89 os.write ((reply2+"HelloWorld").getBytes());
97 os = s.getOutputStream();
98 os.write (reply1.getBytes());
106 os = s.getOutputStream();
107 os.write ((reply2+"HelloAgain").getBytes());
/openjdk7/jdk/test/sun/net/www/http/ChunkedOutputStream/
H A DTest.java248 static void write(OutputStream os, String str) { argument
251 os.write(ba);
281 OutputStream os = urlc.getOutputStream ();
282 os.write (str1.getBytes());
283 os.close();
298 OutputStream os = urlc.getOutputStream ();
299 os.write (str2.getBytes());
300 os.close();
315 OutputStream os = urlc.getOutputStream ();
316 os
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DTestUTF_32.java74 private static void writeInt(OutputStream os, int i, boolean isBig) argument
78 os.write((i>>24) & 0xff);
79 os.write((i>>16) & 0xff);
80 os.write((i>>8) & 0xff);
81 os.write(i & 0xff);
83 os.write(i & 0xff);
84 os.write((i>>8) & 0xff);
85 os.write((i>>16) & 0xff);
86 os.write((i>>24) & 0xff);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMarkThread.cpp81 _vtime_start = os::elapsedVTime();
95 double cycle_start = os::elapsedVTime();
105 double scan_start = os::elapsedTime();
115 double scan_end = os::elapsedTime();
124 double mark_start_sec = os::elapsedTime();
138 double mark_end_time = os::elapsedVTime();
139 double mark_end_sec = os::elapsedTime();
143 double now = os::elapsedTime();
146 os::sleep(current_thread, sleep_time_ms, false);
173 double end_time = os
[all...]
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/http/ChunkedOutputStream/
H A DTest.java165 OutputStream os = urlc.getOutputStream ();
166 os.write (str1.getBytes());
167 os.close();
182 OutputStream os = urlc.getOutputStream ();
183 os.write (str2.getBytes());
184 os.close();
199 OutputStream os = urlc.getOutputStream ();
200 os.write (str2.getBytes());
202 os.close();
216 OutputStream os
[all...]
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest8a.java70 OutputStream os = new BufferedOutputStream (urlc.getOutputStream(), 8000);
72 os.write (i % 250);
74 os.close();
130 OutputStream os = new BufferedOutputStream(t.getResponseBody(), 8000);
132 os.write (i % 250);
134 os.close();
/openjdk7/jdk/test/sun/security/util/Oid/
H A DOidFormat.java126 DerOutputStream os = new DerOutputStream();
127 os.putOID(oid);
128 DerInputStream is = new DerInputStream(os.toByteArray());
141 DerOutputStream os = new DerOutputStream();
142 os.putOID(oid);
143 DerInputStream is = new DerInputStream(os.toByteArray());
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DChunkedErrorStream.java163 OutputStream os = t.getResponseBody();
168 os.write(b);
170 os.close();
192 OutputStream os = t.getResponseBody();
197 os.write(b);
199 os.close();
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java95 System.getProperty("os.name").startsWith("Windows");
116 try (OutputStream os = Files.newOutputStream(zfpath, CREATE_NEW, WRITE)) {
117 new END().write(os, 0);
511 try { // try to obtain a writelock when the os is
519 OutputStream os = getOutputStream(new Entry(e, Entry.NEW));
520 copyStream(is, os);
522 return os;
1138 OutputStream os,
1160 written = e.writeLOC(os) + size;
1162 os
1137 copyLOCEntry(Entry e, boolean updateHeader, OutputStream os, long written, byte[] buf) argument
1350 copyStream(InputStream is, OutputStream os) argument
1539 EntryOutputStream(Entry e, OutputStream os) argument
1684 write(OutputStream os, long offset) argument
1911 writeCEN(OutputStream os) argument
2090 writeLOC(OutputStream os) argument
2165 writeEXT(OutputStream os) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotAgent.java59 private String os; field in class:HotSpotAgent
104 " <os>/<arch>/bin/dbx\n" +
112 " <os>/<arch>/bin/lib/libsvc_agent_dbx.so\n" +
325 os = PlatformInfo.getOS();
333 if (os.equals("solaris")) {
335 } else if (os.equals("win32")) {
337 } else if (os.equals("linux")) {
339 } else if (os.equals("bsd")) {
343 throw new DebuggerException("Operating system " + os + " not yet supported");
384 if (os
[all...]
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp95 // os::Solaris::fetch_frame_from_ucontext() tries to skip nested
97 // same as os::fetch_frame_from_context().
98 ExtendedPC os::Linux::fetch_frame_from_ucontext(Thread* thread,
106 return os::fetch_frame_from_context(uc, ret_sp, ret_fp);
109 ExtendedPC os::fetch_frame_from_context(void* ucVoid,
116 epc = ExtendedPC(os::Linux::ucontext_get_pc(uc));
118 *ret_sp = os::Linux::ucontext_get_sp(uc);
121 *ret_fp = os::Linux::ucontext_get_fp(uc);
137 frame os::fetch_frame_from_context(void* ucVoid) {
144 frame os
[all...]

Completed in 103 milliseconds

1234567891011>>