Home
last modified time | relevance | path

Searched refs:GetTid (Results 1 – 17 of 17) sorted by relevance

/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc119 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu); in ThreadStatsGetterCallback()
124 JDWP::Append4BE(bytes, t->GetTid()); in ThreadStatsGetterCallback()
/art/runtime/base/
Dmutex-inl.h51 return static_cast<uint64_t>(self->GetTid()); in SafeGetTid()
53 return static_cast<uint64_t>(GetTid()); in SafeGetTid()
Dlogging.cc191 << " " << getpid() << " " << ::art::GetTid() << " " << file << ":" << line << "]"; in LogMessage()
261 ProgramInvocationShortName(), severity, getpid(), ::art::GetTid(), file, line, message); in LogLine()
/art/runtime/
Dthread_android.cc56 pid_t tid = GetTid(); in SetNativePriority()
Druntime_linux.cc44 DumpNativeStack(os, GetTid(), "\t", nullptr, raw_context_); in Dump()
327 pid_t tid = GetTid(); in HandleUnexpectedSignal()
Dtrace.cc843 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()
Dthread_list.cc84 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()
Dutils.h204 pid_t GetTid();
Dutils.cc59 pid_t GetTid() { in GetTid() function
111 bool is_main_thread = (::art::GetTid() == getpid()); in GetThreadStack()
1177 if (tid == GetTid()) { in DumpKernelStack()
Dthread.cc229 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()
Druntime.cc307 DumpKernelStack(os, GetTid(), " kernel: ", false); in Dump()
308 DumpNativeStack(os, GetTid(), " native: ", nullptr); in Dump()
382 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT); in Abort()
Dthread.h305 pid_t GetTid() const { in GetTid() function
Dmonitor.cc616 VLOG(monitor) << "Deflated " << obj << " to thin lock " << owner->GetTid() << " / " in Deflate()
Dclass_linker.cc1564 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()
Dcheck_jni.cc1020 AbortF("a thread (tid %d) is making JNI calls without being attached", GetTid()); in CheckThread()
/art/test/137-cfi/
Dcfi.cc112 std::unique_ptr<Backtrace> bt(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, GetTid())); in Java_Main_unwindInProcess()
/art/runtime/mirror/
Dclass-inl.h716 CHECK_EQ(GetClinitThreadId(), self->GetTid()) << PrettyClass(this) in AssertInitializedOrInitializingInThread()