OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadMap
(Results
1 - 2
of
2
) sorted by null
/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
424
typedef std::map<PlatformThreadId, linked_ptr<Worker> >
ThreadMap
;
425
ThreadMap
threads_;
540
for (
ThreadMap
::iterator it = threads_.begin(); it != threads_.end(); ++it)
630
ThreadMap
::const_iterator found = threads_.find(PlatformThread::CurrentId());
710
std::pair<
ThreadMap
::iterator, bool> result =
887
ThreadMap
::const_iterator found = threads_.find(PlatformThread::CurrentId());
[
all
...]
Completed in 970 milliseconds