/external/compiler-rt/lib/tsan/rtl/ |
tsan_clock.cc | 66 // tid_ - index of the thread associated with he clock ("current thread"). 95 : tid_(tid) 99 nclk_ = tid_ + 1; 102 clk_[tid_].reused = reused_; 119 if (nclk > tid_) { 121 if (src->clk_[tid_].reused == reused_) { 135 last_acquire_ = clk_[tid_].epoch; 153 if (nclk > tid_) 154 src->clk_[tid_].reused = reused_; 158 last_acquire_ = clk_[tid_].epoch [all...] |
tsan_clock.h | 67 DCHECK_GE(v, clk_[tid_].epoch); 68 clk_[tid_].epoch = v; 72 clk_[tid_].epoch++; 89 const unsigned tid_; member in struct:__tsan::ThreadClock
|
/external/chromium_org/base/threading/ |
simple_thread.cc | 16 thread_(), event_(true, false), tid_(0), joined_(false) { 22 thread_(), event_(true, false), tid_(0), joined_(false) { 51 tid_ = PlatformThread::CurrentId(); 54 name_.append(IntToString(tid_));
|
simple_thread.h | 96 PlatformThreadId tid() { return tid_; } 119 PlatformThreadId tid_; // The backing thread's id. member in class:base::SimpleThread
|
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/ |
dlopen.cc | 45 tid_(NULL) {} 65 if (pthread_create(&tid_, NULL, LoadLibrariesOnWorker, this)) { 163 pthread_t tid_; member in class:DlOpenInstance
|
/external/chromium_org/tools/cygprofile/ |
cygprofile.h | 106 const pid_t tid_; member in class:cygprofile::ThreadLog
|
cygprofile.cc | 186 : tid_(GetTID()), 193 : tid_(GetTID()), 207 CHECK_EQ(tid_, GetTID()); 236 kLogFilenameFormat, kLogFileNamePrefix, getpid(), tid_, getppid()));
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
thread_cache.cc | 135 tid_ = tid; 341 if (h->tid_ == zero) { 342 h->tid_ = pthread_self(); 375 if (h->tid_ == me) {
|
thread_cache.h | 327 pthread_t tid_; // Which thread owns it member in class:tcmalloc::ThreadCache
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
thread_cache.cc | 132 tid_ = tid; 330 if (h->tid_ == zero) { 331 h->tid_ = pthread_self(); 364 if (h->tid_ == me) {
|
thread_cache.h | 304 pthread_t tid_; // Which thread owns it member in class:tcmalloc::ThreadCache
|
/art/runtime/ |
thread.cc | 2181 const uint32_t tid_; member in class:art::RootCallbackVisitor [all...] |