Home
last modified time | relevance | path

Searched refs:onEvent (Results 1 – 12 of 12) sorted by relevance

/system/vold/
DNetlinkHandler.h31 virtual void onEvent(NetlinkEvent* evt);
DNetlinkHandler.cpp40 void NetlinkHandler::onEvent(NetlinkEvent* evt) { in onEvent() function in NetlinkHandler
/system/core/libsysutils/include/sysutils/
DNetlinkListener.h46 virtual void onEvent(NetlinkEvent *evt) = 0;
/system/teeui/tools/framebufferizer/src/com/android/framebufferizer/
DNativeRenderer.java31 public static native int onEvent(int x, int y, int event); in onEvent() method in NativeRenderer
/system/core/libsysutils/src/
DNetlinkListener.cpp66 onEvent(evt); in onDataAvailable()
/system/teeui/libteeui/include/teeui/example/
Dexample.h50 virtual EventResult onEvent(uint32_t x, uint32_t y, uint32_t) = 0;
/system/netd/server/
DNetlinkHandler.h42 virtual void onEvent(NetlinkEvent *evt);
DNetlinkHandler.cpp100 void NetlinkHandler::onEvent(NetlinkEvent *evt) { in onEvent() function in android::net::NetlinkHandler
/system/teeui/libteeui/example/
Dtouch_button_example.cpp81 EventResult onEvent(uint32_t x, uint32_t y, uint32_t) override;
92 EventResult GUIStateTouch::onEvent(uint32_t x, uint32_t y, uint32_t) { in onEvent() function in teeui::example::touch_button::GUIStateTouch
Dphys_button_example.cpp58 EventResult onEvent(uint32_t, uint32_t, uint32_t) override { return EventResult::NONE; } in onEvent() function in teeui::example::phys_button::GUIStatePhysButtons
/system/teeui/libteeui_jni/
Dlibteeui_jni.cpp252 return (jint)sCurrentExample->onEvent((uint32_t)x, (uint32_t)y, (uint32_t)event); in Java_com_android_framebufferizer_NativeRenderer_onEvent()
/system/teeui/tools/framebufferizer/src/com/android/framebufferizer/utils/
DFrameBufferBuffer.java261 int value = NativeRenderer.onEvent((int)x, (int)y, MouseEvent.MOUSE_RELEASED); in mouseReleased()