Home
last modified time | relevance | path

Searched refs:notifyDropWindow (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/services/inputflinger/dispatcher/include/
DInputDispatcherPolicyInterface.h167 virtual void notifyDropWindow(const sp<IBinder>& token, float x, float y) = 0;
/frameworks/native/services/inputflinger/tests/
DFakeInputDispatcherPolicy.h205 void notifyDropWindow(const sp<IBinder>& token, float x, float y) override;
DFakeInputDispatcherPolicy.cpp475 void FakeInputDispatcherPolicy::notifyDropWindow(const sp<IBinder>& token, float x, float y) { in notifyDropWindow() function in android::FakeInputDispatcherPolicy
/frameworks/base/services/core/java/com/android/server/wm/
DInputManagerCallback.java250 public void notifyDropWindow(IBinder token, float x, float y) { in notifyDropWindow() method in InputManagerCallback
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp142 jmethodID notifyDropWindow; member
362 void notifyDropWindow(const sp<IBinder>& token, float x, float y) override;
1048 void NativeInputManager::notifyDropWindow(const sp<IBinder>& token, float x, float y) { in notifyDropWindow() function in android::NativeInputManager
1058 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifyDropWindow, tokenObj, x, y); in notifyDropWindow()
2889 GET_METHOD_ID(gServiceClassInfo.notifyDropWindow, clazz, "notifyDropWindow", in register_android_server_InputManager()
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java2311 private void notifyDropWindow(IBinder token, float x, float y) { in notifyDropWindow() method in InputManagerService
2312 mWindowManagerCallbacks.notifyDropWindow(token, x, y); in notifyDropWindow()
2803 void notifyDropWindow(IBinder token, float x, float y); in notifyDropWindow() method
/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.cpp6460 mPolicy.notifyDropWindow(token, x, y); in sendDropWindowCommandLocked()