Searched refs:tid (Results 26 - 45 of 45) sorted by relevance

12

/openjdk10/hotspot/src/os/linux/vm/
H A Dos_linux.hpp198 static int pthread_getcpuclockid(pthread_t tid, clockid_t *clock_id) { argument
199 return _pthread_getcpuclockid ? _pthread_getcpuclockid(tid, clock_id) : -1;
H A Dos_linux.cpp636 log_info(os, thread)("Thread is alive (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
668 log_info(os, thread)("Thread finished (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
730 pthread_t tid; local
731 int ret = pthread_create(&tid, &attr, (void* (*)(void*)) thread_native_entry, thread);
736 (uintx) tid, os::Posix::describe_pthread_attr(buf, sizeof(buf), &attr));
752 osthread->set_pthread_id(tid);
841 log_info(os, thread)("Thread attached (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
5351 pthread_t tid = thread->osthread()->pthread_id();
5355 int rc = os::Linux::pthread_getcpuclockid(tid, &clockid);
5403 pid_t tid
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DThread.java205 private long tid; field in class:Thread
464 tid = nextThreadID();
1800 return tid;
/openjdk10/jdk/src/java.base/macosx/native/libjli/
H A Djava_md_macosx.c725 pthread_t tid; local
735 if (pthread_create(&tid, &attr, (void *(*)(void*))continuation, (void*)args) == 0) {
737 pthread_join(tid, &tmp);
/openjdk10/hotspot/src/share/vm/services/
H A Dmanagement.cpp437 jlong tid = ids_ah->long_at(i); local
438 if (tid <= 0) {
1031 jlong tid = ids_ah->long_at(i); local
1032 JavaThread* jt = Threads::find_java_thread_from_java_tid(tid);
1108 jlong tid = ids_ah->long_at(i); variable
1109 JavaThread* jt = Threads::find_java_thread_from_java_tid(tid);
1315 jlong tid = obj.j; variable
1316 if (tid < 0) {
1320 // Look for the JavaThread of this given tid
1322 if (tid
[all...]
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DJShellTool.java228 // Tool id (tid) mapping: the three name spaces
233 // Tool id (tid) mapping: the current name spaces
1026 ? currentNameSpace.tid(sn)
1027 : errorNamespace.tid(sn))
2445 String tid = arg.substring(dash + 1);
2450 int tidx = snippetIndex(tid);
2455 errormsg("jshell.err.end.snippet.range.less.than.start", iid, tid);
3505 String tid(Snippet sn) { method in class:JShellTool.NameSpace
3506 String tid = prefix + nextNum++;
3507 mapSnippet.put(sn, new SnippetInfo(sn, this, tid));
3519 final String tid; field in class:JShellTool.SnippetInfo
3521 SnippetInfo(Snippet snippet, NameSpace space, String tid) argument
[all...]
/openjdk10/hotspot/src/os/aix/vm/
H A Dporting_aix.cpp826 pthread_t tid = pthread_self(); local
833 const int rc = pthread_getthrds_np(&tid, PTHRDSINFO_QUERY_ALL, &pinfo,
H A Dos_aix.cpp773 log_info(os, thread)("Thread is alive (tid: " UINTX_FORMAT ", kernel thread id: " UINTX_FORMAT ").",
816 log_info(os, thread)("Thread finished (tid: " UINTX_FORMAT ", kernel thread id: " UINTX_FORMAT ").",
880 pthread_t tid = 0; local
882 ret = pthread_create(&tid, &attr, (void* (*)(void*)) thread_native_entry, thread);
888 (uintx) tid, os::Posix::describe_pthread_attr(buf, sizeof(buf), &attr));
905 osthread->set_thread_id(tid);
959 log_info(os, thread)("Thread attached (tid: " UINTX_FORMAT ", kernel thread id: " UINTX_FORMAT ").",
3930 tid64_t tid = 0; local
3938 tid = pinfo.__pi_tid;
3947 if (getthrds64(getpid(), &thrdentry, sizeof(thrdentry), &tid,
[all...]
/openjdk10/jdk/src/java.management/share/classes/sun/management/
H A DThreadImpl.java502 // tid == 0 to reset contention times for all threads
503 private static native void resetContentionTimes0(long tid); argument
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DcompactibleFreeListSpace.hpp697 void retire(int tid);
H A DparNewGeneration.cpp1347 Thread* tid = Thread::current(); local
1353 os::sleep(tid, sleep_time_millis, false);
H A DcompactibleFreeListSpace.cpp2543 void CompactibleFreeListSpaceLAB::retire(int tid) { argument
2572 tid, i, num_retire, _num_blocks[i], (size_t)_blocks_to_claim[i].average());
H A DconcurrentMarkSweepGeneration.cpp7857 Thread* tid = Thread::current();
7865 os::sleep(tid, sleep_time_millis, false);
/openjdk10/hotspot/src/jdk.hotspot.agent/solaris/native/libsaproc/
H A Dsaproc.cpp929 (JNIEnv *env, jobject this_obj, jlong tid) {
939 if (p_td_ta_map_id2thr(p_td_thragent_t, (thread_t) tid, &thr_handle) != TD_OK) {
928 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_getThreadIntegerRegisterSet0(JNIEnv *env, jobject this_obj, jlong tid) argument
/openjdk10/hotspot/src/share/vm/gc/g1/
H A DheapRegionRemSet.cpp358 void OtherRegionsTable::add_reference(OopOrNarrowOopStar from, uint tid) { argument
363 if (G1FromCardCache::contains_or_replace(tid, cur_hrm_ind, from_card)) {
/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/
H A DForkJoinPool.java1360 int tid = 0; // for thread name
1369 tid = s & m;
1405 wt.setName(prefix.concat(Integer.toString(tid)));
/openjdk10/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp675 log_info(os, thread)("Thread is alive (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
713 log_info(os, thread)("Thread finished (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
759 pthread_t tid; local
760 int ret = pthread_create(&tid, &attr, (void* (*)(void*)) thread_native_entry, thread);
765 (uintx) tid, os::Posix::describe_pthread_attr(buf, sizeof(buf), &attr));
781 osthread->set_pthread_id(tid);
850 log_info(os, thread)("Thread attached (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
/openjdk10/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp730 log_info(os, thread)("Thread is alive (tid: " UINTX_FORMAT ").",
772 log_info(os, thread)("Thread finished (tid: " UINTX_FORMAT ").", os::current_thread_id());
855 log_info(os, thread)("Thread attached (tid: " UINTX_FORMAT ").",
971 thread_t tid = 0; local
980 status = thr_create(NULL, stack_size, thread_native_entry, thread, flags, &tid);
984 log_info(os, thread)("Thread started (tid: " UINTX_FORMAT ", attributes: %s). ",
985 (uintx) tid, describe_thr_create_attributes(buf, sizeof(buf), stack_size, flags));
1001 osthread->set_thread_id(tid);
/openjdk10/hotspot/src/os/windows/vm/
H A Dos_windows.cpp413 log_info(os, thread)("Thread is alive (tid: " UINTX_FORMAT ").", os::current_thread_id());
425 log_info(os, thread)("Thread finished (tid: " UINTX_FORMAT ").", os::current_thread_id());
500 log_info(os, thread)("Thread attached (tid: " UINTX_FORMAT ").",
622 log_info(os, thread)("Thread started (tid: %u, attributes: %s)",
5159 // from the tid. Caller validates handle return value.
5161 OSThread::thread_id_t tid) {
5163 *h = OpenThread(THREAD_SUSPEND_RESUME | THREAD_GET_CONTEXT | THREAD_QUERY_INFORMATION, FALSE, tid);
5160 get_thread_handle_for_extended_context(HANDLE* h, OSThread::thread_id_t tid) argument
/openjdk10/nashorn/test/script/basic/
H A DJDK-8017084.js13789 tid: 13758,

Completed in 314 milliseconds

12