Home
last modified time | relevance | path

Searched refs:newActive (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/hdmi/
DActiveSourceHandler.java62 void process(ActiveSource newActive, int deviceType) { in process() argument
65 HdmiDeviceInfo device = mService.getDeviceInfo(newActive.logicalAddress); in process()
67 tv.startNewDeviceAction(newActive, deviceType); in process()
72 tv.updateActiveSource(newActive); in process()
74 if (!old.equals(newActive)) { in process()
77 tv.updateActiveInput(newActive.physicalAddress, notifyInputChange); in process()
91 tv.startRoutingControl(newActive.physicalAddress, current.physicalAddress, true, in process()
DHdmiCecLocalDevice.java779 void setActiveSource(ActiveSource newActive) { in setActiveSource() argument
780 setActiveSource(newActive.logicalAddress, newActive.physicalAddress); in setActiveSource()
DHdmiCecLocalDeviceTv.java329 void updateActiveSource(ActiveSource newActive) { in updateActiveSource() argument
332 if (mActiveSource.equals(newActive)) { in updateActiveSource()
335 setActiveSource(newActive); in updateActiveSource()
336 int logicalAddress = newActive.logicalAddress; in updateActiveSource()
338 if (mService.pathToPortId(newActive.physicalAddress) == getActivePortId()) { in updateActiveSource()
/frameworks/support/lifecycle/livedata-core/src/main/java/androidx/lifecycle/
DLiveData.java402 void activeStateChanged(boolean newActive) { in activeStateChanged() argument
403 if (newActive == mActive) { in activeStateChanged()
408 mActive = newActive; in activeStateChanged()