|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/lldb/include/lldb/Utility/Listener.h 86 bool GetEvent(lldb::EventSP &event_sp, const Timeout<std::micro> &timeout);
References
tools/lldb/source/API/SBListener.cpp 156 if (m_opaque_sp->GetEvent(event_sp, timeout)) {
259 if (m_opaque_sp->GetEvent(event_sp, std::chrono::seconds(0))) {
tools/lldb/source/Core/Communication.cpp 151 while (listener_sp->GetEvent(event_sp, timeout)) {
399 listener_sp->GetEvent(event_sp, llvm::None);
tools/lldb/source/Core/Debugger.cpp 1434 if (listener_sp->GetEvent(event_sp, llvm::None)) {
1526 listener_sp->GetEvent(event_sp, llvm::None);
tools/lldb/source/Core/IOHandler.cpp 1824 listener_sp->GetEvent(event_sp, std::chrono::seconds(0));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp 260 if (server->m_async_listener_sp->GetEvent(event_sp, llvm::None)) {
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp 1488 if (!listener_sp->GetEvent(event_sp, std::chrono::seconds(5))) {
3708 if (process->m_async_listener_sp->GetEvent(event_sp, llvm::None)) {
tools/lldb/source/Target/Process.cpp 1076 return m_private_state_listener_sp->GetEvent(event_sp, timeout);
4872 listener_sp->GetEvent(event_sp, GetUtilityExpressionTimeout());
4963 got_event = listener_sp->GetEvent(event_sp, timeout);
5101 listener_sp->GetEvent(event_sp, GetUtilityExpressionTimeout());
tools/lldb/unittests/Utility/BroadcasterTest.cpp 32 EXPECT_TRUE(listener1_sp->GetEvent(event_sp, timeout));
42 EXPECT_TRUE(listener2_sp->GetEvent(event_sp, timeout));
47 EXPECT_TRUE(listener1_sp->GetEvent(event_sp, timeout));
49 EXPECT_TRUE(listener2_sp->GetEvent(event_sp, timeout));
55 EXPECT_TRUE(listener1_sp->GetEvent(event_sp, timeout));
tools/lldb/unittests/Utility/ListenerTest.cpp 31 EXPECT_FALSE(listener_sp->GetEvent(event_sp, timeout));
40 EXPECT_TRUE(listener_sp->GetEvent(event_sp, timeout));
68 EXPECT_FALSE(listener_sp->GetEvent(event_sp, timeout));
77 EXPECT_TRUE(listener_sp->GetEvent(event_sp, timeout));
101 EXPECT_TRUE(listener_sp->GetEvent(event_sp, llvm::None));