/frameworks/base/core/java/com/android/internal/os/ |
RoSystemProperties.java | 19 import android.os.SystemProperties; 27 SystemProperties.getInt("ro.debuggable", 0) == 1; 29 SystemProperties.getInt("ro.factorytest", 0); 31 SystemProperties.get("ro.control_privapp_permissions"); 35 SystemProperties.getBoolean("ro.config.low_ram", false); 39 SystemProperties.getBoolean("ro.fw.system_user_split", false); 42 public static final String CRYPTO_STATE = SystemProperties.get("ro.crypto.state"); 43 public static final String CRYPTO_TYPE = SystemProperties.get("ro.crypto.type");
|
/frameworks/base/vr/java/com/google/vr/platform/ |
DeviceInfo.java | 3 import android.os.SystemProperties; 17 return SystemProperties.getBoolean(VR_MODE_BOOT, false);
|
/packages/apps/Camera2/src_pd/com/android/camera/util/ |
SystemProperties.java | 19 public final class SystemProperties { 25 private SystemProperties() {
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
MockableSystemProperties.java | 19 import android.os.SystemProperties; 24 return SystemProperties.get(key); 28 return SystemProperties.getInt(key, def); 32 return SystemProperties.getBoolean(key, def); 36 SystemProperties.set(key, value);
|
/frameworks/base/core/tests/coretests/src/android/os/ |
SystemPropertiesTest.java | 22 import android.os.SystemProperties; 32 SystemProperties.set(KEY, ""); 33 value = SystemProperties.get(KEY, "default"); 36 SystemProperties.set(KEY, "AAA"); 37 value = SystemProperties.get(KEY, "default"); 40 value = SystemProperties.get(KEY); 43 SystemProperties.set(KEY, ""); 44 value = SystemProperties.get(KEY, "default"); 47 value = SystemProperties.get(KEY);
|
/frameworks/base/core/tests/systemproperties/src/android/os/ |
SystemPropertiesTest.java | 21 import android.os.SystemProperties; 31 SystemProperties.set(PERSIST_KEY, Long.toString(i)); 32 long ret = SystemProperties.getLong(PERSIST_KEY, -1); 40 SystemProperties.set(KEY, Long.toString(i)); 41 long ret = SystemProperties.getLong(KEY, -1); 50 SystemProperties.set(KEY, ""); 51 value = SystemProperties.get(KEY, "default"); 54 SystemProperties.set(KEY, "SA"); 55 value = SystemProperties.get(KEY, "default"); 58 value = SystemProperties.get(KEY) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
EncryptionHelper.java | 19 import android.os.SystemProperties; 29 String voldState = SystemProperties.get("vold.decrypt");
|
/cts/tests/tests/os/src/android/os/cts/ |
UsbDebuggingTest.java | 20 import android.os.SystemProperties; 28 assertEquals("1", SystemProperties.get("ro.adb.secure"));
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteGlobal.java | 21 import android.os.SystemProperties; 66 return SystemProperties.getInt("debug.sqlite.pagesize", sDefaultPageSize); 74 return SystemProperties.get("debug.sqlite.journalmode", 83 return SystemProperties.getInt("debug.sqlite.journalsizelimit", 92 return SystemProperties.get("debug.sqlite.syncmode", 101 return SystemProperties.get("debug.sqlite.wal.syncmode", 110 int value = SystemProperties.getInt("debug.sqlite.wal.autocheckpoint", 120 int value = SystemProperties.getInt("debug.sqlite.wal.poolsize",
|
/packages/apps/TV/src/com/android/tv/util/ |
SystemProperties.java | 24 public final class SystemProperties { 59 private SystemProperties() {
|
/frameworks/base/services/core/java/com/android/server/notification/ |
PropConfig.java | 20 import android.os.SystemProperties; 26 return SystemProperties.getInt(propName, context.getResources().getInteger(resId)); 30 final String prop = SystemProperties.get(propName, UNSET);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
SystemPropertyService.java | 23 return android.os.SystemProperties.get(key, defaultValue); 28 android.os.SystemProperties.set(key, val); 33 return android.os.SystemProperties.getBoolean(key, defaultValue);
|
/frameworks/base/core/java/android/os/ |
FactoryTest.java | 49 return SystemProperties.getInt("factory.long_press_power_off", 0) != 0;
|
Build.java | 198 public static final String BASE_OS = SystemProperties.get("ro.build.version.base_os", ""); 203 public static final String SECURITY_PATCH = SystemProperties.get( 219 public static final int SDK_INT = SystemProperties.getInt( 240 public static final int PREVIEW_SDK_INT = SystemProperties.getInt( [all...] |
SystemService.java | 50 SystemProperties.addChangeCallback(new Runnable() { 62 SystemProperties.set("ctl.start", name); 67 SystemProperties.set("ctl.stop", name); 72 SystemProperties.set("ctl.restart", name); 79 final String rawState = SystemProperties.get("init.svc." + service);
|
/frameworks/base/core/java/com/android/internal/util/ |
ScreenShapeHelper.java | 5 import android.os.SystemProperties; 18 return SystemProperties.getInt(ViewRootImpl.PROPERTY_EMULATOR_WIN_OUTSET_BOTTOM_PX, 0);
|
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/ |
ituxdApp.java | 21 import android.os.SystemProperties; 36 if ("1".equals(SystemProperties.get("persist.service.thermal", "0"))) {
|
/packages/apps/PackageInstaller/tests/src/com/android/packageinstaller/shadows/ |
ShadowSystemProperties.java | 19 import android.os.SystemProperties; 25 * SystemProperties with configurable build type 27 @Implements(SystemProperties.class)
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
SafetyLegalPreferenceController.java | 19 import android.os.SystemProperties; 36 return !TextUtils.isEmpty(SystemProperties.get(PROPERTY_URL_SAFETYLEGAL));
|
FccEquipmentIdPreferenceController.java | 19 import android.os.SystemProperties; 39 return !TextUtils.isEmpty(SystemProperties.get(PROPERTY_EQUIPMENT_ID)); 47 final String summary = SystemProperties.get(PROPERTY_EQUIPMENT_ID,
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
ScriptingLayerServiceLauncher.java | 22 import android.os.SystemProperties; 38 if(SystemProperties.getInt("ro.debuggable", 0) == DEBUGGABLE_BUILD) {
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/ |
TetherUtil.java | 19 import android.os.SystemProperties; 36 if (SystemProperties.getBoolean("net.tethering.noprovisioning", false)
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/util/ |
SystemProperties.java | 24 * Mirrors hidden class {@link android.os.SystemProperties} (available since API Level 1). 26 public final class SystemProperties { 39 final Class<?> systemProperties = Class.forName("android.os.SystemProperties"); 40 final Method get = systemProperties.getMethod("get", String.class, String.class); 49 private SystemProperties() {
|
/packages/apps/Camera2/src/com/android/camera/debug/ |
DebugPropertyHelper.java | 19 import com.android.camera.util.SystemProperties; 43 return ON_VALUE.equals(SystemProperties.get(property, OFF_VALUE));
|
/external/ims/rcs/rcsservice/src/com/android/service/ims/ |
RcsServiceApp.java | 34 import android.os.SystemProperties;
|