HomeSort by relevance Sort by last modified time
    Searched defs:SystemProperties (Results 26 - 50 of 146) sorted by null

12 3 4 5 6

  /packages/apps/Settings/src/com/android/settings/development/
DebugNonRectClipOperationsPreferenceController.java 20 import android.os.SystemProperties;
65 SystemProperties.set(ThreadedRenderer.DEBUG_SHOW_NON_RECTANGULAR_CLIP_PROPERTY,
71 final String value = SystemProperties.get(
HdcpCheckingPreferenceController.java 21 import android.os.SystemProperties;
64 SystemProperties.set(HDCP_CHECKING_PROPERTY, newValue.toString());
76 final String currentValue = SystemProperties.get(HDCP_CHECKING_PROPERTY);
ProfileGpuRenderingPreferenceController.java 20 import android.os.SystemProperties;
64 SystemProperties.set(ThreadedRenderer.PROFILE_PROPERTY,
70 final String value = SystemProperties.get(
BluetoothA2dpHwOffloadPreferenceController.java 20 import android.os.SystemProperties;
58 SystemProperties.getBoolean(A2DP_OFFLOAD_SUPPORTED_PROPERTY, false);
61 SystemProperties.getBoolean(A2DP_OFFLOAD_DISABLED_PROPERTY, false);
73 SystemProperties.getBoolean(A2DP_OFFLOAD_SUPPORTED_PROPERTY, false);
76 SystemProperties.set(A2DP_OFFLOAD_DISABLED_PROPERTY, "false");
79 SystemProperties.set(A2DP_OFFLOAD_DISABLED_PROPERTY, "true");
85 SystemProperties.getBoolean(A2DP_OFFLOAD_DISABLED_PROPERTY, false);
86 SystemProperties.set(A2DP_OFFLOAD_DISABLED_PROPERTY, Boolean.toString(!offloadDisabled));
BluetoothMaxConnectedAudioDevicesPreferenceController.java 20 import android.os.SystemProperties;
70 SystemProperties.set(MAX_CONNECTED_AUDIO_DEVICES_PROPERTY, newValueString);
79 final String currentValue = SystemProperties.get(MAX_CONNECTED_AUDIO_DEVICES_PROPERTY);
85 SystemProperties.set(MAX_CONNECTED_AUDIO_DEVICES_PROPERTY, "");
102 SystemProperties.set(MAX_CONNECTED_AUDIO_DEVICES_PROPERTY, "");
CameraLaserSensorPreferenceController.java 20 import android.os.SystemProperties;
67 SystemProperties.set(PROPERTY_CAMERA_LASER_SENSOR, value);
80 SystemProperties.set(PROPERTY_CAMERA_LASER_SENSOR, Integer.toString(DISABLED));
85 final String prop = SystemProperties.get(PROPERTY_CAMERA_LASER_SENSOR,
RtlLayoutPreferenceController.java 20 import android.os.SystemProperties;
81 SystemProperties.set(Settings.Global.DEVELOPMENT_FORCE_RTL,
  /packages/apps/Settings/tests/robotests/src/com/android/settings/
SetupWizardUtilsTest.java 23 import android.os.SystemProperties;
50 SystemProperties.set(SetupWizardUtils.SYSTEM_PROP_SETUPWIZARD_THEME,
60 SystemProperties.set(SetupWizardUtils.SYSTEM_PROP_SETUPWIZARD_THEME,
69 SystemProperties.set(SetupWizardUtils.SYSTEM_PROP_SETUPWIZARD_THEME,
  /packages/apps/Settings/tests/robotests/src/com/android/settings/development/
BluetoothA2dpHwOffloadPreferenceControllerTest.java 26 import android.os.SystemProperties;
64 SystemProperties.set(A2DP_OFFLOAD_DISABLED_PROPERTY, Boolean.toString(false));
67 final boolean mode = SystemProperties.getBoolean(A2DP_OFFLOAD_DISABLED_PROPERTY, false);
71 final boolean mode2 = SystemProperties.getBoolean(A2DP_OFFLOAD_DISABLED_PROPERTY, false);
BluetoothAbsoluteVolumePreferenceControllerTest.java 25 import android.os.SystemProperties;
63 final boolean mode = SystemProperties.getBoolean(
73 final boolean mode = SystemProperties.getBoolean(
81 SystemProperties.set(BLUETOOTH_DISABLE_ABSOLUTE_VOLUME_PROPERTY, Boolean.toString(true));
89 SystemProperties.set(BLUETOOTH_DISABLE_ABSOLUTE_VOLUME_PROPERTY, Boolean.toString(false));
99 final boolean mode = SystemProperties.getBoolean(
BluetoothAvrcpVersionPreferenceControllerTest.java 26 import android.os.SystemProperties;
77 final String currentValue = SystemProperties.get(BLUETOOTH_AVRCP_VERSION_PROPERTY);
86 final String currentValue = SystemProperties.get(BLUETOOTH_AVRCP_VERSION_PROPERTY);
93 SystemProperties.set(BLUETOOTH_AVRCP_VERSION_PROPERTY, mListValues[1]);
103 SystemProperties.set(BLUETOOTH_AVRCP_VERSION_PROPERTY, mListValues[2]);
BluetoothSnoopLogPreferenceControllerTest.java 25 import android.os.SystemProperties;
61 final boolean mode = SystemProperties.getBoolean(BLUETOOTH_BTSNOOP_ENABLE_PROPERTY, false);
70 final boolean mode = SystemProperties.getBoolean(BLUETOOTH_BTSNOOP_ENABLE_PROPERTY, false);
77 SystemProperties.set(BLUETOOTH_BTSNOOP_ENABLE_PROPERTY, Boolean.toString(true));
85 SystemProperties.set(BLUETOOTH_BTSNOOP_ENABLE_PROPERTY, Boolean.toString(false));
CameraLaserSensorPreferenceControllerTest.java 26 import android.os.SystemProperties;
67 SystemProperties.set(CameraLaserSensorPreferenceController.BUILD_TYPE, USERDEBUG_BUILD);
74 SystemProperties.set(CameraLaserSensorPreferenceController.BUILD_TYPE, ENG_BUILD);
81 SystemProperties.set(CameraLaserSensorPreferenceController.BUILD_TYPE, USER_BUILD);
88 SystemProperties.set(CameraLaserSensorPreferenceController.PROPERTY_CAMERA_LASER_SENSOR,
90 SystemProperties.set(CameraLaserSensorPreferenceController.BUILD_TYPE, USERDEBUG_BUILD);
99 SystemProperties.set(CameraLaserSensorPreferenceController.PROPERTY_CAMERA_LASER_SENSOR,
101 SystemProperties.set(
114 SystemProperties.get(
124 SystemProperties.get
    [all...]
CoolColorTemperaturePreferenceControllerTest.java 25 import android.os.SystemProperties;
62 final boolean mode = SystemProperties.getBoolean(COLOR_TEMPERATURE_PROPERTY, false);
70 final boolean mode = SystemProperties.getBoolean(COLOR_TEMPERATURE_PROPERTY, false);
77 SystemProperties.set(COLOR_TEMPERATURE_PROPERTY, Boolean.toString(true));
85 SystemProperties.set(COLOR_TEMPERATURE_PROPERTY, Boolean.toString(false));
DebugGpuOverdrawPreferenceControllerTest.java 24 import android.os.SystemProperties;
73 String mode = SystemProperties.get(ThreadedRenderer.DEBUG_OVERDRAW_PROPERTY);
81 String mode = SystemProperties.get(ThreadedRenderer.DEBUG_OVERDRAW_PROPERTY);
87 SystemProperties.set(ThreadedRenderer.DEBUG_OVERDRAW_PROPERTY, mListValues[1]);
97 SystemProperties.set(ThreadedRenderer.DEBUG_OVERDRAW_PROPERTY, mListValues[2]);
107 SystemProperties.set(ThreadedRenderer.DEBUG_OVERDRAW_PROPERTY, null);
DebugNonRectClipOperationsPreferenceControllerTest.java 24 import android.os.SystemProperties;
72 String mode = SystemProperties.get(
81 String mode = SystemProperties.get(
88 SystemProperties.set(ThreadedRenderer.DEBUG_SHOW_NON_RECTANGULAR_CLIP_PROPERTY,
99 SystemProperties.set(ThreadedRenderer.DEBUG_SHOW_NON_RECTANGULAR_CLIP_PROPERTY,
110 SystemProperties.set(ThreadedRenderer.DEBUG_SHOW_NON_RECTANGULAR_CLIP_PROPERTY, null);
FileEncryptionPreferenceControllerTest.java 29 import android.os.SystemProperties;
95 SystemProperties.set(FILE_ENCRYPTION_PROPERTY_KEY, "foobar");
109 SystemProperties.set(FILE_ENCRYPTION_PROPERTY_KEY, "file");
ForceGpuRenderingPreferenceControllerTest.java 25 import android.os.SystemProperties;
63 final boolean mode = SystemProperties.getBoolean(HARDWARE_UI_PROPERTY, false /* default */);
72 final boolean mode = SystemProperties.getBoolean(HARDWARE_UI_PROPERTY, false /* default */);
79 SystemProperties.set(HARDWARE_UI_PROPERTY, Boolean.toString(true));
87 SystemProperties.set(HARDWARE_UI_PROPERTY, Boolean.toString(false));
97 final boolean mode = SystemProperties.getBoolean(HARDWARE_UI_PROPERTY, false /* default */);
ForceMSAAPreferenceControllerTest.java 24 import android.os.SystemProperties;
62 final boolean mode = SystemProperties
72 final boolean mode = SystemProperties
80 SystemProperties.set(ForceMSAAPreferenceController.MSAA_PROPERTY, Boolean.toString(true));
88 SystemProperties.set(ForceMSAAPreferenceController.MSAA_PROPERTY, Boolean.toString(false));
GpuViewUpdatesPreferenceControllerTest.java 24 import android.os.SystemProperties;
63 final boolean mode = SystemProperties
73 final boolean mode = SystemProperties
81 SystemProperties.set(ThreadedRenderer.DEBUG_DIRTY_REGIONS_PROPERTY, Boolean.toString(true));
89 SystemProperties
HdcpCheckingPreferenceControllerTest.java 27 import android.os.SystemProperties;
95 assertThat(SystemProperties.get(HDCP_CHECKING_PROPERTY)).isEqualTo(mValues[0]);
102 assertThat(SystemProperties.get(HDCP_CHECKING_PROPERTY)).isEqualTo(mValues[1]);
107 SystemProperties.set(HDCP_CHECKING_PROPERTY, mValues[0]);
117 SystemProperties.set(HDCP_CHECKING_PROPERTY, mValues[1]);
127 SystemProperties.set(HDCP_CHECKING_PROPERTY, null);
ProfileGpuRenderingPreferenceControllerTest.java 24 import android.os.SystemProperties;
72 String mode = SystemProperties.get(ThreadedRenderer.PROFILE_PROPERTY);
80 String mode = SystemProperties.get(ThreadedRenderer.PROFILE_PROPERTY);
86 SystemProperties.set(ThreadedRenderer.PROFILE_PROPERTY, mListValues[1]);
96 SystemProperties.set(ThreadedRenderer.PROFILE_PROPERTY, mListValues[2]);
106 SystemProperties.set(ThreadedRenderer.PROFILE_PROPERTY, null);
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/development/
LogpersistPreferenceControllerTest.java 25 import android.os.SystemProperties;
56 SystemProperties.set("ro.debuggable", "1");
81 SystemProperties.set("ro.debuggable", "");
83 SystemProperties.set("ro.debuggable", "1");
85 SystemProperties.set("ro.debuggable", "0");
91 SystemProperties.set(
100 SystemProperties.set(
103 SystemProperties.set(
112 SystemProperties.set(
115 SystemProperties.set
    [all...]
  /frameworks/base/services/core/java/com/android/server/
PreloadsFileCacheExpirationJobService.java 27 import android.os.SystemProperties;
76 SystemProperties.set(PERSIST_SYS_PRELOADS_FILE_CACHE_EXPIRED, "1");
  /frameworks/base/services/tests/servicestests/src/com/android/server/power/
PowerManagerServiceTest.java 31 import android.os.SystemProperties;
81 SystemProperties.set(TEST_LAST_REBOOT_PROPERTY, "shutdown,thermal");
83 SystemProperties.set(TEST_LAST_REBOOT_PROPERTY, "");

Completed in 196 milliseconds

12 3 4 5 6