Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/
DLingerMonitor.java136 for (String notifySwitch : notifySwitches) { in isNotificationEnabled()
137 if (TextUtils.isEmpty(notifySwitch)) continue; in isNotificationEnabled()
138 String[] transports = notifySwitch.split("-", 2); in isNotificationEnabled()
140 Log.e(TAG, "Invalid network switch notification configuration: " + notifySwitch); in isNotificationEnabled()
/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.cpp113 mClassifier->notifySwitch(&args); in TEST_F()
DInputDispatcher_test.cpp162 virtual void notifySwitch(nsecs_t, uint32_t, uint32_t, uint32_t) { in notifySwitch() function in android::FakeInputDispatcherPolicy
/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/
DInputListener.cpp191 listener->notifySwitch(this); in notify()
243 void QueuedInputListener::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch() function in android::QueuedInputListener
DInputClassifier.h243 virtual void notifySwitch(const NotifySwitchArgs* args) override;
DInputClassifier.cpp430 void InputClassifier::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch() function in android::InputClassifier
432 mListener->notifySwitch(args); in notifySwitch()
DInputDispatcher.h263 virtual void notifySwitch(nsecs_t when,
426 virtual void notifySwitch(const NotifySwitchArgs* args) override;
DInputDispatcher.cpp2809 void InputDispatcher::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch() function in android::InputDispatcher
2818 mPolicy->notifySwitch(args->eventTime, in notifySwitch()
DInputReader.cpp2058 getListener()->notifySwitch(&args); in sync()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp91 jmethodID notifySwitch; member
245 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
692 void NativeInputManager::notifySwitch(nsecs_t when, in notifySwitch() function in android::NativeInputManager
702 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifySwitch, in notifySwitch()
1843 GET_METHOD_ID(gServiceClassInfo.notifySwitch, clazz, in register_android_server_InputManager()
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java1753 private void notifySwitch(long whenNanos, int switchValues, int switchMask) { in notifySwitch() method in InputManagerService