Home
last modified time | relevance | path

Searched refs:WasInterrupted (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DStatus.h242 bool WasInterrupted() const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBCommandInterpreter.h179 bool WasInterrupted() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DStatus.cpp316 bool Status::WasInterrupted() const { in WasInterrupted() function in Status
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBCommandInterpreter.cpp168 bool SBCommandInterpreter::WasInterrupted() const { in WasInterrupted() function in SBCommandInterpreter
169 return (IsValid() ? m_opaque_ptr->WasInterrupted() : false); in WasInterrupted()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp2071 if (m_interpreter.WasInterrupted()) in DoExecute()
2101 if (m_interpreter.WasInterrupted()) in DoExecute()
2168 if (m_interpreter.WasInterrupted()) in DoExecute()
2191 if (m_interpreter.WasInterrupted()) in DoExecute()
2263 if (m_interpreter.WasInterrupted()) in DoExecute()
2289 if (m_interpreter.WasInterrupted()) in DoExecute()
2344 if (m_interpreter.WasInterrupted()) in DoExecute()
2367 if (m_interpreter.WasInterrupted()) in DoExecute()
2436 if (m_interpreter.WasInterrupted()) in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h256 bool WasInterrupted() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1622 if (WasInterrupted()) { in HandleCommand()
2226 for (size_t idx = 0; idx < num_lines && !WasInterrupted(); idx++) { in HandleCommands()
2729 bool CommandInterpreter::WasInterrupted() const { in WasInterrupted() function in CommandInterpreter
2741 while (size > 0 && !WasInterrupted()) { in PrintCommandOutput()
2778 if (WasInterrupted()) in IOHandlerInputComplete()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1027 } else if (error.WasInterrupted()) { in ConnectToDebugserver()