HomeSort by relevance Sort by last modified time
    Searched refs:thread_count (Results 1 - 5 of 5) sorted by null

  /external/chromium/base/
condition_variable_unittest.cc 65 explicit WorkQueue(int thread_count);
112 // Compares the |shutdown_task_count_| to the |thread_count| and returns true
115 bool ThreadSafeCheckShutdown(int thread_count);
492 WorkQueue::WorkQueue(int thread_count)
497 thread_count_(thread_count),
498 thread_handles_(new PlatformThreadHandle[thread_count]),
499 assignment_history_(thread_count),
500 completion_history_(thread_count),
575 bool WorkQueue::ThreadSafeCheckShutdown(int thread_count) {
581 all_shutdown = (shutdown_task_count_ == thread_count);
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 130 // caller not to pass a thread_count of 1.
131 static String DeathTestThreadWarning(size_t thread_count) {
135 if (thread_count == 0)
138 msg << "detected " << thread_count << " threads."; local
453 const size_t thread_count = GetThreadCount(); local
454 if (thread_count != 1) {
455 GTEST_LOG(WARNING, DeathTestThreadWarning(thread_count));
  /external/protobuf/gtest/src/
gtest-port.cc 82 mach_msg_type_number_t thread_count; local
84 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
90 sizeof(thread_t) * thread_count);
91 return static_cast<size_t>(thread_count);
gtest-death-test.cc 169 // caller not to pass a thread_count of 1.
170 static String DeathTestThreadWarning(size_t thread_count) {
174 if (thread_count == 0)
177 msg << "detected " << thread_count << " threads."; local
739 const size_t thread_count = GetThreadCount(); local
740 if (thread_count != 1) {
741 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/gtest/src/
gtest-death-test.cc 169 // caller not to pass a thread_count of 1.
170 static String DeathTestThreadWarning(size_t thread_count) {
174 if (thread_count == 0)
177 msg << "detected " << thread_count << " threads."; local
880 const size_t thread_count = GetThreadCount(); local
    [all...]

Completed in 30 milliseconds