Home
last modified time | relevance | path

Searched refs:hwSel (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/aidl/
H A DAidlTestUtils.java98 android.hardware.broadcastradio.ProgramSelector hwSel, int hwSignalQuality) { in makeHalProgramInfo() argument
99 return makeHalProgramInfo(hwSel, hwSel.primaryId, hwSel.primaryId, hwSignalQuality); in makeHalProgramInfo()
111 android.hardware.broadcastradio.ProgramSelector hwSel, in makeHalProgramInfo() argument
115 hwInfo.selector = hwSel; in makeHalProgramInfo()
/aosp14/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/hal2/
H A DTestUtils.java99 android.hardware.broadcastradio.V2_0.ProgramSelector hwSel, int hwSignalQuality) { in makeHalProgramInfo() argument
101 hwInfo.selector = hwSel; in makeHalProgramInfo()
102 hwInfo.logicallyTunedTo = hwSel.primaryId; in makeHalProgramInfo()
103 hwInfo.physicallyTunedTo = hwSel.primaryId; in makeHalProgramInfo()
/aosp14/frameworks/base/services/core/java/com/android/server/broadcastradio/aidl/
H A DTunerSession.java209 android.hardware.broadcastradio.ProgramSelector hwSel = in tune() local
211 if (hwSel == null) { in tune()
217 mService.tune(hwSel); in tune()
H A DConversionUtils.java371 android.hardware.broadcastradio.ProgramSelector hwSel = in programSelectorToHalProgramSelector() local
374 hwSel.primaryId = identifierToHalProgramIdentifier(sel.getPrimaryId()); in programSelectorToHalProgramSelector()
380 hwSel.secondaryIds = secondaryIdList.toArray(ProgramIdentifier[]::new); in programSelectorToHalProgramSelector()
381 if (!isValidHalProgramSelector(hwSel)) { in programSelectorToHalProgramSelector()
384 return hwSel; in programSelectorToHalProgramSelector()
/aosp14/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
H A DConvert.java294 android.hardware.broadcastradio.V2_0.ProgramSelector hwSel = in programSelectorToHal() local
297 programIdentifierToHal(hwSel.primaryId, sel.getPrimaryId()); in programSelectorToHal()
299 forEachOrdered(hwSel.secondaryIds::add); in programSelectorToHal()
301 return hwSel; in programSelectorToHal()