Home
last modified time | relevance | path

Searched refs:WaitSetDispatcher (Results 1 – 4 of 4) sorted by relevance

/external/libmojo/mojo/edk/system/
Dwait_set_dispatcher.cc18 class WaitSetDispatcher::Waiter final : public Awakable {
20 explicit Waiter(WaitSetDispatcher* dispatcher) : dispatcher_(dispatcher) {} in Waiter()
32 WaitSetDispatcher* const dispatcher_;
35 WaitSetDispatcher::WaitState::WaitState() {} in WaitState()
37 WaitSetDispatcher::WaitState::WaitState(const WaitState& other) = default;
39 WaitSetDispatcher::WaitState::~WaitState() {} in ~WaitState()
41 WaitSetDispatcher::WaitSetDispatcher() in WaitSetDispatcher() function in mojo::edk::WaitSetDispatcher
42 : waiter_(new WaitSetDispatcher::Waiter(this)) {} in WaitSetDispatcher()
44 Dispatcher::Type WaitSetDispatcher::GetType() const { in GetType()
48 MojoResult WaitSetDispatcher::Close() { in Close()
[all …]
Dwait_set_dispatcher_unittest.cc42 const scoped_refptr<WaitSetDispatcher>& wait_set, in GetOneReadyDispatcher()
126 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); in TEST_F()
193 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); in TEST_F()
248 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); in TEST_F()
371 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); in TEST_F()
398 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); in TEST_F()
418 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); in TEST_F()
463 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); in TEST_F()
465 scoped_refptr<WaitSetDispatcher> nested_wait_set = new WaitSetDispatcher(); in TEST_F()
Dwait_set_dispatcher.h24 class MOJO_SYSTEM_IMPL_EXPORT WaitSetDispatcher : public Dispatcher {
26 WaitSetDispatcher();
63 ~WaitSetDispatcher() override;
97 DISALLOW_COPY_AND_ASSIGN(WaitSetDispatcher);
Dcore.cc523 scoped_refptr<WaitSetDispatcher> dispatcher = new WaitSetDispatcher(); in CreateWaitSet()