HomeSort by relevance Sort by last modified time
    Searched defs:ActiveSource (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/
QNCSmmCore.c 607 QNC_SMM_SOURCE_DESC ActiveSource = NULL_SOURCE_DESC_INITIALIZER;
675 CopyMem (&ActiveSource, &RecordInDb->SrcDesc, sizeof (ActiveSource));
691 if (CompareSources (&RecordToExhaust->SrcDesc, &ActiveSource)) {
765 QNCSmmClearSource (&ActiveSource);
770 ActiveRecordInDb.ClearSource (&ActiveSource);
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecLocalDevice.java 63 static class ActiveSource {
67 public ActiveSource() {
70 public ActiveSource(int logical, int physical) {
74 public static ActiveSource of(ActiveSource source) {
75 return new ActiveSource(source.logicalAddress, source.physicalAddress);
77 public static ActiveSource of(int logical, int physical) {
78 return new ActiveSource(logical, physical);
92 if (obj instanceof ActiveSource) {
93 ActiveSource that = (ActiveSource) obj
    [all...]
HdmiCecLocalDeviceTv.java 282 ActiveSource active = getActiveSource();
316 HdmiCecMessage activeSource = HdmiCecMessageBuilder.buildActiveSource(
318 mService.sendCecCommand(activeSource);
325 updateActiveSource(ActiveSource.of(logicalAddress, physicalAddress));
329 void updateActiveSource(ActiveSource newActive) {
379 ActiveSource activeSource = getActiveSource();
380 HdmiDeviceInfo info = getCecDeviceInfo(activeSource.logicalAddress);
481 ActiveSource activeSource = ActiveSource.of(logicalAddress, physicalAddress)
    [all...]

Completed in 230 milliseconds