Searched refs:stat (Results 51 - 75 of 101) sorted by relevance

12345

/openjdk7/jdk/src/solaris/bin/
H A Djexec.c81 # include <sys/stat.h>
H A Djava_md_common.c67 struct stat sb;
68 if (stat(name, &sb) != 0) return 0;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp207 struct stat st;
208 if (os::stat(path, &st) == 0) {
287 LazyClassPathEntry::LazyClassPathEntry(char* path, struct stat st) : ClassPathEntry() {
468 void ClassLoader::create_class_path_entry(char *path, struct stat st, ClassPathEntry **new_entry, bool lazy) {
524 struct stat st;
525 if (os::stat(path, &st) == 0) {
577 struct stat st;
578 if (os::stat((char *)path, &st) == 0) {
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c34 #include <sys/stat.h>
307 struct stat s;
312 if (stat(javadll, &s) == 0) {
319 if (stat(javadll, &s) == 0) {
346 struct stat s;
353 if (stat(jvmpath, &s) == 0) {
/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/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java784 int stat = http.getResponseCode();
785 if (stat >= 300 && stat <= 307 && stat != 306 &&
786 stat != HttpURLConnection.HTTP_NOT_MODIFIED) {
2313 int stat = getResponseCode();
2314 if (stat < 300 || stat > 307 || stat == 306
2315 || stat
[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...]
H A DattachListener_linux.cpp36 #include <sys/stat.h>
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c35 #include <sys/stat.h>
653 struct stat s;
684 if (stat(jvmpath, &s) == 0) {
883 struct stat sb;
884 if (stat(name, &sb) != 0) return 0;
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c35 #include <sys/stat.h>
581 struct stat s;
596 if (stat(jvmpath, &s) == 0) {
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCFileDialog.m26 #import <sys/stat.h>
/openjdk7/jdk/src/solaris/native/java/io/
H A DUnixFileSystem_md.c29 #include <sys/stat.h>
48 #define stat64 stat
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileChannelImpl.c32 #include <sys/stat.h>
H A DFileDispatcherImpl.c41 #define stat64 stat
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DSolarisVirtualMachine.c26 #include <sys/stat.h>
/openjdk7/jdk/src/windows/demo/jvmti/hprof/
H A Dhprof_md.c47 #include <sys/stat.h>
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java66 UnixNativeDispatcher.stat(path, attrs);
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/
H A Dhprof_md.c42 #include <sys/stat.h>
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp643 struct stat buf;
644 if (os::stat(default_cc_file, &buf) == 0) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp607 static int stat(const char* path, struct stat* sbuf);
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp1428 // For PEAK_POOL_USAGE stat, obj is required to be a memory pool object.
1429 // For THREAD_CONTENTION_COUNT and TIME stat, obj is required to be a thread ID.
2059 GCStatInfo stat(num_pools);
2060 if (mgr->get_last_gc_stat(&stat) == 0) {
2065 gc_stat->gc_index = stat.gc_index();
2066 gc_stat->start_time = Management::ticks_to_ms(stat.start_time());
2067 gc_stat->end_time = Management::ticks_to_ms(stat.end_time());
2085 Handle before_usage = MemoryService::create_MemoryUsage_obj(stat.before_gc_usage_for_pool(i), CHECK);
2088 MemoryUsage u = stat.after_gc_usage_for_pool(i);
2095 after_usage = MemoryService::create_MemoryUsage_obj(stat
[all...]
/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/hotspot/src/os/bsd/dtrace/
H A Djvm_dtrace.c36 #include <sys/stat.h>
158 print_debug("stat failed for %s\n", path);
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djvm_dtrace.c36 #include <sys/stat.h>
158 print_debug("stat failed for %s\n", path);
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c27 #include <sys/stat.h>

Completed in 243 milliseconds

12345