Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h679 enum class CommandHandlingState { enum
685 std::atomic<CommandHandlingState> m_command_state{
686 CommandHandlingState::eIdle};
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2955 auto idle_state = CommandHandlingState::eIdle; in StartHandlingCommand()
2957 idle_state, CommandHandlingState::eInProgress)) in StartHandlingCommand()
2967 auto prev_state = m_command_state.exchange(CommandHandlingState::eIdle); in FinishHandlingCommand()
2968 lldbassert(prev_state != CommandHandlingState::eIdle); in FinishHandlingCommand()
2973 auto in_progress = CommandHandlingState::eInProgress; in InterruptCommand()
2975 in_progress, CommandHandlingState::eInterrupted); in InterruptCommand()
2980 (m_command_state == CommandHandlingState::eInterrupted); in WasInterrupted()