Searched defs:stat (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCheckContext.java49 CheckContext(Context ctx, Statement stat) { argument
50 super(ctx, stat);
/openjdk7/langtools/test/tools/javac/6402516/
H A DTestIsAccessible.java34 String s3 = "Test2 Test2#stat yes";
43 static int stat; field in class:Test2
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/
H A DMessage1_1Impl.java68 public Message1_1Impl(MimeHeaders headers, ContentType ct, int stat, InputStream in) argument
70 super(headers,ct,stat,in);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DMessage1_2Impl.java61 public Message1_2Impl(MimeHeaders headers, ContentType ct, int stat, InputStream in) argument
63 super(headers,ct,stat,in);
/openjdk7/hotspot/src/share/vm/services/
H A DgcNotifier.cpp47 // stat is deallocated inside GCNotificationRequest
48 GCStatInfo* stat = new(ResourceObj::C_HEAP, mtGC) GCStatInfo(num_pools); local
49 mgr->get_last_gc_stat(stat);
50 GCNotificationRequest *request = new GCNotificationRequest(os::javaTimeMillis(),mgr,action,cause,stat);
H A DthreadService.cpp276 ThreadStatistics* stat = thread->get_thread_stat(); local
277 if (stat != NULL) {
278 stat->reset_count_stat();
283 ThreadStatistics* stat = thread->get_thread_stat(); local
284 if (stat != NULL) {
285 stat->reset_time_stat();
727 ThreadStatistics* stat = thread->get_thread_stat(); local
728 _contended_enter_ticks = stat->contended_enter_ticks();
729 _contended_enter_count = stat->contended_enter_count();
730 _monitor_wait_ticks = stat
[all...]
H A DthreadService.hpp508 ThreadStatistics* stat = java_thread->get_thread_stat(); local
509 stat->contended_enter();
512 stat->contended_enter_begin();
542 // thread status is not changed and contended enter stat is not collected.
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DLinuxVirtualMachine.c40 #include <sys/stat.h>
97 char stat[2048]; local
104 * try to open /proc/%d/stat
106 sprintf(fn, "/proc/%d/stat", pid);
117 statlen = fread(stat, 1, 2047, fp);
118 stat[statlen] = '\0';
120 s = strrchr(stat, ')');
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.java335 private Env<AttrContext> attribStatToTree(JCTree stat, Env<AttrContext>env, JCTree tree) { argument
338 return attr.attribStatToTree(stat, env, tree);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeInfo.java127 public static boolean isSyntheticInit(JCTree stat) { argument
128 if (stat.getTag() == JCTree.EXEC) {
129 JCExpressionStatement exec = (JCExpressionStatement)stat;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageImpl.java230 * @param stat
233 protected static boolean isSoap1_1Content(int stat) { argument
234 return (stat & SOAP1_1_FLAG) != 0;
238 * @param stat
241 protected static boolean isSoap1_2Content(int stat) { argument
242 return (stat & SOAP1_2_FLAG) != 0;
334 * @param stat
339 protected MessageImpl(MimeHeaders headers, final ContentType contentType, int stat, final InputStream in) throws SOAPExceptionImpl { argument
340 init(headers, stat, contentType, in);
344 private void init(MimeHeaders headers, int stat, fina argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixNativeDispatcher.java281 * stat(const char* path, struct stat* buf)
283 static void stat(UnixPath path, UnixFileAttributes attrs) throws UnixException { method in class:UnixNativeDispatcher
295 * lstat(const char* path, struct stat* buf)
309 * fstat(int filedes, struct stat* buf)
314 * fstatat(int filedes,const char* path, struct stat* buf, int flag)
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp90 # include <sys/stat.h>
100 # include <sys/stat.h>
1391 // Bsd kernel saves start_stack information in /proc/<pid>/stat. Similar
1394 // program, so reading /proc/<pid>/stat could fail. Also the contents of
1395 // /proc/<pid>/stat could change in the future (though unlikely).
1398 // /proc/<pid>/stat. If neither of them works, we use current stack pointer
1408 // see if we can get the start_stack field from /proc/self/stat
1439 // by email from Hans Boehm. /proc/self/stat begins with current pid,
1441 char stat[2048]; local
1444 fp = fopen("/proc/self/stat", "
5058 int os::stat(const char *path, struct stat *sbuf) { function in class:os
5387 char stat[2048]; local
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp92 # include <sys/stat.h>
102 # include <sys/stat.h>
1199 // Linux kernel saves start_stack information in /proc/<pid>/stat. Similar
1202 // program, so reading /proc/<pid>/stat could fail. Also the contents of
1203 // /proc/<pid>/stat could change in the future (though unlikely).
1206 // /proc/<pid>/stat. If neither of them works, we use current stack pointer
1216 // see if we can get the start_stack field from /proc/self/stat
1247 // by email from Hans Boehm. /proc/self/stat begins with current pid,
1249 char stat[2048]; local
1252 fp = fopen("/proc/self/stat", "
4845 int os::stat(const char *path, struct stat *sbuf) { function in class:os
5133 char stat[2048]; local
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp99 # include <sys/stat.h>
1892 struct stat statbuf;
1896 return os::stat(filename, &statbuf) == 0;
2215 int os::stat(const char *path, struct stat *sbuf) { function in class:os
2222 return ::stat(pathbuf, sbuf);
5839 struct stat buf;
5841 while (::stat(filename, &buf) == 0) {
6681 struct stat statbuf;
6704 if (::stat(libmawtpat
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp81 #include <sys/stat.h>
1038 * Win32 accepts "\" in its POSIX stat(), but refuses to treat it
3950 int os::stat(const char *path, struct stat *sbuf) { function in class:os
3957 int ret = ::stat(pathbuf, sbuf);
3959 // Fix for 6539723. st_mtime returned from stat() is dependent on
3973 // after the call to stat() but before 'GetTimeZoneInformation()', then
4600 struct stat buf;
4602 while (::stat(filename, &buf) == 0) {

Completed in 104 milliseconds