Loading services/accessibility/java/com/android/server/accessibility/KeyEventDispatcher.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -121,7 +121,7 @@ public class KeyEventDispatcher { Service service = boundServices.get(i); Service service = boundServices.get(i); // Key events are handled only by services that declared // Key events are handled only by services that declared // this capability and requested to filter key events. // this capability and requested to filter key events. if (!service.mRequestFilterKeyEvents) { if (!service.mRequestFilterKeyEvents || (service.mServiceInterface == null)) { continue; continue; } } int filterKeyEventBit = service.mAccessibilityServiceInfo.getCapabilities() int filterKeyEventBit = service.mAccessibilityServiceInfo.getCapabilities() Loading Loading
services/accessibility/java/com/android/server/accessibility/KeyEventDispatcher.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -121,7 +121,7 @@ public class KeyEventDispatcher { Service service = boundServices.get(i); Service service = boundServices.get(i); // Key events are handled only by services that declared // Key events are handled only by services that declared // this capability and requested to filter key events. // this capability and requested to filter key events. if (!service.mRequestFilterKeyEvents) { if (!service.mRequestFilterKeyEvents || (service.mServiceInterface == null)) { continue; continue; } } int filterKeyEventBit = service.mAccessibilityServiceInfo.getCapabilities() int filterKeyEventBit = service.mAccessibilityServiceInfo.getCapabilities() Loading