Searched refs:GetTid (Results 1 – 17 of 17) sorted by relevance
/art/runtime/native/ |
D | org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc | 119 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu); in ThreadStatsGetterCallback() 124 JDWP::Append4BE(bytes, t->GetTid()); in ThreadStatsGetterCallback()
|
/art/runtime/base/ |
D | mutex-inl.h | 51 return static_cast<uint64_t>(self->GetTid()); in SafeGetTid() 53 return static_cast<uint64_t>(GetTid()); in SafeGetTid()
|
D | logging.cc | 191 << " " << getpid() << " " << ::art::GetTid() << " " << file << ":" << line << "]"; in LogMessage() 261 ProgramInvocationShortName(), severity, getpid(), ::art::GetTid(), file, line, message); in LogLine()
|
/art/runtime/ |
D | thread_android.cc | 56 pid_t tid = GetTid(); in SetNativePriority()
|
D | runtime_linux.cc | 44 DumpNativeStack(os, GetTid(), "\t", nullptr, raw_context_); in Dump() 327 pid_t tid = GetTid(); in HandleUnexpectedSignal()
|
D | trace.cc | 843 pid_t tid = thread->GetTid(); in RegisterThread() 934 Append2LE(ptr, thread->GetTid()); in LogMethodTraceEvent() 966 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid())); in LogMethodTraceEvent() 998 os << t->GetTid() << "\t" << name << "\n"; in DumpThread() 1018 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name); in StoreExitingThreadInfo()
|
D | thread_list.cc | 84 if (thread->GetTid() == tid) { in Contains() 98 os << "DUMPING THREAD " << thread->GetTid() << "\n"; in DumpNativeStacks() 99 DumpNativeStack(os, thread->GetTid(), "\t"); in DumpNativeStacks() 1139 DumpNativeStack(os, GetTid(), " native: ", nullptr); in Unregister()
|
D | utils.h | 204 pid_t GetTid();
|
D | utils.cc | 59 pid_t GetTid() { in GetTid() function 111 bool is_main_thread = (::art::GetTid() == getpid()); in GetThreadStack() 1177 if (tid == GetTid()) { in DumpKernelStack()
|
D | thread.cc | 229 tls32_.tid = ::art::GetTid(); in InitTid() 717 << ",tid=" << GetTid() << ','; in ShortDump() 1039 Thread::DumpState(os, this, GetTid()); in DumpState() 1219 DumpKernelStack(os, GetTid(), " kernel: ", false); in DumpStack() 1220 DumpNativeStack(os, GetTid(), " native: ", GetCurrentMethod(nullptr, !dump_for_abort)); in DumpStack()
|
D | runtime.cc | 307 DumpKernelStack(os, GetTid(), " kernel: ", false); in Dump() 308 DumpNativeStack(os, GetTid(), " native: ", nullptr); in Dump() 382 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT); in Abort()
|
D | thread.h | 305 pid_t GetTid() const { in GetTid() function
|
D | monitor.cc | 616 VLOG(monitor) << "Deflated " << obj << " to thin lock " << owner->GetTid() << " / " in Deflate()
|
D | class_linker.cc | 1564 if (!h_class->IsResolved() && h_class->GetClinitThreadId() == self->GetTid()) { in EnsureResolved() 1854 klass->SetClinitThreadId(self->GetTid()); in DefineClass() 3625 if (klass->GetClinitThreadId() == self->GetTid()) { in InitializeClass() 3643 klass->SetClinitThreadId(self->GetTid()); in InitializeClass()
|
D | check_jni.cc | 1020 AbortF("a thread (tid %d) is making JNI calls without being attached", GetTid()); in CheckThread()
|
/art/test/137-cfi/ |
D | cfi.cc | 112 std::unique_ptr<Backtrace> bt(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, GetTid())); in Java_Main_unwindInProcess()
|
/art/runtime/mirror/ |
D | class-inl.h | 716 CHECK_EQ(GetClinitThreadId(), self->GetTid()) << PrettyClass(this) in AssertInitializedOrInitializingInThread()
|