Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h691 enum class CommandHandlingState { enum
697 std::atomic<CommandHandlingState> m_command_state{
698 CommandHandlingState::eIdle};
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3003 auto idle_state = CommandHandlingState::eIdle; in StartHandlingCommand()
3005 idle_state, CommandHandlingState::eInProgress)) in StartHandlingCommand()
3015 auto prev_state = m_command_state.exchange(CommandHandlingState::eIdle); in FinishHandlingCommand()
3016 lldbassert(prev_state != CommandHandlingState::eIdle); in FinishHandlingCommand()
3021 auto in_progress = CommandHandlingState::eInProgress; in InterruptCommand()
3023 in_progress, CommandHandlingState::eInterrupted); in InterruptCommand()
3028 (m_command_state == CommandHandlingState::eInterrupted); in WasInterrupted()