HomeSort by relevance Sort by last modified time
    Searched full:systemproperties (Results 101 - 125 of 262) sorted by null

1 2 3 45 6 7 8 91011

  /frameworks/base/core/java/android/view/
WindowManagerGlobal.java 27 import android.os.SystemProperties;
221 SystemProperties.addChangeCallback(mSystemPropertyUpdater);
IWindowManager.aidl 145 // boolean string as parsed by SystemProperties.getBoolean().
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardViewManager.java 42 import android.os.SystemProperties;
145 return SystemProperties.getBoolean("lockscreen.rot_override",false)
  /frameworks/base/services/java/com/android/server/
DeviceStorageMonitorService.java 38 import android.os.SystemProperties;
166 String debugFreeMem = SystemProperties.get("debug.freemem");
LockSettingsService.java 37 import android.os.SystemProperties;
456 boolean lockScreenDisable = SystemProperties.getBoolean("ro.lockscreen.disable.default",
Watchdog.java 39 import android.os.SystemProperties;
481 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
ConnectivityService.java 95 import android.os.SystemProperties;
460 if (TextUtils.isEmpty(SystemProperties.get("net.hostname"))) {
465 SystemProperties.set("net.hostname", name);
527 boolean wifiOnly = SystemProperties.getBoolean("ro.radio.noril", false);
620 mTestMode = SystemProperties.get("cm.test.mode").equals("true")
621 && SystemProperties.get("ro.build.type").equals("eng");
    [all...]
AlarmManagerService.java 37 import android.os.SystemProperties;
472 String tz = SystemProperties.get(TIMEZONE_PROPERTY);
693 String current = SystemProperties.get(TIMEZONE_PROPERTY);
699 SystemProperties.set(TIMEZONE_PROPERTY, zone.getID());
    [all...]
  /packages/apps/Settings/src/com/android/settings/
TetherSettings.java 40 import android.os.SystemProperties;
437 if (SystemProperties.getBoolean("net.tethering.noprovisioning", false)) {
WirelessSettings.java 36 import android.os.SystemProperties;
104 SystemProperties.get(TelephonyProperties.PROPERTY_INECM_MODE))) {
ApnSettings.java 160 + android.os.SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC, "")
ApnEditor.java 29 import android.os.SystemProperties;
266 SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC);
383 SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 31 import android.os.SystemProperties;
115 if (SystemProperties.getBoolean("persist.radio.imsregrequired", false)) {
  /packages/apps/Settings/src/com/android/settings/wifi/p2p/
WifiP2pSettings.java 42 import android.os.SystemProperties;
385 int forceWps = SystemProperties.getInt("wifidirect.wps", -1);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SkbContainer.java 24 import android.os.SystemProperties;
189 if ("1".equals(SystemProperties.get("ro.kernel.qemu"))) {
  /packages/services/Telephony/src/com/android/phone/
BluetoothManager.java 31 import android.os.SystemProperties;
48 (PhoneGlobals.DBG_LEVEL >= 1) && (SystemProperties.getInt("ro.debuggable", 0) == 1);
CallHandlerServiceProxy.java 33 import android.os.SystemProperties;
55 private static final boolean DBG = (PhoneGlobals.DBG_LEVEL >= 1) && (SystemProperties.getInt(
SipCallOptionHandler.java 41 import android.os.SystemProperties;
69 (PhoneGlobals.DBG_LEVEL >= 1) && (SystemProperties.getInt("ro.debuggable", 0) == 1);
  /prebuilts/tools/common/m2/repository/commons-logging/commons-logging/1.1.1/
commons-logging-1.1.1.pom 333 <systemProperties>
356 </systemProperties>
  /external/chromium_org/build/android/pylib/
valgrind_tools.py 150 # exactly 31 chars, SystemProperties::PROP_NAME_MAX
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 23 import android.os.SystemProperties;
605 String factoryTest = SystemProperties.get("ro.factorytest");
662 if ("1".equals(SystemProperties.get("ro.debuggable"))) {
852 args.invokeWith = SystemProperties.get(property);
    [all...]
  /frameworks/base/services/java/com/android/server/display/
DisplayManagerService.java 36 import android.os.SystemProperties;
205 mHeadless = SystemProperties.get(SYSTEM_HEADLESS).equals("1");
210 mSingleDisplayDemoMode = SystemProperties.getBoolean("persist.demo.singledisplay", false);
810 || SystemProperties.getInt(FORCE_WIFI_DISPLAY_ENABLE, -1) == 1) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 27 import android.os.SystemProperties;
193 String inEcm=SystemProperties.get(TelephonyProperties.PROPERTY_INECM_MODE, "false");
354 String disableCall = SystemProperties.get(
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java 39 import android.os.SystemProperties;
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 19 import android.os.SystemProperties;
216 return "1".equals(SystemProperties.get("ro.debuggable")) &&
217 "yes".equals(SystemProperties.get("socket.relaxsslcheck"));

Completed in 1427 milliseconds

1 2 3 45 6 7 8 91011