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

1 2

  /external/libchrome/base/threading/
thread_id_name_manager_unittest.cc 27 EXPECT_STREQ(kAThread, manager->GetName(thread_a.GetThreadId()));
28 EXPECT_STREQ(kBThread, manager->GetName(thread_b.GetThreadId()));
44 EXPECT_STREQ(kAThread, manager->GetName(thread_a.GetThreadId()));
47 EXPECT_STREQ("", manager->GetName(thread_a.GetThreadId()));
55 base::PlatformThreadId a_id = thread_a.GetThreadId();
61 EXPECT_STREQ(kAThread, manager->GetName(thread_a.GetThreadId()));
thread_unittest.cc 107 // Task that calls GetThreadId() of |thread|, stores the result into |id|, then
112 *id = thread->GetThreadId();
211 // Post a task that calls GetThreadId() on the created thread.
217 // Call GetThreadId() on the current thread before calling event.Wait() so
219 base::PlatformThreadId id_from_current_thread = a.GetThreadId();
221 // Check if GetThreadId() returns consistent value in both threads.
226 EXPECT_NE(base::kInvalidThreadId, a.GetThreadId());
227 EXPECT_NE(base::kInvalidThreadId, b.GetThreadId());
230 EXPECT_NE(a.GetThreadId(), b.GetThreadId());
    [all...]
thread.cc 169 DCHECK_NE(GetThreadId(), PlatformThread::CurrentId());
178 PlatformThreadId Thread::GetThreadId() const {
215 // First, make GetThreadId() available to avoid deadlocks. It could be called
thread.h 183 PlatformThreadId GetThreadId() const;
  /external/webrtc/webrtc/modules/utility/include/
helpers_ios.h 26 std::string GetThreadId();
helpers_android.h 49 std::string GetThreadId();
  /external/google-breakpad/src/common/linux/tests/
crash_generator.h 77 pid_t GetThreadId(unsigned index) const;
crash_generator.cc 123 pid_t CrashGenerator::GetThreadId(unsigned index) const {
  /external/webrtc/webrtc/modules/utility/source/
helpers_android.cc 85 std::string GetThreadId() {
95 return "@[tid=" + GetThreadId() + "]";
  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 51 if (static_cast<uint32_t>(thin_lock_id) == self->GetThreadId()) {
122 JDWP::Append4BE(bytes, t->GetThreadId());
java_lang_DexCache.cc 33 DCHECK_EQ(dex_cache->GetLockOwnerThreadId(), soa.Self()->GetThreadId());
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper_unittest.cc 106 EXPECT_EQ(crash_generator.GetThreadId(kCrashThread),
  /art/runtime/
monitor.cc 137 CHECK_EQ(owner_->GetThreadId(), lw.ThinLockOwner());
350 original_owner_thread_id = owner_->GetThreadId();
483 current_owner_thread_id = current_owner->GetThreadId();
540 owner_thread_id = owner->GetThreadId();
559 FailedUnlock(GetObject(), self->GetThreadId(), owner_thread_id, this);
766 LockWord new_lw = LockWord::FromThinLockId(owner->GetThreadId(), monitor->lock_count_,
799 VLOG(monitor) << "monitor: thread" << owner->GetThreadId()
816 if (owner_thread_id == self->GetThreadId()) {
    [all...]
gc_root.h 70 uint32_t GetThreadId() const {
thread_list.cc 856 if (it->GetThreadId() == thread_id) {
    [all...]
java_vm_ext.cc 67 jni_on_load_thread_id_(self->GetThreadId()),
106 if (jni_on_load_thread_id_ == self->GetThreadId()) {
    [all...]
thread.cc     [all...]
  /external/google-breakpad/src/common/linux/
elf_core_dump_unittest.cc 143 pid_t expected_crash_thread_id = crash_generator.GetThreadId(kCrashThread);
146 expected_thread_ids.insert(crash_generator.GetThreadId(i));
  /external/webrtc/talk/app/webrtc/java/jni/
jni_helpers.cc 99 static std::string GetThreadId() {
124 std::string name(GetThreadName() + " - " + GetThreadId());
  /external/libchrome/sandbox/linux/services/
thread_helpers.cc 129 const base::PlatformThreadId thread_id = thread->GetThreadId();
  /system/core/base/
logging.cpp 77 static thread_id GetThreadId() {
194 severity_char, getpid(), GetThreadId(), file, line, message);
  /art/runtime/jdwp/
jdwp_event.cc 891 ObjectId thread_id = Dbg::GetThreadId(basket.thread);
953 ObjectId thread_id = Dbg::GetThreadId(basket.thread);
    [all...]
  /external/libchrome/base/synchronization/
condition_variable_unittest.cc 78 int GetThreadId(); // Get an ID assigned to a thread..
534 int WorkQueue::GetThreadId() {
718 thread_id = GetThreadId();
  /system/core/adb/
sysdeps.h 189 return GetThreadId(lhs) == GetThreadId(rhs);
  /art/runtime/mirror/
class.h 236 DCHECK_EQ(GetLockOwnerThreadId(), Thread::Current()->GetThreadId());
242 DCHECK_EQ(GetLockOwnerThreadId(), Thread::Current()->GetThreadId());
    [all...]

Completed in 913 milliseconds

1 2