Loading services/core/java/com/android/server/hdmi/HdmiControlService.java +11 −2 Original line number Diff line number Diff line Loading @@ -290,8 +290,7 @@ public final class HdmiControlService extends SystemService { // TODO: Add remaining system information query such as // <Give Device Power Status> and <Request Active Source> handler. default: Slog.w(TAG, "Unsupported cec command:" + message.toString()); return false; return dispatchMessageToAction(message); } } Loading Loading @@ -394,6 +393,16 @@ public final class HdmiControlService extends SystemService { } } private boolean dispatchMessageToAction(HdmiCecMessage message) { for (FeatureAction action : mActions) { if (action.processCommand(message)) { return true; } } Slog.w(TAG, "Unsupported cec command:" + message); return false; } // Record class that monitors the event of the caller of being killed. Used to clean up // the listener list and record list accordingly. private final class HotplugEventListenerRecord implements IBinder.DeathRecipient { Loading Loading
services/core/java/com/android/server/hdmi/HdmiControlService.java +11 −2 Original line number Diff line number Diff line Loading @@ -290,8 +290,7 @@ public final class HdmiControlService extends SystemService { // TODO: Add remaining system information query such as // <Give Device Power Status> and <Request Active Source> handler. default: Slog.w(TAG, "Unsupported cec command:" + message.toString()); return false; return dispatchMessageToAction(message); } } Loading Loading @@ -394,6 +393,16 @@ public final class HdmiControlService extends SystemService { } } private boolean dispatchMessageToAction(HdmiCecMessage message) { for (FeatureAction action : mActions) { if (action.processCommand(message)) { return true; } } Slog.w(TAG, "Unsupported cec command:" + message); return false; } // Record class that monitors the event of the caller of being killed. Used to clean up // the listener list and record list accordingly. private final class HotplugEventListenerRecord implements IBinder.DeathRecipient { Loading