Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h565 enum class CommandHandlingState { enum
571 std::atomic<CommandHandlingState> m_command_state{
572 CommandHandlingState::eIdle};
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2706 auto idle_state = CommandHandlingState::eIdle; in StartHandlingCommand()
2708 idle_state, CommandHandlingState::eInProgress)) in StartHandlingCommand()
2718 auto prev_state = m_command_state.exchange(CommandHandlingState::eIdle); in FinishHandlingCommand()
2719 lldbassert(prev_state != CommandHandlingState::eIdle); in FinishHandlingCommand()
2724 auto in_progress = CommandHandlingState::eInProgress; in InterruptCommand()
2726 in_progress, CommandHandlingState::eInterrupted); in InterruptCommand()
2731 (m_command_state == CommandHandlingState::eInterrupted); in WasInterrupted()