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/keyguard/
KeyguardViewMediator.java 506 String soundPath = Settings.Global.getString(cr, Settings.Global.LOCK_SOUND);
507 if (soundPath != null) {
508 mLockSoundId = mLockSounds.load(soundPath, 1);
510 if (soundPath == null || mLockSoundId == 0) {
511 Log.w(TAG, "failed to load lock sound from " + soundPath);
513 soundPath = Settings.Global.getString(cr, Settings.Global.UNLOCK_SOUND);
514 if (soundPath != null) {
515 mUnlockSoundId = mLockSounds.load(soundPath, 1);
517 if (soundPath == null || mUnlockSoundId == 0) {
518 Log.w(TAG, "failed to load unlock sound from " + soundPath);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
DockObserver.java 185 final String soundPath = Settings.Global.getString(cr, whichSound);
186 if (soundPath != null) {
187 final Uri soundUri = Uri.parse("file://" + soundPath);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerNotificationWarnings.java 315 final String soundPath = Settings.Global.getString(cr,
317 if (soundPath != null) {
318 final Uri soundUri = Uri.parse("file://" + soundPath);
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 485 final String soundPath = Settings.Global.getString(mContext.getContentResolver(),
487 if (soundPath != null) {
488 final Uri soundUri = Uri.parse("file://" + soundPath);

Completed in 181 milliseconds