Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h605 enum class CommandHandlingState { enum
611 std::atomic<CommandHandlingState> m_command_state{
612 CommandHandlingState::eIdle};
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp2745 auto idle_state = CommandHandlingState::eIdle; in StartHandlingCommand()
2747 idle_state, CommandHandlingState::eInProgress)) in StartHandlingCommand()
2757 auto prev_state = m_command_state.exchange(CommandHandlingState::eIdle); in FinishHandlingCommand()
2758 lldbassert(prev_state != CommandHandlingState::eIdle); in FinishHandlingCommand()
2763 auto in_progress = CommandHandlingState::eInProgress; in InterruptCommand()
2765 in_progress, CommandHandlingState::eInterrupted); in InterruptCommand()
2770 (m_command_state == CommandHandlingState::eInterrupted); in WasInterrupted()