Home
last modified time | relevance | path

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

/external/llvm-project/lldb/bindings/interface/
DSBCommandInterpreter.i168 WasInterrupted () const;
/external/llvm-project/lldb/include/lldb/Utility/
DStatus.h195 bool WasInterrupted() const;
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp137 bool SBCommandInterpreter::WasInterrupted() const { in WasInterrupted() function in SBCommandInterpreter
138 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBCommandInterpreter, WasInterrupted); in WasInterrupted()
140 return (IsValid() ? m_opaque_ptr->WasInterrupted() : false); in WasInterrupted()
782 LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreter, WasInterrupted, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBCommandInterpreter.h208 bool WasInterrupted() const;
/external/llvm-project/lldb/source/Utility/
DStatus.cpp290 bool Status::WasInterrupted() const { in WasInterrupted() function in Status
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp2045 if (m_interpreter.WasInterrupted()) in DoExecute()
2075 if (m_interpreter.WasInterrupted()) in DoExecute()
2133 if (m_interpreter.WasInterrupted()) in DoExecute()
2156 if (m_interpreter.WasInterrupted()) in DoExecute()
2219 if (m_interpreter.WasInterrupted()) in DoExecute()
2245 if (m_interpreter.WasInterrupted()) in DoExecute()
2292 if (m_interpreter.WasInterrupted()) in DoExecute()
2315 if (m_interpreter.WasInterrupted()) in DoExecute()
2385 if (m_interpreter.WasInterrupted()) in DoExecute()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h308 bool WasInterrupted() const;
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp1659 if (WasInterrupted()) { in HandleCommand()
2294 for (size_t idx = 0; idx < num_lines && !WasInterrupted(); idx++) { in HandleCommands()
2768 bool CommandInterpreter::WasInterrupted() const { in WasInterrupted() function in CommandInterpreter
2780 while (size > 0 && !WasInterrupted()) { in PrintCommandOutput()
2817 if (WasInterrupted()) in IOHandlerInputComplete()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp957 } else if (error.WasInterrupted()) { in ConnectToDebugserver()