Home | History | Annotate | Download | only in keyguard

Lines Matching refs:soundPath

702         String soundPath = Settings.Global.getString(cr, Settings.Global.LOCK_SOUND);
703 if (soundPath != null) {
704 mLockSoundId = mLockSounds.load(soundPath, 1);
706 if (soundPath == null || mLockSoundId == 0) {
707 Log.w(TAG, "failed to load lock sound from " + soundPath);
709 soundPath = Settings.Global.getString(cr, Settings.Global.UNLOCK_SOUND);
710 if (soundPath != null) {
711 mUnlockSoundId = mLockSounds.load(soundPath, 1);
713 if (soundPath == null || mUnlockSoundId == 0) {
714 Log.w(TAG, "failed to load unlock sound from " + soundPath);
716 soundPath = Settings.Global.getString(cr, Settings.Global.TRUSTED_SOUND);
717 if (soundPath != null) {
718 mTrustedSoundId = mLockSounds.load(soundPath, 1);
720 if (soundPath == null || mTrustedSoundId == 0) {
721 Log.w(TAG, "failed to load trusted sound from " + soundPath);