HomeSort by relevance Sort by last modified time
    Searched defs:ThreadData (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/ppapi/utility/threading/
simple_thread.cc 23 struct ThreadData {
35 ThreadData* data = static_cast<ThreadData*>(void_data);
96 ThreadData* data = new ThreadData;
  /external/chromium/base/
tracked_objects.cc 21 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::ThreadData() : next_(NULL)
    [all...]
tracked_objects.h 93 // 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_thread() const {return death_thread_;
    [all...]
  /external/chromium_org/base/
tracked_objects.cc 34 // When ThreadData is first initialized, should we start in an ACTIVE state to
40 const ThreadData::Status kInitialStartupState =
41 ThreadData::PROFILING_CHILDREN_ACTIVE;
44 // the ThreadData class. This compile time flag should be set to true if we
167 const ThreadData& current)
186 Births::Births(const Location& location, const ThreadData& current)
199 // ThreadData maintains the central data for all births and deaths on a single
207 NowFunction* ThreadData::now_function_ = NULL;
209 // A TLS slot which points to the ThreadData instance for the current thread. We
213 base::ThreadLocalStorage::StaticSlot ThreadData::tls_index_ = TLS_INITIALIZER
    [all...]
tracked_objects.h 101 // ThreadData instance (for that specific thread only). The two critical items
110 // of ThreadData instances. Each such instance maintains a pointer to the next
111 // one. A static member of ThreadData provides a pointer to the first item on
114 // When new ThreadData instances is added to the global list, it is pre-pended,
146 // of ThreadData objects for a process. It holds a set of TaskSnapshots
194 class ThreadData;
197 BirthOnThread(const Location& location, const ThreadData& current);
200 const ThreadData* birth_thread() const { return birth_thread_; }
210 const ThreadData* const birth_thread_;
232 Births(const Location& location, const ThreadData& current)
    [all...]
  /external/llvm/include/llvm/MC/
SectionKind.h 82 /// ThreadData - Initialized TLS data objects.
83 ThreadData,
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/
unit_test.cc 249 struct ThreadData {
250 ThreadData(int thread_num_, AudioProcessing* ap_)
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_);
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 

Completed in 670 milliseconds