Lines Matching refs:binder
28 binder::Status VirtualTouchpadService::attach() { in attach()
31 return binder::Status::fromStatusT(PERMISSION_DENIED); in attach()
39 return binder::Status::fromStatusT(ALREADY_EXISTS); in attach()
49 return binder::Status::ok(); in attach()
53 return binder::Status::fromStatusT(error); in attach()
55 return binder::Status::ok(); in attach()
58 binder::Status VirtualTouchpadService::detach() { in detach()
60 return binder::Status::fromStatusT(PERMISSION_DENIED); in detach()
64 return binder::Status::fromStatusT(error); in detach()
66 return binder::Status::ok(); in detach()
69 binder::Status VirtualTouchpadService::touch(int touchpad, float x, float y, in touch()
72 return binder::Status::fromStatusT(PERMISSION_DENIED); in touch()
75 return binder::Status::fromStatusT(error); in touch()
77 return binder::Status::ok(); in touch()
80 binder::Status VirtualTouchpadService::buttonState(int touchpad, int buttons) { in buttonState()
82 return binder::Status::fromStatusT(PERMISSION_DENIED); in buttonState()
85 return binder::Status::fromStatusT(error); in buttonState()
87 return binder::Status::ok(); in buttonState()
90 binder::Status VirtualTouchpadService::scroll(int touchpad, float x, float y) { in scroll()
92 return binder::Status::fromStatusT(PERMISSION_DENIED); in scroll()
95 return binder::Status::fromStatusT(error); in scroll()
97 return binder::Status::ok(); in scroll()