HomeSort by relevance Sort by last modified time
    Searched refs:tid_ (Results 1 - 16 of 16) sorted by null

  /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
  /system/core/libbacktrace/
BacktraceThread.h 67 bool Match(pid_t chk_pid, pid_t chk_tid) { return (chk_pid == pid_ && chk_tid == tid_); }
70 pid_t tid_; member in class:ThreadEntry
BacktraceImpl.cpp 38 : pid_(pid), tid_(-1), map_(map), map_shared_(true), impl_(impl) {
167 tid_ = tid;
BacktraceThread.cpp 45 : pid_(pid), tid_(tid), ref_count_(1), mutex_(PTHREAD_MUTEX_INITIALIZER),
169 tid_ = tid;
  /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
  /system/core/include/backtrace/
Backtrace.h 93 pid_t Tid() { return tid_; }
121 pid_t tid_; member in class:Backtrace
  /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...]

Completed in 460 milliseconds