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

  /frameworks/base/services/java/com/android/server/
DockObserver.java 172 final String soundPath = Settings.Global.getString(cr, whichSound);
173 if (soundPath != null) {
174 final Uri soundUri = Uri.parse("file://" + soundPath);
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardViewMediator.java 527 String soundPath = Settings.Global.getString(cr, Settings.Global.LOCK_SOUND);
528 if (soundPath != null) {
529 mLockSoundId = mLockSounds.load(soundPath, 1);
531 if (soundPath == null || mLockSoundId == 0) {
532 Log.w(TAG, "failed to load lock sound from " + soundPath);
534 soundPath = Settings.Global.getString(cr, Settings.Global.UNLOCK_SOUND);
535 if (soundPath != null) {
536 mUnlockSoundId = mLockSounds.load(soundPath, 1);
538 if (soundPath == null || mUnlockSoundId == 0) {
539 Log.w(TAG, "failed to load unlock sound from " + soundPath);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerUI.java 242 final String soundPath = Settings.Global.getString(cr,
244 if (soundPath != null) {
245 final Uri soundUri = Uri.parse("file://" + soundPath);
  /frameworks/base/services/java/com/android/server/power/
Notifier.java 497 final String soundPath = Settings.Global.getString(mContext.getContentResolver(),
499 if (soundPath != null) {
500 final Uri soundUri = Uri.parse("file://" + soundPath);

Completed in 115 milliseconds