HomeSort by relevance Sort by last modified time
    Searched refs:soundPath (Results 1 - 4 of 4) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/
NotificationChannels.java 47 final String soundPath = Settings.Global.getString(context.getContentResolver(),
49 batteryChannel.setSound(Uri.parse("file://" + soundPath), new AudioAttributes.Builder()
  /frameworks/base/services/core/java/com/android/server/
DockObserver.java 203 final String soundPath = Settings.Global.getString(cr, whichSound);
204 if (soundPath != null) {
205 final Uri soundUri = Uri.parse("file://" + soundPath);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
KeyguardViewMediator.java 735 String soundPath = Settings.Global.getString(cr, Settings.Global.LOCK_SOUND);
736 if (soundPath != null) {
737 mLockSoundId = mLockSounds.load(soundPath, 1);
739 if (soundPath == null || mLockSoundId == 0) {
740 Log.w(TAG, "failed to load lock sound from " + soundPath);
742 soundPath = Settings.Global.getString(cr, Settings.Global.UNLOCK_SOUND);
743 if (soundPath != null) {
744 mUnlockSoundId = mLockSounds.load(soundPath, 1);
746 if (soundPath == null || mUnlockSoundId == 0) {
747 Log.w(TAG, "failed to load unlock sound from " + soundPath);
    [all...]
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 741 final String soundPath = Settings.Global.getString(mContext.getContentResolver(),
743 if (isChargingFeedbackEnabled() && soundPath != null) {
744 final Uri soundUri = Uri.parse("file://" + soundPath);
    [all...]

Completed in 137 milliseconds