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

  /frameworks/base/cmds/media/src/com/android/commands/media/
VolumeCtrl.java 36 * Command line tool to exercise AudioService.setStreamVolume()
37 * and AudioService.adjustStreamVolume()
130 log(LOG_V, "Connecting to AudioService");
131 IAudioService audioService = IAudioService.Stub.asInterface(ServiceManager.checkService(
133 if (audioService == null) {
140 if ((volIndex > audioService.getStreamMaxVolume(stream))
141 || (volIndex < audioService.getStreamMinVolume(stream))) {
144 audioService.getStreamMinVolume(stream),
145 audioService.getStreamMaxVolume(stream)));
155 audioService.setStreamVolume(stream, volIndex, flag, pack/*callingPackage*/)
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
AudioPlaybackMonitor.java 78 static AudioPlaybackMonitor getInstance(Context context, IAudioService audioService) {
80 sInstance = new AudioPlaybackMonitor(context, audioService);
85 private AudioPlaybackMonitor(Context context, IAudioService audioService) {
88 audioService.registerPlaybackCallback(this);
  /frameworks/base/media/java/android/media/
RingtoneManager.java 778 IAudioService audioService = IAudioService.Stub.asInterface(b);
780 audioService.disableRingtoneSync(userContext.getUserId());
    [all...]
  /packages/services/Car/service/src/com/android/car/
CarVolumeControllerFactory.java 54 CarAudioService audioService, AudioHalService audioHal, CarInputService inputService) {
61 return new CarExternalVolumeController(context, audioService, audioHal, inputService);
161 IAudioService audioService = getAudioService();
164 if (audioService != null) {
165 audioService.adjustSuggestedStreamVolume(
175 IAudioService audioService = IAudioService.Stub.asInterface(
177 if (audioService == null) {
180 return audioService;
357 public CarExternalVolumeController(Context context, CarAudioService audioService,
360 mAudioService = audioService;
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
TelecomSystemTest.java 516 IAudioService audioService = mock(IAudioService.class);
530 }).when(audioService)
536 return audioService;
    [all...]
  /frameworks/base/core/java/android/hardware/
Camera.java 262 IAudioService audioService = IAudioService.Stub.asInterface(b);
264 if (audioService.isCameraSoundForced()) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/policy/
PhoneWindowManager.java     [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 

Completed in 416 milliseconds