| /system/ulib/async/include/lib/async/cpp/ |
| A D | task.h | 151 static void CallHandler(async_dispatcher_t* dispatcher, async_task_t* task, zx_status_t status); 169 : TaskBase(&TaskMethod::CallHandler), instance_(instance) {} in TaskMethod() 173 … static void CallHandler(async_dispatcher_t* dispatcher, async_task_t* task, zx_status_t status) { in CallHandler() function 196 static void CallHandler(async_dispatcher_t* dispatcher, async_task_t* task, zx_status_t status); 216 : TaskBase(&TaskClosureMethod::CallHandler), instance_(instance) {} in TaskClosureMethod() 220 … static void CallHandler(async_dispatcher_t* dispatcher, async_task_t* task, zx_status_t status) { in CallHandler() function
|
| A D | receiver.h | 80 static void CallHandler(async_dispatcher_t* dispatcher, async_receiver_t* receiver, 101 : ReceiverBase(&ReceiverMethod::CallHandler), instance_(instance) {} in ReceiverMethod() 104 static void CallHandler(async_dispatcher_t* dispatcher, async_receiver_t* receiver, in CallHandler() function
|
| A D | exception.h | 93 static void CallHandler(async_dispatcher_t* dispatcher, 116 : ExceptionBase(task, options, &ExceptionMethod::CallHandler), in ExceptionMethod() 120 static void CallHandler(async_dispatcher_t* dispatcher, in CallHandler() function
|
| A D | trap.h | 86 static void CallHandler(async_dispatcher_t* dispatcher, async_guest_bell_trap_t* trap, 107 : GuestBellTrapBase(&GuestBellTrapMethod::CallHandler), in GuestBellTrapMethod() 111 static void CallHandler(async_dispatcher_t* dispatcher, async_guest_bell_trap_t* trap, in CallHandler() function
|
| A D | wait.h | 114 static void CallHandler(async_dispatcher_t* dispatcher, async_wait_t* wait, 137 : WaitBase(object, trigger, &WaitMethod::CallHandler), 142 static void CallHandler(async_dispatcher_t* dispatcher, async_wait_t* wait, in CallHandler() function
|
| /system/ulib/async/ |
| A D | receiver.cpp | 21 : ReceiverBase(&Receiver::CallHandler), handler_(std::move(handler)) {} in Receiver() 25 void Receiver::CallHandler(async_dispatcher_t* dispatcher, async_receiver_t* receiver, in CallHandler() function in async::Receiver
|
| A D | trap.cpp | 22 : GuestBellTrapBase(&GuestBellTrap::CallHandler), handler_(std::move(handler)) {} in GuestBellTrap() 26 void GuestBellTrap::CallHandler(async_dispatcher_t* dispatcher, async_guest_bell_trap_t* trap, in CallHandler() function in async::GuestBellTrap
|
| A D | task.cpp | 99 : TaskBase(&Task::CallHandler), handler_(std::move(handler)) {} in Task() 103 void Task::CallHandler(async_dispatcher_t* dispatcher, async_task_t* task, zx_status_t status) { in CallHandler() function in async::Task 109 : TaskBase(&TaskClosure::CallHandler), handler_(std::move(handler)) {} in TaskClosure() 113 void TaskClosure::CallHandler(async_dispatcher_t* dispatcher, async_task_t* task, zx_status_t statu… in CallHandler() function in async::TaskClosure
|
| A D | wait.cpp | 52 : WaitBase(object, trigger, &Wait::CallHandler), handler_(std::move(handler)) {} in Wait() 56 void Wait::CallHandler(async_dispatcher_t* dispatcher, async_wait_t* wait, in CallHandler() function in async::Wait
|
| A D | exception.cpp | 62 : ExceptionBase(task, options, &Exception::CallHandler), in Exception() 67 void Exception::CallHandler(async_dispatcher_t* dispatcher, in CallHandler() function in async::Exception
|
| /system/utest/async-loop/ |
| A D | loop_tests.cpp | 34 : async_wait_t{{ASYNC_STATE_INIT}, &TestWait::CallHandler, object, trigger} { in TestWait() 65 static void CallHandler(async_dispatcher_t* dispatcher, async_wait_t* wait, in CallHandler() function in __anon7baa41b40111::TestWait 116 : async_task_t{{ASYNC_STATE_INIT}, &TestTask::CallHandler, ZX_TIME_INFINITE} {} in TestTask() 144 … static void CallHandler(async_dispatcher_t* dispatcher, async_task_t* task, zx_status_t status) { in CallHandler() function in __anon7baa41b40111::TestTask 218 : async_receiver_t{{ASYNC_STATE_INIT}, &TestReceiver::CallHandler} { in TestReceiver() 245 static void CallHandler(async_dispatcher_t* dispatcher, async_receiver_t* receiver, in CallHandler() function in __anon7baa41b40111::TestReceiver 256 : async_exception_t{{ASYNC_STATE_INIT}, &TestException::CallHandler, task, options}, in TestException() 297 static void CallHandler(async_dispatcher_t* dispatcher, in CallHandler() function in __anon7baa41b40111::TestException
|
| /system/ulib/fs/include/fs/ |
| A D | connection.h | 145 zx_status_t CallHandler();
|
| /system/ulib/fs/ |
| A D | connection.cpp | 343 status = CallHandler(); in HandleSignals() 376 zx_status_t Connection::CallHandler() { in CallHandler() function in fs::Connection
|