Searched defs:ThreadData (Results 1 - 4 of 4) sorted by relevance

/external/chromium/base/
H A Dtracked_objects.cc21 base::ThreadLocalStorage::Slot ThreadData::tls_index_(base::LINKER_INITIALIZED);
75 birth_thread_(ThreadData::current()) { }
83 // ThreadData maintains the central data for all births and death.
86 ThreadData* ThreadData::first_ = NULL;
88 base::Lock ThreadData::list_lock_;
91 ThreadData::Status ThreadData::status_ = ThreadData::UNINITIALIZED;
93 ThreadData function in class:tracked_objects::ThreadData
[all...]
H A Dtracked_objects.h93 // ThreadData instance (for that specific thread only). The two critical items
102 // of ThreadData instances. Each such instance maintains a pointer to the next
103 // one. A static member of ThreadData provides a pointer to the first_ item on
105 // When new ThreadData instances is added to the global list, it is pre-pended,
159 class ThreadData;
165 const ThreadData* birth_thread() const { return birth_thread_; }
175 const ThreadData* birth_thread_; // The thread this birth took place on.
255 Snapshot(const BirthOnThread& birth_on_thread, const ThreadData& death_thread,
262 const ThreadData* birth_thread() const { return birth_->birth_thread(); }
265 const ThreadData* death_threa
468 class BASE_API ThreadData { class in namespace:tracked_objects
[all...]
/external/llvm/include/llvm/MC/
H A DSectionKind.h82 /// ThreadData - Initialized TLS data objects.
83 ThreadData, enumerator in enum:llvm::SectionKind::Kind
166 return K == ThreadData || K == ThreadBSS;
170 bool isThreadData() const { return K == ThreadData; }
224 static SectionKind getThreadData() { return get(ThreadData); }
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc249 struct ThreadData { struct in namespace:__anon15140
250 ThreadData(int thread_num_, AudioProcessing* ap_) function in struct:__anon15140::ThreadData
261 ThreadData* thread_data = static_cast<ThreadData*>(thread_object);
317 std::vector<ThreadData*> thread_data(num_threads);
324 thread_data[i] = new ThreadData(i, apm_);

Completed in 124 milliseconds