/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/ |
H A D | threadLS_solaris_x86.cpp | 109 int rslt ; local 122 rslt = (*tssa)(&off, NULL, NULL) ; // (off,dtor,darg) 130 rslt = thr_keycreate (&tlsKey, NULL) ; 131 if (rslt != 0) {
|
/openjdk7/hotspot/agent/src/os/bsd/ |
H A D | ps_proc.c | 59 int rslt; local 65 char *ptr = (char *)&rslt; 67 rslt = ptrace(PT_READ_D, ph->pid, (caddr_t) aligned_addr, 0); 83 rslt = ptrace(PT_READ_D, ph->pid, (caddr_t) aligned_addr, 0); 88 *(int *)buf = rslt; 94 char *ptr = (char *)&rslt; 96 rslt = ptrace(PT_READ_D, ph->pid, (caddr_t) aligned_addr, 0);
|
H A D | symtab.c | 228 uintptr_t rslt = (uintptr_t) ((char*)base + sym->offset); local 230 return rslt;
|
/openjdk7/hotspot/agent/src/os/linux/ |
H A D | ps_proc.c | 58 long rslt; local 64 char *ptr = (char *)&rslt; 66 rslt = ptrace(PTRACE_PEEKDATA, ph->pid, aligned_addr, 0); 82 rslt = ptrace(PTRACE_PEEKDATA, ph->pid, aligned_addr, 0); 87 *(long *)buf = rslt; 93 char *ptr = (char *)&rslt; 95 rslt = ptrace(PTRACE_PEEKDATA, ph->pid, aligned_addr, 0); 249 char * rslt = fgets(buf, n, fp); local 250 if (rslt && buf && *buf){ 254 return rslt; [all...] |
H A D | symtab.c | 378 int j, n, rslt; local 399 rslt = hcreate_r(n, symtab->hash_table); 400 // guarantee(rslt, "unexpected failure: hcreate_r"); 520 uintptr_t rslt = (uintptr_t) ((char*)base + sym->offset); local 523 return rslt;
|
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/ |
H A D | os_bsd_zero.cpp | 333 int rslt = pthread_stackseg_np(pthread_self(), &ss); local 335 if (rslt != 0) 337 rslt)); 345 int rslt = pthread_attr_init(&attr); local 348 if (rslt != 0) 349 fatal(err_msg("pthread_attr_init failed with err = " INT32_FORMAT, rslt)); 351 rslt = pthread_attr_get_np(pthread_self(), &attr); 353 if (rslt != 0) 355 rslt));
|
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/ |
H A D | os_linux_x86.cpp | 709 int rslt = pthread_getattr_np(pthread_self(), &attr); local 712 if (rslt != 0) { 713 if (rslt == ENOMEM) { 716 fatal(err_msg("pthread_getattr_np failed with errno = %d", rslt));
|
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/ |
H A D | os_linux_sparc.cpp | 176 int rslt = pthread_getattr_np(pthread_self(), &attr); local 179 if (rslt != 0) { 180 if (rslt == ENOMEM) { 183 fatal(err_msg("pthread_getattr_np failed with errno = %d", rslt));
|
/openjdk7/jdk/src/solaris/bin/ |
H A D | java_md_solinux.c | 983 int rslt; local 990 rslt = (int)tmp; 993 rslt = continuation(args); 1008 rslt = (int)tmp; 1016 rslt = continuation(args); 1021 return rslt;
|
/openjdk7/hotspot/src/os/windows/launcher/ |
H A D | java_md.c | 1336 int rslt = 0; local 1401 GetExitCodeThread(thread_handle, &rslt); 1404 rslt = continuation(args); 1413 return rslt;
|
/openjdk7/jdk/src/macosx/bin/ |
H A D | java_md_macosx.c | 847 int rslt; local 860 rslt = (int)tmp; 868 rslt = continuation(args); 872 return rslt; 1044 int rslt; local 1051 rslt = [launcher getReturnValue]; 1054 return rslt;
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciTypeFlow.cpp | 2180 bool rslt = false; local 2217 rslt = true; 2219 return rslt;
|
/openjdk7/hotspot/src/os/posix/launcher/ |
H A D | java_md.c | 1889 int rslt; local 1903 rslt = (int)(intptr_t)tmp; 1911 rslt = continuation(args); 1921 rslt = (int)(intptr_t)tmp; 1924 rslt = continuation(args); 1927 return rslt;
|
/openjdk7/jdk/src/share/bin/ |
H A D | java.c | 1852 int rslt; local 1860 rslt = ContinueInNewThread0(JavaMain, threadStackSize, (void*)&args); 1865 return (ret != 0) ? ret : rslt;
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | objectMonitor.cpp | 2434 int rslt = v ? ::strtol (v, NULL, 0) : Default ; local 2436 ::printf (" SyncKnob: %s %d(%d)\n", Key, rslt, Default) ; 2439 return rslt ;
|
/openjdk7/jdk/src/windows/bin/ |
H A D | java_md.c | 1144 int rslt = 0; local 1209 GetExitCodeThread(thread_handle, &rslt); 1212 rslt = continuation(args); 1221 return rslt;
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | superword.cpp | 1004 Node_List* rslt = NULL; local
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | os_bsd.cpp | 316 int rslt = syscall(SYS_gettid); local 317 if (rslt == -1) { 321 return (pid_t)rslt; 1290 int rslt = pthread_key_create(&key, NULL); local 1291 assert(rslt == 0, "cannot allocate thread local storage"); 1298 int rslt = pthread_key_delete((pthread_key_t)index); local 1299 assert(rslt == 0, "invalid index"); 1303 int rslt = pthread_setspecific((pthread_key_t)index, value); local 1304 assert(rslt == 0, "pthread_setspecific failed"); 2074 int rslt local 3478 int rslt = shmdt(base); local [all...] |
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | os_linux.cpp | 309 int rslt = syscall(SYS_gettid); local 310 if (rslt == -1) { 314 return (pid_t)rslt; 1099 int rslt = pthread_key_create(&key, NULL); local 1100 assert(rslt == 0, "cannot allocate thread local storage"); 1107 int rslt = pthread_key_delete((pthread_key_t)index); local 1108 assert(rslt == 0, "invalid index"); 1112 int rslt = pthread_setspecific((pthread_key_t)index, value); local 1113 assert(rslt == 0, "pthread_setspecific failed"); 1804 int rslt local 3400 int rslt = shmdt(base); local [all...] |
/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | os_solaris.cpp | 3567 int rslt = shmdt(base); local 3568 if (rslt == 0) { 3894 int rslt; local 3933 rslt = (*priocntl_ptr)(PC_VERSION, P_ALL, 0, PC_GETCID, (caddr_t)&ClassInfo); 3934 if (rslt < 0) return errno; 3942 rslt = (*priocntl_ptr)(PC_VERSION, P_ALL, 0, PC_GETCID, (caddr_t)&ClassInfo); 3943 if (rslt < 0) return errno; 3951 rslt = (*priocntl_ptr)(PC_VERSION, P_ALL, 0, PC_GETCID, (caddr_t)&ClassInfo); 3952 if (rslt < 0) return errno; 3960 rslt 4053 int rslt; local [all...] |
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | os_windows.cpp | 4838 BOOL rslt = CreateProcess(NULL, // executable name - use command line local 4849 if (rslt) {
|