Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadList.cpp59 if (m_expression_tid_stack.empty()) in GetExpressionExecutionThread()
61 ThreadSP expr_thread_sp = FindThreadByID(m_expression_tid_stack.back()); in GetExpressionExecutionThread()
69 m_expression_tid_stack.push_back(tid); in PushExpressionExecutionThread()
73 assert(m_expression_tid_stack.back() == tid); in PopExpressionExecutionThread()
74 m_expression_tid_stack.pop_back(); in PopExpressionExecutionThread()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadList.h156 std::vector<lldb::tid_t> m_expression_tid_stack; variable