HomeSort by relevance Sort by last modified time
    Searched defs:SystemProperties (Results 1 - 17 of 17) sorted by null

  /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/java/android/os/
SystemProperties.java 26 public class SystemProperties
  /frameworks/base/core/tests/coretests/src/android/util/
LogTest.java 22 import android.os.SystemProperties;
43 SystemProperties.set(PROPERTY_TAG, null);
45 String value = SystemProperties.get(PROPERTY_TAG);
57 SystemProperties.set(PROPERTY_TAG, "VERBOSE");
68 SystemProperties.set(PROPERTY_TAG, "DEBUG");
79 SystemProperties.set(PROPERTY_TAG, "INFO");
90 SystemProperties.set(PROPERTY_TAG, "WARN");
101 SystemProperties.set(PROPERTY_TAG, "ERROR");
112 SystemProperties.set(PROPERTY_TAG, "ASSERT");
123 SystemProperties.set(PROPERTY_TAG, "SUPPRESS")
    [all...]
  /frameworks/base/packages/VpnServices/src/com/android/server/vpn/
DaemonProxy.java 22 import android.os.SystemProperties;
72 SystemProperties.set(SVC_START_CMD, svc);
113 SystemProperties.set(SVC_STOP_CMD, svc);
120 return SVC_STATE_STOPPED.equals(SystemProperties.get(cmd));
173 if (expectedState.equals(SystemProperties.get(cmd))) {
182 return expectedState.equals(SystemProperties.get(cmd));
VpnService.java 26 import android.os.SystemProperties;
178 SystemProperties.set(VPN_DNS1, "");
179 SystemProperties.set(VPN_DNS2, "");
180 SystemProperties.set(VPN_STATUS, VPN_IS_DOWN);
182 Log.d(TAG, " VPN UP: " + SystemProperties.get(VPN_STATUS));
192 SystemProperties.get(VPN_STATUS))) {
247 SystemProperties.set(VPN_STATUS, VPN_IS_DOWN);
258 String vpnDns1 = SystemProperties.get(VPN_DNS1);
259 if (vpnDns1.equals(SystemProperties.get(DNS1))) {
261 SystemProperties.get(DNS1), mOriginalDns1))
    [all...]
  /libcore/luni/src/main/java/java/lang/
System.java 81 private static Properties systemProperties;
338 if (System.systemProperties == null) {
339 SystemProperties props = new SystemProperties();
342 System.systemProperties = props;
345 return systemProperties;
595 systemProperties = p;
677 class SystemProperties extends Properties {
  /frameworks/base/core/java/com/android/internal/app/
ShutdownThread.java 36 import android.os.SystemProperties;
210 SystemProperties.set(SHUTDOWN_ACTION_PROPERTY, reason);
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
SmsMessage.java 20 import android.os.SystemProperties;
626 int msgId = SystemProperties.getInt(TelephonyProperties.PROPERTY_CDMA_MSG_ID, 1);
628 SystemProperties.set(TelephonyProperties.PROPERTY_CDMA_MSG_ID, nextMsgId);
632 SystemProperties.get(TelephonyProperties.PROPERTY_CDMA_MSG_ID));
CDMAPhone.java 35 import android.os.SystemProperties;
178 SystemProperties.set(TelephonyProperties.CURRENT_ACTIVE_PHONE,
182 String inEcm=SystemProperties.get(TelephonyProperties.PROPERTY_INECM_MODE, "false");
190 mCarrierOtaSpNumSchema = SystemProperties.get(
194 String operatorAlpha = SystemProperties.get("ro.cdma.home.operator.alpha");
198 String operatorNumeric = SystemProperties.get("ro.cdma.home.operator.numeric");
895 || SystemProperties.getBoolean("test_cdma_setup", false);
924 long delayInMillis = SystemProperties.getLong(
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 44 import android.os.SystemProperties;
181 long version = SystemProperties.getLong(property, 0) + 1;
183 SystemProperties.set(property, Long.toString(version));
    [all...]
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 36 import android.os.SystemProperties;
267 String current = SystemProperties.get(TIMEZONE_PROPERTY);
271 SystemProperties.set(TIMEZONE_PROPERTY, zone.getID());
778 TimeZone zone = TimeZone.getTimeZone(SystemProperties.get(TIMEZONE_PROPERTY));
    [all...]
ConnectivityService.java 42 import android.os.SystemProperties;
268 SystemProperties.set("net.hostname", name);
357 mTestMode = SystemProperties.get("cm.test.mode").equals("true")
358 && SystemProperties.get("ro.build.type").equals("eng");
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 23 import android.os.SystemProperties;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneBase.java 30 import android.os.SystemProperties;
127 SystemProperties.set(property, value);
218 mDoesRilSendMultipleCallRing = SystemProperties.getBoolean(
222 mCallRingDelay = SystemProperties.getInt(
548 String carrier = SystemProperties.get("ro.carrier");
598 String l = SystemProperties.get("persist.sys.language");
599 String c = SystemProperties.get("persist.sys.country");
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GSMPhone.java 29 import android.os.SystemProperties;
199 SystemProperties.set(TelephonyProperties.CURRENT_ACTIVE_PHONE,
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 80 import android.os.SystemProperties;
    [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 1694 milliseconds