HomeSort by relevance Sort by last modified time
    Searched refs:GetTid (Results 1 - 25 of 39) sorted by null

1 2

  /art/runtime/
runtime_common.h 43 DumpNativeStack(os, GetTid(), nullptr, "\t", nullptr, raw_context_);
runtime_linux.cc 38 pid_t tid = GetTid();
thread_android.cc 56 pid_t tid = GetTid();
trace.cc 860 pid_t tid = thread->GetTid();
    [all...]
native_stack_dump.cc 372 if (tid == GetTid()) {
thread_list.cc 123 if (thread->GetTid() == tid) {
138 os << "DUMPING THREAD " << thread->GetTid() << "\n";
139 DumpNativeStack(os, thread->GetTid(), map.get(), "\t");
    [all...]
utils.h 132 pid_t GetTid();
monitor.cc 373 owner_->GetTid(),
437 original_owner_tid = original_owner->GetTid();
844 VLOG(monitor) << "Deflated " << obj << " to thin lock " << owner->GetTid() << " / "
    [all...]
runtime_common.cc 403 pid_t tid = GetTid();
runtime.cc 420 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr);
432 DumpKernelStack(os, GetTid(), " kernel: ", false);
433 DumpNativeStack(os, GetTid(), nullptr, " native: ", nullptr);
487 DumpNativeStack(os, GetTid());
548 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
    [all...]
  /art/runtime/gc/
allocation_record.h 88 pid_t GetTid() const {
133 size_t result = r.GetTid() * AllocRecordStackTrace::kHashMultiplier + depth;
174 pid_t GetTid() const {
175 return trace_.GetTid();
allocation_record.cc 235 records->alloc_ddm_thread_id_ = self->GetTid();
287 if (alloc_ddm_thread_id_ == self->GetTid()) {
309 trace.SetTid(self->GetTid());
  /external/compiler-rt/lib/lsan/
lsan.cc 84 ThreadStart(tid, GetTid());
lsan_thread.cc 134 CurrentThreadContext()->os_id = GetTid();
lsan_interceptors.cc 224 ThreadStart(tid, GetTid());
  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 124 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu);
129 JDWP::Append4BE(bytes, t->GetTid());
  /art/runtime/base/
mutex-inl.h 49 return static_cast<uint64_t>(self->GetTid());
51 return static_cast<uint64_t>(GetTid());
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_mac.cc 142 ThreadStart(thr, tid, GetTid());
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 97 arg->reported_tid = GetTid();
146 pid_t self_tid = GetTid();
  /art/compiler/jit/
jit_logger.cc 280 jit_code.thread_id_ = static_cast<uint32_t>(art::GetTid());
  /art/test/137-cfi/
cfi.cc 134 std::unique_ptr<Backtrace> bt(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, GetTid()));
  /external/compiler-rt/lib/asan/
asan_win.cc 97 return t->ThreadStart(GetTid(), /* signal_thread_is_registered */ nullptr);
asan_thread.cc 385 context->os_id = GetTid();
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 65 uptr GetTid() {
70 return GetTid();
  /art/runtime/openjdkjvmti/
events.cc 69 unique_thread.second == static_cast<uint32_t>(thread->GetTid())) {
76 thread_event_masks.emplace_back(UniqueThread(thread, thread->GetTid()), EventMask());
88 unique_thread.second == static_cast<uint32_t>(thread->GetTid())) {

Completed in 684 milliseconds

1 2