OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:soundpath
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/services/core/java/com/android/server/
DockObserver.java
194
final String
soundPath
= Settings.Global.getString(cr, whichSound);
195
if (
soundPath
!= null) {
196
final Uri soundUri = Uri.parse("file://" +
soundPath
);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
KeyguardViewMediator.java
599
String
soundPath
= Settings.Global.getString(cr, Settings.Global.LOCK_SOUND);
600
if (
soundPath
!= null) {
601
mLockSoundId = mLockSounds.load(
soundPath
, 1);
603
if (
soundPath
== null || mLockSoundId == 0) {
604
Log.w(TAG, "failed to load lock sound from " +
soundPath
);
606
soundPath
= Settings.Global.getString(cr, Settings.Global.UNLOCK_SOUND);
607
if (
soundPath
!= null) {
608
mUnlockSoundId = mLockSounds.load(
soundPath
, 1);
610
if (
soundPath
== null || mUnlockSoundId == 0) {
611
Log.w(TAG, "failed to load unlock sound from " +
soundPath
);
[
all
...]
/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
648
final String
soundPath
= Settings.Global.getString(mContext.getContentResolver(),
650
if (enabled &&
soundPath
!= null) {
651
final Uri soundUri = Uri.parse("file://" +
soundPath
);
Completed in 44 milliseconds