Searched defs:thread_id (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
H A Djava_frame_root_info.h32 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg) argument
33 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) {
H A Dlock_word.h137 static LockWord FromThinLockId(uint32_t thread_id, uint32_t count, uint32_t gc_state) { argument
138 CHECK_LE(thread_id, static_cast<uint32_t>(kThinLockMaxOwner));
141 return LockWord((thread_id << kThinLockOwnerShift) |
H A Ddebugger.h81 : request_id(invoke_request_id), thread_id(invoke_thread_id), receiver(invoke_receiver),
92 const JDWP::ObjectId thread_id; member in struct:art::DebugInvokeReq
362 static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id,
366 static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id,
449 static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string* name)
451 static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply)
466 static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id,
470 static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id,
473 // static void WaitForSuspend(JDWP::ObjectId thread_id);
480 static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_
[all...]
H A Dthread_list.cc1018 uint32_t thread_id) {
1019 LOG(severity) << StringPrintf("%s: %d", message, thread_id);
1022 Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, argument
1030 CHECK_NE(thread_id, kInvalidThreadId);
1043 if (it->GetThreadId() == thread_id) {
1054 thread_id);
1089 name.c_str(), thread_id).c_str());
1098 thread_id);
1120 Thread* ThreadList::FindThreadByThreadId(uint32_t thread_id) { argument
1122 if (thread->GetThreadId() == thread_id) {
1016 ThreadSuspendByThreadIdWarning(LogSeverity severity, const char* message, uint32_t thread_id) argument
[all...]
H A Dmonitor.cc1029 uint32_t thread_id = self->GetThreadId(); local
1041 LockWord thin_locked(LockWord::FromThinLockId(thread_id, 0, lock_word.GCState()));
1050 if (owner_thread_id == thread_id) {
1055 LockWord thin_locked(LockWord::FromThinLockId(thread_id,
1143 uint32_t thread_id = self->GetThreadId(); local
1145 if (owner_thread_id != thread_id) {
1146 FailedUnlock(h_obj.Get(), thread_id, owner_thread_id, nullptr);
1153 new_lw = LockWord::FromThinLockId(thread_id, new_count, lock_word.GCState());
1211 uint32_t thread_id = self->GetThreadId(); local
1213 if (owner_thread_id != thread_id) {
1246 uint32_t thread_id = self->GetThreadId(); local
[all...]
H A Dthread.cc2340 void Thread::HandleScopeVisitRoots(RootVisitor* visitor, pid_t thread_id) { argument
2342 visitor, RootInfo(kRootNativeStack, thread_id));
3747 const pid_t thread_id = GetThreadId(); local
3748 visitor->VisitRootIfNonNull(&tlsPtr_.opeer, RootInfo(kRootThreadObject, thread_id));
3751 RootInfo(kRootNativeStack, thread_id));
3755 RootInfo(kRootNativeStack, thread_id));
3757 visitor->VisitRootIfNonNull(&tlsPtr_.monitor_enter_object, RootInfo(kRootNativeStack, thread_id));
3758 tlsPtr_.jni_env->VisitJniLocalRoots(visitor, RootInfo(kRootJNILocal, thread_id));
3759 tlsPtr_.jni_env->VisitMonitorRoots(visitor, RootInfo(kRootJNIMonitor, thread_id));
3760 HandleScopeVisitRoots(visitor, thread_id);
[all...]
H A Ddebugger.cc453 static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
457 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
885 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, argument
922 Thread* thread = DecodeThread(soa, thread_id, &error);
935 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, argument
940 Thread* thread = DecodeThread(soa, thread_id, &error);
2094 JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { argument
2097 DecodeThread(soa, thread_id, &error);
2103 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2114 JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDW argument
2310 GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) argument
2334 GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) argument
2346 Interrupt(JDWP::ObjectId thread_id) argument
2424 GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) argument
2439 GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf) argument
2515 SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) argument
2542 ResumeThread(JDWP::ObjectId thread_id) argument
2593 GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, JDWP::ObjectId* result) argument
2649 JDWP::ObjectId thread_id = request->ReadThreadId(); local
2820 JDWP::ObjectId thread_id = request->ReadThreadId(); local
3816 ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, JDWP::JdwpStepDepth step_depth) argument
3944 UnconfigureStep(JDWP::ObjectId thread_id) argument
3982 PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, JDWP::ObjectId object_id, JDWP::RefTypeId class_id, JDWP::MethodId method_id, uint32_t arg_count, uint64_t arg_values[], JDWP::JdwpTag* arg_types, uint32_t options) argument
[all...]
/art/runtime/jdwp/
H A Djdwp_handler.cc89 ObjectId thread_id, ObjectId object_id,
96 VLOG(jdwp) << StringPrintf(" --> thread_id=%#" PRIx64 " object_id=%#" PRIx64,
97 thread_id, object_id);
118 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id,
654 ObjectId thread_id = request->ReadThreadId(); local
657 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false);
671 ObjectId thread_id = request->ReadThreadId(); local
679 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, true);
707 ObjectId thread_id = request->ReadThreadId(); local
710 return RequestInvoke(state, request, thread_id,
856 ObjectId thread_id = request->ReadThreadId(); local
925 ObjectId thread_id = request->ReadThreadId(); local
946 ObjectId thread_id = request->ReadThreadId(); local
964 ObjectId thread_id = request->ReadThreadId(); local
980 ObjectId thread_id = request->ReadThreadId(); local
1002 ObjectId thread_id = request->ReadThreadId(); local
1014 ObjectId thread_id = request->ReadThreadId(); local
1046 ObjectId thread_id = request->ReadThreadId(); local
1060 ObjectId thread_id = request->ReadThreadId(); local
1094 ObjectId thread_id = request->ReadThreadId(); local
1106 ObjectId thread_id = request->ReadThreadId(); local
1118 ObjectId thread_id = request->ReadThreadId(); local
1256 ObjectId thread_id = request->ReadThreadId(); local
1312 ObjectId thread_id = request->ReadThreadId(); local
1386 ObjectId thread_id = request->ReadThreadId(); local
[all...]
H A Djdwp_event.cc827 ObjectId thread_id)
835 JdwpError error = Dbg::GetThreadName(thread_id, &thread_name);
839 VLOG(jdwp) << StringPrintf(" thread=%#" PRIx64, thread_id) << " " << thread_name;
933 ObjectId thread_id = Dbg::GetThreadId(basket.thread); local
938 LogMatchingEventsAndThread(match_list, thread_id);
950 expandBufAddObjectId(pReq, thread_id);
964 SendRequestAndPossiblySuspend(pReq, suspend_policy, thread_id);
995 ObjectId thread_id = Dbg::GetThreadId(basket.thread); local
1004 LogMatchingEventsAndThread(match_list, thread_id);
1031 expandBufAddObjectId(pReq, thread_id);
1088 ObjectId thread_id = Dbg::GetThreadId(basket.thread); local
1178 ObjectId thread_id = Dbg::GetThreadId(basket.thread); local
1251 ObjectId thread_id = Dbg::GetThreadId(basket.thread); local
[all...]
/art/openjdkjvmti/
H A Dti_heap.cc901 uint32_t thread_id = info.GetThreadId(); local
902 ref_info->jni_local.thread_id = thread_id;
931 uint32_t thread_id = info.GetThreadId(); local
932 ref_info->stack_local.thread_id = thread_id;
/art/test/913-heaps/
H A Dheaps.cc307 // jlong thread_id = info_.jni_local.thread_id;
310 jlong thread_id = 1; local
313 thread_id,
353 // jlong thread_id = info_.stack_local.thread_id;
356 jlong thread_id = 1; local
359 thread_id,
/art/openjdkjvmti/include/
H A Djvmti.h556 jlong thread_id; member in struct:_jvmtiHeapReferenceInfoStackLocal
564 jlong thread_id; member in struct:_jvmtiHeapReferenceInfoJniLocal

Completed in 1971 milliseconds