Home
last modified time | relevance | path

Searched refs:streamType (Results 1 – 10 of 10) sorted by relevance

/packages/apps/TV/tuner/src/com/android/tv/tuner/data/
DPsiData.java60 int streamType, in PmtItem() argument
64 mStreamType = streamType; in PmtItem()
DSectionParser.java785 int streamType = data[pos] & 0xff; in parsePMT() local
795 PmtItem pmtItem = new PmtItem(streamType, esPid, audioTracks, captionTracks); in parsePMT()
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
DShadowAudioManager.java87 public int getDevicesForStream(int streamType) { in getDevicesForStream() argument
88 switch (streamType) { in getDevicesForStream()
/packages/services/Car/service/src/com/android/car/audio/
DCarAudioService.java178 int streamType = intent.getIntExtra(AudioManager.EXTRA_VOLUME_STREAM_TYPE, -1);
179 int groupId = getVolumeGroupIdForStreamType(streamType);
181 Log.w(CarLog.TAG_AUDIO, "Unknown stream type: " + streamType);
1030 private int getVolumeGroupIdForStreamType(int streamType) { in getVolumeGroupIdForStreamType() argument
1033 if (streamType == CarAudioDynamicRouting.STREAM_TYPES[i]) { in getVolumeGroupIdForStreamType()
/packages/apps/Settings/src/com/android/settings/sound/
DAudioSwitchPreferenceController.java183 protected boolean isStreamFromOutputDevice(int streamType, int device) { in isStreamFromOutputDevice() argument
184 return (device & mAudioManager.getDevicesForStream(streamType)) != 0; in isStreamFromOutputDevice()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/sound/
DAudioSwitchPreferenceController.java187 protected boolean isStreamFromOutputDevice(int streamType, int device) { in isStreamFromOutputDevice() argument
188 return (device & mAudioManager.getDevicesForStream(streamType)) != 0; in isStreamFromOutputDevice()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
DHeadsetClientService.java160 int streamType = intent.getIntExtra(AudioManager.EXTRA_VOLUME_STREAM_TYPE, -1);
161 if (streamType == AudioManager.STREAM_VOICE_CALL) {
/packages/services/Telecomm/src/com/android/server/telecom/
DInCallTonePlayer.java79 ToneGenerator get (int streamType, int volume); in get() argument
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetService.java344 int streamType = intent.getIntExtra(AudioManager.EXTRA_VOLUME_STREAM_TYPE, -1);
345 if (streamType == AudioManager.STREAM_BLUETOOTH_SCO) {
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DTelecomSystemTest.java457 (streamType, volume) -> mock(ToneGenerator.class), in setupTelecomSystem()