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

  /external/v8/tools/oom_dump/
oom_dump.cc 124 MinidumpThreadList* thread_list = minidump.GetThreadList(); local
125 CHECK(thread_list);
128 thread_list->GetThreadByID(exception_thread_id);
  /external/qemu/memcheck/
memcheck_proc_management.c 50 static QLIST_HEAD(thread_list, ThreadDesc) thread_list;
81 QLIST_INSERT_HEAD(&thread_list, new_thread, global_entry);
186 QLIST_FOREACH(thread, &thread_list, global_entry) {
211 QLIST_FOREACH(thread, &thread_list, global_entry) {
312 QLIST_INIT(&thread_list);
  /external/chromium/testing/gtest/src/
gtest-port.cc 87 thread_act_array_t thread_list; local
88 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
90 // task_threads allocates resources in thread_list and we need to free them
93 reinterpret_cast<vm_address_t>(thread_list),
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 85 thread_act_array_t thread_list; local
86 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
88 // task_threads allocates resources in thread_list and we need to free them
91 reinterpret_cast<vm_address_t>(thread_list),
  /external/protobuf/gtest/src/
gtest-port.cc 83 thread_act_array_t thread_list; local
84 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
86 // task_threads allocates resources in thread_list and we need to free them
89 reinterpret_cast<vm_address_t>(thread_list),
  /external/v8/tools/
grokdump.py 306 thread_list = MINIDUMP_THREAD_LIST.Read(self.minidump, d.location.rva)
307 assert ctypes.sizeof(thread_list) == d.location.data_size
308 DebugPrint(thread_list)
309 for thread in thread_list.threads:

Completed in 600 milliseconds