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

  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.h 207 typedef std::map<uint32_t, ThreadState> ThreadMap;
216 ThreadMap thread_map_;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadingPthreads.cpp 97 typedef HashMap<ThreadIdentifier, OwnPtr<PthreadState> > ThreadMap;
138 static ThreadMap& threadMap()
140 DEFINE_STATIC_LOCAL(ThreadMap, map, ());
148 ThreadMap::iterator i = threadMap().begin();
149 for (; i != threadMap().end(); ++i) {
162 threadMap().add(identifierCount, adoptPtr(new PthreadState(pthreadHandle)));
168 return threadMap().get(id)->pthreadHandle();
231 PthreadState* state = threadMap().get(threadID)
    [all...]
  /external/chromium_org/base/threading/
sequenced_worker_pool.cc 426 typedef std::map<PlatformThreadId, linked_ptr<Worker> > ThreadMap;
427 ThreadMap threads_;
545 for (ThreadMap::iterator it = threads_.begin(); it != threads_.end(); ++it)
636 ThreadMap::const_iterator found = threads_.find(PlatformThread::CurrentId());
716 std::pair<ThreadMap::iterator, bool> result =
894 ThreadMap::const_iterator found = threads_.find(PlatformThread::CurrentId());
    [all...]

Completed in 77 milliseconds