Home
last modified time | relevance | path

Searched refs:SendSignalsToIgnore (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/
H A DGDBRemoteCommunicationClientTest.cpp307 TEST_F(GDBRemoteCommunicationClientTest, SendSignalsToIgnore) { in TEST_F() argument
309 return client.SendSignalsToIgnore({2, 3, 5, 7, 0xB, 0xD, 0x11}); in TEST_F()
316 return client.SendSignalsToIgnore(std::vector<int32_t>()); in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h465 Status SendSignalsToIgnore(llvm::ArrayRef<int32_t> signals);
H A DGDBRemoteCommunicationClient.cpp4183 Status GDBRemoteCommunicationClient::SendSignalsToIgnore( in SendSignalsToIgnore() function in GDBRemoteCommunicationClient
H A DProcessGDBRemote.cpp3698 Status error = m_gdb_comm.SendSignalsToIgnore(signals_to_ignore); in UpdateAutomaticSignalFiltering()