Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h740 enum class CommandHandlingState { enum
746 std::atomic<CommandHandlingState> m_command_state{
747 CommandHandlingState::eIdle};
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3172 auto idle_state = CommandHandlingState::eIdle; in StartHandlingCommand()
3174 idle_state, CommandHandlingState::eInProgress)) in StartHandlingCommand()
3184 auto prev_state = m_command_state.exchange(CommandHandlingState::eIdle); in FinishHandlingCommand()
3185 lldbassert(prev_state != CommandHandlingState::eIdle); in FinishHandlingCommand()
3190 auto in_progress = CommandHandlingState::eInProgress; in InterruptCommand()
3192 in_progress, CommandHandlingState::eInterrupted); in InterruptCommand()
3200 (m_command_state == CommandHandlingState::eInterrupted); in WasInterrupted()