Home
last modified time | relevance | path

Searched refs:stopinfo_sp (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/unittests/Thread/
DThreadTest.cpp120 StopInfoSP stopinfo_sp = in TEST_F() local
122 ASSERT_TRUE(stopinfo_sp->IsValid() == true); in TEST_F()
128 ASSERT_TRUE(stopinfo_sp->IsValid() == false); in TEST_F()
130 thread_sp->SetStopInfo(stopinfo_sp); in TEST_F()
131 ASSERT_TRUE(stopinfo_sp->IsValid() == true); in TEST_F()
155 StopInfoSP stopinfo_sp = in TEST_F() local
157 ASSERT_TRUE(stopinfo_sp); in TEST_F()
159 thread_sp->SetStopInfo(stopinfo_sp); in TEST_F()
165 ASSERT_TRUE(stopinfo_sp->IsValid() == false); in TEST_F()
167 ASSERT_TRUE(new_stopinfo_sp && stopinfo_sp->IsValid() == true); in TEST_F()
/external/llvm-project/lldb/unittests/Process/
DProcessEventDataTest.cpp136 StopInfoSP stopinfo_sp = in CreateThread() local
138 static_cast<DummyStopInfo *>(stopinfo_sp.get())->m_should_stop = in CreateThread()
140 if (stopinfo_sp == nullptr) { in CreateThread()
144 thread_sp->SetStopInfo(stopinfo_sp); in CreateThread()