Home
last modified time | relevance | path

Searched refs:PROPERTY_BOOT_SOUNDS (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DBootSoundPreferenceControllerTest.java85 SystemProperties.set(BootSoundPreferenceController.PROPERTY_BOOT_SOUNDS, "true"); in displayPreference_bootSoundEnabled_shouldCheckedPreference()
93 SystemProperties.set(BootSoundPreferenceController.PROPERTY_BOOT_SOUNDS, "0"); in displayPreference_bootSoundDisabled_shouldUncheckedPreference()
107 BootSoundPreferenceController.PROPERTY_BOOT_SOUNDS, null)).isEqualTo("1"); in handlePreferenceTreeClick_preferenceChecked_shouldEnableBootSound()
117 BootSoundPreferenceController.PROPERTY_BOOT_SOUNDS, null)).isEqualTo("0"); in handlePreferenceTreeClick_preferenceUnchecked_shouldDisableBootSound()
/packages/apps/Settings/src/com/android/settings/notification/
DBootSoundPreferenceController.java36 static final String PROPERTY_BOOT_SOUNDS = "persist.sys.bootanim.play_sound"; field in BootSoundPreferenceController
47 preference.setChecked(SystemProperties.getBoolean(PROPERTY_BOOT_SOUNDS, true)); in displayPreference()
55 SystemProperties.set(PROPERTY_BOOT_SOUNDS, switchPreference.isChecked() ? "1" : "0"); in handlePreferenceTreeClick()