Home
last modified time | relevance | path

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

/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachThreadList.cpp391 const DNBThreadResumeAction *action_ptr = thread_actions.GetFirst(); in ProcessWillResume() local
393 for (size_t i = 0; i < num_actions; i++, action_ptr++) { in ProcessWillResume()
394 if (action_ptr->state == eStateStepping || in ProcessWillResume()
395 action_ptr->state == eStateRunning) { in ProcessWillResume()
396 solo_thread = action_ptr->tid; in ProcessWillResume()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-scheduler.hpp20 typedef std::shared_ptr<action_type> action_ptr; typedef
31 inline action_ptr shared_empty() { in shared_empty()
32 static action_ptr shared_empty = std::make_shared<detail::action_type>(); in shared_empty()
133 detail::action_ptr inner;
138 explicit action(detail::action_ptr i) in action()