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 552 String soundPath = Settings.Global.getString(cr, Settings.Global.LOCK_SOUND);
553 if (soundPath != null) {
554 mLockSoundId = mLockSounds.load(soundPath, 1);
556 if (soundPath == null || mLockSoundId == 0) {
557 Log.w(TAG, "failed to load lock sound from " + soundPath);
559 soundPath = Settings.Global.getString(cr, Settings.Global.UNLOCK_SOUND);
560 if (soundPath != null) {
561 mUnlockSoundId = mLockSounds.load(soundPath, 1);
563 if (soundPath == null || mUnlockSoundId == 0) {
564 Log.w(TAG, "failed to load unlock sound from " + soundPath);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
DockObserver.java 193 final String soundPath = Settings.Global.getString(cr, whichSound);
194 if (soundPath != null) {
195 final Uri soundUri = Uri.parse("file://" + soundPath);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerNotificationWarnings.java 316 final String soundPath = Settings.Global.getString(cr,
318 if (soundPath != null) {
319 final Uri soundUri = Uri.parse("file://" + soundPath);
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 507 final String soundPath = Settings.Global.getString(mContext.getContentResolver(),
509 if (soundPath != null) {
510 final Uri soundUri = Uri.parse("file://" + soundPath);

Completed in 1653 milliseconds