/art/runtime/gc/ |
D | allocation_record.h | 88 pid_t GetTid() const { in GetTid() function 133 size_t result = r.GetTid() * AllocRecordStackTrace::kHashMultiplier + depth; in operator() 174 pid_t GetTid() const { in GetTid() function 175 return trace_.GetTid(); in GetTid()
|
D | allocation_record.cc | 235 records->alloc_ddm_thread_id_ = self->GetTid(); in SetAllocTrackingEnabled() 287 if (alloc_ddm_thread_id_ == self->GetTid()) { in RecordAllocation() 309 trace.SetTid(self->GetTid()); in RecordAllocation()
|
/art/runtime/ |
D | runtime_common.h | 43 DumpNativeStack(os, GetTid(), nullptr, "\t", nullptr, raw_context_); in Dump()
|
D | runtime_linux.cc | 38 pid_t tid = GetTid(); in HandleUnexpectedSignalLinux()
|
D | thread_android.cc | 56 pid_t tid = GetTid(); in SetNativePriority()
|
D | trace.cc | 860 pid_t tid = thread->GetTid(); in RegisterThread() 961 Append2LE(ptr, thread->GetTid()); in LogMethodTraceEvent() 993 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid())); in LogMethodTraceEvent() 1025 os << t->GetTid() << "\t" << name << "\n"; in DumpThread() 1045 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name); in StoreExitingThreadInfo()
|
D | thread_list.cc | 123 if (thread->GetTid() == tid) { in Contains() 138 os << "DUMPING THREAD " << thread->GetTid() << "\n"; in DumpNativeStacks() 139 DumpNativeStack(os, thread->GetTid(), map.get(), "\t"); in DumpNativeStacks() 1457 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr); in Unregister()
|
D | native_stack_dump.cc | 372 if (tid == GetTid()) { in DumpKernelStack()
|
D | utils.h | 132 pid_t GetTid();
|
D | runtime.cc | 420 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr); in Dump() 432 DumpKernelStack(os, GetTid(), " kernel: ", false); in Dump() 433 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr); in Dump() 487 DumpNativeStack(os, GetTid()); in DumpRecursiveAbort() 548 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT); in Abort()
|
D | monitor.cc | 373 owner_->GetTid(), in Lock() 437 original_owner_tid = original_owner->GetTid(); in Lock() 844 VLOG(monitor) << "Deflated " << obj << " to thin lock " << owner->GetTid() << " / " in Deflate()
|
D | runtime_common.cc | 403 pid_t tid = GetTid(); in HandleUnexpectedSignalCommon()
|
D | thread.cc | 401 tls32_.tid = ::art::GetTid(); in InitTid() 1041 bool is_main_thread = (::art::GetTid() == getpid()); in GetThreadStack() 1136 << ",tid=" << GetTid() << ','; in ShortDump() 1741 Thread::DumpState(os, this, GetTid()); in DumpState() 1940 DumpKernelStack(os, GetTid(), " kernel: ", false); in DumpStack() 1945 DumpNativeStack(os, GetTid(), backtrace_map, " native: ", method); in DumpStack()
|
D | thread.h | 354 pid_t GetTid() const { in GetTid() function 1309 << Thread::Current()->GetTid(); in SetJitSensitiveThread()
|
D | utils.cc | 56 pid_t GetTid() { in GetTid() function
|
D | class_linker.cc | 2457 if (!h_class->IsResolved() && h_class->GetClinitThreadId() == self->GetTid()) { in EnsureResolved() 2899 klass->SetClinitThreadId(self->GetTid()); in DefineClass() 4837 DCHECK_NE(self->GetTid(), klass->GetClinitThreadId()); in InitializeClass() 4872 if (klass->GetClinitThreadId() == self->GetTid()) { in InitializeClass() 4893 << " self.tid=" << self->GetTid() << " clinit.tid=" << klass->GetClinitThreadId(); in InitializeClass() 4897 klass->SetClinitThreadId(self->GetTid()); in InitializeClass()
|
D | debugger.cc | 4914 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) in DumpRecentAllocations() 5197 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); in GetRecentAllocations()
|
/art/runtime/native/ |
D | org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc | 124 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu); in ThreadStatsGetterCallback() 129 JDWP::Append4BE(bytes, t->GetTid()); in ThreadStatsGetterCallback()
|
D | dalvik_system_VMRuntime.cc | 636 pid_t tid = self->GetTid(); in VMRuntime_setSystemDaemonThreadPriority()
|
/art/runtime/base/ |
D | mutex-inl.h | 49 return static_cast<uint64_t>(self->GetTid()); in SafeGetTid() 51 return static_cast<uint64_t>(GetTid()); in SafeGetTid()
|
/art/test/137-cfi/ |
D | cfi.cc | 134 std::unique_ptr<Backtrace> bt(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, GetTid())); in Java_Main_unwindInProcess()
|
/art/compiler/jit/ |
D | jit_logger.cc | 280 jit_code.thread_id_ = static_cast<uint32_t>(art::GetTid()); in WriteJitDumpLog()
|
/art/runtime/openjdkjvmti/ |
D | events.cc | 69 unique_thread.second == static_cast<uint32_t>(thread->GetTid())) { in GetEventMask() 76 thread_event_masks.emplace_back(UniqueThread(thread, thread->GetTid()), EventMask()); in GetEventMask() 88 unique_thread.second == static_cast<uint32_t>(thread->GetTid())) { in GetEventMaskOrNull()
|
/art/runtime/mirror/ |
D | class-inl.h | 846 CHECK_EQ(GetClinitThreadId(), self->GetTid()) << PrettyClass() in AssertInitializedOrInitializingInThread()
|
/art/runtime/hprof/ |
D | hprof.cc | 736 __ AddU4(trace->GetTid()); in WriteStackTraces()
|