OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threads_
(Results
1 - 5
of
5
) sorted by null
/external/chromium/base/threading/
simple_thread.cc
87
DCHECK(
threads_
.empty());
93
DCHECK(
threads_
.empty()) << "Start() called with outstanding threads.";
97
threads_
.push_back(thread);
102
DCHECK(!
threads_
.empty()) << "JoinAll() called with no outstanding threads.";
109
threads_
[i]->Join();
110
delete
threads_
[i];
112
threads_
.clear();
simple_thread.h
176
std::vector<DelegateSimpleThread*>
threads_
;
member in class:base::DelegateSimpleThreadPool
/external/chromium/chrome/common/deprecated/
event_sys_unittest.cc
152
for (size_t i = 0; i <
threads_
.size(); i++) {
153
base::PlatformThread::Join(
threads_
[i].thread);
182
threads_
.push_back(info);
233
std::vector<ThreadInfo>
threads_
;
member in class:__anon3343::ThreadTester
/external/chromium/third_party/libjingle/source/talk/base/
thread.cc
147
threads_
.push_back(thread);
152
threads_
.erase(std::remove(
threads_
.begin(),
threads_
.end(), thread),
153
threads_
.end());
159
for (size_t i = 0; i < g_thmgr.
threads_
.size(); ++i) {
160
g_thmgr.
threads_
[i]->Stop();
thread.h
80
std::vector<Thread *>
threads_
;
member in class:talk_base::ThreadManager
Completed in 280 milliseconds