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

1 2

  /external/libchrome/base/message_loop/
message_loop_task_runner.cc 24 valid_thread_id_ = PlatformThread::CurrentId();
47 return valid_thread_id_ == PlatformThread::CurrentId();
message_pump_glib.cc 148 thread_info->thread_id = PlatformThread::CurrentId();
150 DCHECK(thread_info->thread_id == PlatformThread::CurrentId()) <<
  /system/tpm/trunks/
trunks_dbus_proxy.cc 53 origin_thread_id_ = base::PlatformThread::CurrentId();
59 if (origin_thread_id_ != base::PlatformThread::CurrentId()) {
80 if (origin_thread_id_ != base::PlatformThread::CurrentId()) {
  /external/libchrome/base/
observer_list_threadsafe.h 93 PlatformThreadId thread_id = PlatformThread::CurrentId();
111 PlatformThreadId thread_id = PlatformThread::CurrentId();
184 auto it = observer_lists_.find(PlatformThread::CurrentId());
205 auto it = observer_lists_.find(PlatformThread::CurrentId());
  /external/libchrome/base/threading/
thread_collision_warner.cc 17 const PlatformThreadId current_thread_id = PlatformThread::CurrentId();
platform_thread_posix.cc 69 PlatformThread::CurrentId());
75 PlatformThread::CurrentId());
131 PlatformThreadId PlatformThread::CurrentId() {
184 return ThreadIdNameManager::GetInstance()->GetName(CurrentId());
261 << PlatformThread::CurrentId() << ") to " << nice_setting;
285 << PlatformThread::CurrentId() << ")";
platform_thread_linux.cc 103 SetThreadCgroupsForThreadPriority(PlatformThread::CurrentId(), priority);
130 ThreadIdNameManager::GetInstance()->SetName(CurrentId(), name);
138 if (PlatformThread::CurrentId() == getpid())
platform_thread_unittest.cc 118 thread_id_ = PlatformThread::CurrentId();
122 EXPECT_EQ(thread_id_, PlatformThread::CurrentId());
165 PlatformThreadId main_thread_id = PlatformThread::CurrentId();
181 EXPECT_EQ(main_thread_id, PlatformThread::CurrentId());
185 PlatformThreadId main_thread_id = PlatformThread::CurrentId();
216 EXPECT_EQ(main_thread_id, PlatformThread::CurrentId());
thread_id_name_manager_unittest.cc 68 base::PlatformThreadId a_id = base::PlatformThread::CurrentId();
80 base::PlatformThreadId a_id = base::PlatformThread::CurrentId();
thread.h 212 // (id_event_.IsSignaled() && id_ == PlatformThread::CurrentId()) ||
228 (id_event_.IsSignaled() && id_ == PlatformThread::CurrentId()) ||
platform_thread.h 133 static PlatformThreadId CurrentId();
thread.cc 248 DCHECK_EQ(id_, PlatformThread::CurrentId());
288 id_ = PlatformThread::CurrentId();
simple_thread.cc 58 tid_ = PlatformThread::CurrentId();
worker_pool_posix.cc 90 PlatformThread::CurrentId());
worker_pool_posix_unittest.cc 61 unique_threads->insert(PlatformThread::CurrentId());
230 // The POSIX implementation of PlatformThread::CurrentId() uses pthread_self()
  /external/libchrome/dbus/
dbus_statistics.cc 47 origin_thread_id_(base::PlatformThread::CurrentId()) {
51 DCHECK_EQ(origin_thread_id_, base::PlatformThread::CurrentId());
66 if (base::PlatformThread::CurrentId() != origin_thread_id_) {
68 << base::PlatformThread::CurrentId();
89 DCHECK_EQ(origin_thread_id_, base::PlatformThread::CurrentId());
  /external/v8/src/
v8threads.h 85 ThreadId CurrentId();
v8threads.cc 280 state->set_id(CurrentId());
348 ThreadId ThreadManager::CurrentId() {
  /external/libchrome/base/debug/
stack_trace.cc 159 bool is_main_thread = GetCurrentProcId() == PlatformThread::CurrentId();
183 if (GetCurrentProcId() == PlatformThread::CurrentId()) {
  /external/libchrome/base/timer/
timer.cc 185 thread_id_ = static_cast<int>(PlatformThread::CurrentId());
194 thread_id_ == static_cast<int>(PlatformThread::CurrentId()));
  /external/libchrome/base/trace_event/
malloc_dump_provider.cc 293 tid_dumping_heap_ = PlatformThread::CurrentId();
340 // CurrentId() can be a slow operation (crbug.com/497226). This apparently
341 // redundant condition short circuits the CurrentID() calls when unnecessary.
343 tid_dumping_heap_ == PlatformThread::CurrentId())
369 tid_dumping_heap_ == PlatformThread::CurrentId())
trace_event.h 66 static_cast<int>(base::PlatformThread::CurrentId())
    [all...]
heap_profiler_allocation_context_tracker.cc 60 static_cast<unsigned long>(PlatformThread::CurrentId()));
trace_log.cc 311 "tracing/thread_%d", static_cast<int>(PlatformThread::CurrentId()));
    [all...]
  /system/bt/btif/src/
btif_core.cc 252 return btif_thread_id_ == PlatformThread::CurrentId();
336 btif_thread_id_ = PlatformThread::CurrentId();
    [all...]

Completed in 368 milliseconds

1 2