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.h723 enum class CommandHandlingState { enum
729 std::atomic<CommandHandlingState> m_command_state{
730 CommandHandlingState::eIdle};
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3020 auto idle_state = CommandHandlingState::eIdle; in StartHandlingCommand()
3022 idle_state, CommandHandlingState::eInProgress)) in StartHandlingCommand()
3032 auto prev_state = m_command_state.exchange(CommandHandlingState::eIdle); in FinishHandlingCommand()
3033 lldbassert(prev_state != CommandHandlingState::eIdle); in FinishHandlingCommand()
3038 auto in_progress = CommandHandlingState::eInProgress; in InterruptCommand()
3040 in_progress, CommandHandlingState::eInterrupted); in InterruptCommand()
3048 (m_command_state == CommandHandlingState::eInterrupted); in WasInterrupted()