Home
last modified time | relevance | path

Searched refs:notifySwitch (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/services/core/java/com/android/server/connectivity/
DLingerMonitor.java138 for (String notifySwitch : notifySwitches) { in isNotificationEnabled()
139 if (TextUtils.isEmpty(notifySwitch)) continue; in isNotificationEnabled()
140 String[] transports = notifySwitch.split("-", 2); in isNotificationEnabled()
142 Log.e(TAG, "Invalid network switch notification configuration: " + notifySwitch); in isNotificationEnabled()
/frameworks/native/services/inputflinger/include/
DInputListener.h198 virtual void notifySwitch(const NotifySwitchArgs* args) = 0;
217 virtual void notifySwitch(const NotifySwitchArgs* args);
/frameworks/native/services/inputflinger/tests/
DTestInputListener.h69 virtual void notifySwitch(const NotifySwitchArgs* args);
DTestInputListener.cpp110 void TestInputListener::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch() function in android::TestInputListener
DInputClassifier_test.cpp116 mClassifier->notifySwitch(&args); in TEST_F()
DInputDispatcher_test.cpp164 virtual void notifySwitch(nsecs_t, uint32_t, uint32_t, uint32_t) { in notifySwitch() function in android::inputdispatcher::FakeInputDispatcherPolicy
/frameworks/native/services/inputflinger/reader/mapper/
DSwitchInputMapper.cpp61 getListener()->notifySwitch(&args); in sync()
/frameworks/native/services/inputflinger/dispatcher/include/
DInputDispatcherPolicyInterface.h98 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
/frameworks/native/services/inputflinger/
DInputListener.cpp191 listener->notifySwitch(this); in notify()
243 void QueuedInputListener::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch() function in android::QueuedInputListener
DInputClassifier.cpp388 void InputClassifier::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch() function in android::InputClassifier
390 mListener->notifySwitch(args); in notifySwitch()
DInputClassifier.h229 virtual void notifySwitch(const NotifySwitchArgs* args) override;
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp91 jmethodID notifySwitch; member
247 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
667 void NativeInputManager::notifySwitch(nsecs_t when, in notifySwitch() function in android::NativeInputManager
677 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifySwitch, in notifySwitch()
1858 GET_METHOD_ID(gServiceClassInfo.notifySwitch, clazz, in register_android_server_InputManager()
/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.h91 virtual void notifySwitch(const NotifySwitchArgs* args) override;
DInputDispatcher.cpp2804 void InputDispatcher::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch() function in android::inputdispatcher::InputDispatcher
2813 mPolicy->notifySwitch(args->eventTime, args->switchValues, args->switchMask, policyFlags); in notifySwitch()
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java1824 private void notifySwitch(long whenNanos, int switchValues, int switchMask) { in notifySwitch() method in InputManagerService