HomeSort by relevance Sort by last modified time
    Searched defs:thread_count (Results 26 - 39 of 39) sorted by null

12

  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 91 mach_msg_type_number_t thread_count; local
93 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
99 sizeof(thread_t) * thread_count);
100 return static_cast<size_t>(thread_count);
    [all...]
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.cc 972 mach_msg_type_number_t thread_count; local
975 if (task_threads(crashing_task_, &threads_for_task, &thread_count))
980 non_generator_thread_count = thread_count - 1;
982 non_generator_thread_count = thread_count;
995 for (unsigned int i = 0; i < thread_count; ++i) {
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
minidump.h 321 virtual unsigned int thread_count() const { function in class:google_breakpad::MinidumpThreadList
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static String DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
825 const size_t thread_count = GetThreadCount(); local
826 if (thread_count != 1) {
827 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/gtest/src/
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
789 const size_t thread_count = GetThreadCount(); local
790 if (thread_count != 1) {
791 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
787 const size_t thread_count = GetThreadCount(); local
788 if (thread_count != 1) {
789 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/protobuf/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
739 const size_t thread_count = GetThreadCount(); local
740 if (thread_count != 1) {
741 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /art/runtime/gc/collector/
mark_sweep.cc 861 size_t thread_count = GetThreadCount(paused) local
1013 size_t thread_count = GetThreadCount(false); local
1396 size_t thread_count = GetThreadCount(paused); local
    [all...]
  /bionic/tests/
pthread_test.cpp 1822 size_t thread_count; member in struct:BarrierTestHelperData
    [all...]
  /external/google-breakpad/src/processor/
minidump.cc 1561 uint32_t thread_count; local
1619 thread_index << "\/" << thread_count; local
1626 thread_index << "\/" << thread_count; local
1634 thread_index << "\/" << thread_count; local
    [all...]
  /external/opencv3/3rdparty/include/ffmpeg_/libavcodec/
avcodec.h 828 * Codec supports avctx->thread_count == 0 (auto).
2603 int thread_count; member in struct:AVCodecContext
    [all...]

Completed in 2941 milliseconds

12