Searched refs:GetTid (Results 1 - 21 of 21) sorted by relevance

/art/runtime/
H A Dthread_android.cc56 pid_t tid = GetTid();
H A Druntime_linux.cc45 DumpNativeStack(os, GetTid(), nullptr, "\t", nullptr, raw_context_);
331 pid_t tid = GetTid();
H A Dthread_list.cc106 if (thread->GetTid() == tid) {
121 os << "DUMPING THREAD " << thread->GetTid() << "\n";
122 DumpNativeStack(os, thread->GetTid(), map.get(), "\t");
1265 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr);
H A Dtrace.cc870 pid_t tid = thread->GetTid();
961 Append2LE(ptr, thread->GetTid());
993 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
1025 os << t->GetTid() << "\t" << name << "\n";
1045 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
H A Dmonitor.cc369 owner_->GetTid(),
399 original_owner_tid = original_owner->GetTid();
781 VLOG(monitor) << "Deflated " << obj << " to thin lock " << owner->GetTid() << " / "
H A Druntime.cc357 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr);
363 DumpKernelStack(os, GetTid(), " kernel: ", false);
364 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr);
444 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
H A Dutils.h227 pid_t GetTid();
H A Dutils.cc63 pid_t GetTid() { function in namespace:art
115 bool is_main_thread = (::art::GetTid() == getpid());
1198 if (tid == GetTid()) {
H A Dthread.h320 pid_t GetTid() const { function in class:art::Thread
1190 << Thread::Current()->GetTid();
H A Dthread.cc405 tls32_.tid = ::art::GetTid();
946 << ",tid=" << GetTid() << ',';
1350 Thread::DumpState(os, this, GetTid());
1530 DumpKernelStack(os, GetTid(), " kernel: ", false);
1532 DumpNativeStack(os, GetTid(), backtrace_map, " native: ", method);
H A Dclass_linker.cc2196 if (!h_class->IsResolved() && h_class->GetClinitThreadId() == self->GetTid()) {
2506 klass->SetClinitThreadId(self->GetTid());
4509 DCHECK_NE(self->GetTid(), klass->GetClinitThreadId());
4544 if (klass->GetClinitThreadId() == self->GetTid()) {
4559 << " self.tid=" << self->GetTid() << " clinit.tid=" << klass->GetClinitThreadId();
4563 klass->SetClinitThreadId(self->GetTid());
H A Ddebugger.cc4849 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount())
5042 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid()));
H A Dcheck_jni.cc1175 AbortF("a thread (tid %d) is making JNI calls without being attached", GetTid());
/art/runtime/base/
H A Dmutex-inl.h51 return static_cast<uint64_t>(self->GetTid());
53 return static_cast<uint64_t>(GetTid());
H A Dlogging.cc192 << " " << getpid() << " " << ::art::GetTid() << " " << file << ":" << line << "]";
271 ProgramInvocationShortName(), severity, getpid(), ::art::GetTid(), file, line, message);
/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc119 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu);
124 JDWP::Append4BE(bytes, t->GetTid());
/art/runtime/gc/
H A Dallocation_record.h87 pid_t GetTid() const { function in class:art::gc::AllocRecordStackTrace
132 size_t result = r.GetTid() * AllocRecordStackTrace::kHashMultiplier + depth;
173 pid_t GetTid() const { function in class:art::gc::AllocRecord
174 return trace_.GetTid();
H A Dallocation_record.cc233 records->alloc_ddm_thread_id_ = self->GetTid();
285 if (alloc_ddm_thread_id_ == self->GetTid()) {
304 trace.SetTid(self->GetTid());
/art/test/137-cfi/
H A Dcfi.cc119 std::unique_ptr<Backtrace> bt(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, GetTid()));
/art/runtime/hprof/
H A Dhprof.cc709 // U4: thread serial number. We use Thread::GetTid().
713 __ AddU4(trace->GetTid());
/art/runtime/mirror/
H A Dclass-inl.h832 CHECK_EQ(GetClinitThreadId(), self->GetTid()) << PrettyClass(this)

Completed in 742 milliseconds