/external/libmojo/mojo/edk/system/ |
wait_set_dispatcher_unittest.cc | 42 const scoped_refptr<WaitSetDispatcher>& wait_set, 48 MojoResult result = wait_set->GetReadyDispatchers( 126 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); local 127 CloseOnShutdown(wait_set); 129 wait_set->AddWaitingDispatcher(dispatcher0_, 132 wait_set->AddWaitingDispatcher(dispatcher1_, 141 wait_set->AddAwakable(&w, MOJO_HANDLE_SIGNAL_READABLE, 0, &hss)); 147 GetOneReadyDispatcher(wait_set, &woken_dispatcher, &context)); 152 wait_set->AddAwakable(&w, MOJO_HANDLE_SIGNAL_READABLE, 0, &hss)); 156 GetOneReadyDispatcher(wait_set, &woken_dispatcher, &context)) 193 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); local 248 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); local 371 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); local 398 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); local 418 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); local 463 scoped_refptr<WaitSetDispatcher> wait_set = new WaitSetDispatcher(); local [all...] |
/external/libmojo/mojo/public/c/system/ |
thunks.h | 107 MojoResult (*CreateWaitSet)(MojoHandle* wait_set); 108 MojoResult (*AddHandle)(MojoHandle wait_set, 111 MojoResult (*RemoveHandle)(MojoHandle wait_set, 113 MojoResult (*GetReadyHandles)(MojoHandle wait_set,
|
thunks.cc | 161 MojoResult MojoCreateWaitSet(MojoHandle* wait_set) { 163 return g_thunks.CreateWaitSet(wait_set); 166 MojoResult MojoAddHandle(MojoHandle wait_set, 170 return g_thunks.AddHandle(wait_set, handle, signals); 173 MojoResult MojoRemoveHandle(MojoHandle wait_set, MojoHandle handle) { 175 return g_thunks.RemoveHandle(wait_set, handle); 178 MojoResult MojoGetReadyHandles(MojoHandle wait_set, 184 return g_thunks.GetReadyHandles(wait_set, count, handles, results,
|
/bionic/tests/ |
signal_test.cpp | 139 sigset_t wait_set; local 140 sigemptyset(&wait_set); 141 sigaddset(&wait_set, SIGALRM); 147 ASSERT_EQ(0, sigwait(&wait_set, &received_signal));
|
pthread_test.cpp | 354 sigset_t wait_set; local 355 sigfillset(&wait_set); 356 return reinterpret_cast<void*>(sigwait(&wait_set, reinterpret_cast<int*>(arg))); [all...] |