Home
last modified time | relevance | path

Searched refs:thread_infos (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/unittests/tools/lldb-server/tests/
DThreadIdsInJstopinfoTest.cpp48 auto thread_infos = jthreads_info->GetThreadInfos(); in TEST_F() local
49 ASSERT_EQ(stop_reply_pcs.size(), thread_infos.size()) in TEST_F()
54 ASSERT_TRUE(thread_infos.find(tid) != thread_infos.end()) in TEST_F()
56 EXPECT_THAT(thread_infos[tid].ReadRegister(pc_reg), in TEST_F()
/external/rust/crates/rayon-core/src/
Dregistry.rs136 thread_infos: Vec<ThreadInfo>, field
240 thread_infos: stealers.into_iter().map(ThreadInfo::new).collect(), in new()
323 self.thread_infos.len() in num_threads()
347 for info in &self.thread_infos { in wait_until_primed()
356 for info in &self.thread_infos { in wait_until_stopped()
540 for (i, thread_info) in self.thread_infos.iter().enumerate() { in terminate()
765 let thread_infos = &self.registry.thread_infos.as_slice(); in steal() localVariable
766 let num_threads = thread_infos.len(); in steal()
778 let victim = &thread_infos[victim_index]; in steal()
814 registry.thread_infos[index].primed.set(); in main_loop()
[all …]
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1536 StructuredData::Array *thread_infos = m_jthreadsinfo_sp->GetAsArray(); in UpdateThreadIDList() local
1537 if (thread_infos && thread_infos->GetSize() > 0) { in UpdateThreadIDList()
1540 thread_infos->ForEach([this](StructuredData::Object *object) -> bool { in UpdateThreadIDList()
1675 StructuredData::Array *thread_infos = thread_infos_sp->GetAsArray(); in GetThreadStopInfoFromJSON() local
1676 if (thread_infos) { in GetThreadStopInfoFromJSON()
1678 const size_t n = thread_infos->GetSize(); in GetThreadStopInfoFromJSON()
1681 thread_infos->GetItemAtIndex(i)->GetAsDictionary(); in GetThreadStopInfoFromJSON()
2675 StructuredData::Array *thread_infos = m_jthreadsinfo_sp->GetAsArray(); in WillPublicStop() local
2676 if (thread_infos) { in WillPublicStop()
2677 const size_t n = thread_infos->GetSize(); in WillPublicStop()
[all …]