HomeSort by relevance Sort by last modified time
    Searched refs:SystemProperties (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /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/
SystemService.java 24 SystemProperties.set("ctl.start", name);
29 SystemProperties.set("ctl.stop", name);
Build.java 92 public static final int SDK_INT = SystemProperties.getInt(
200 return SystemProperties.get(property, UNKNOWN);
205 return Long.parseLong(SystemProperties.get(property));
SystemProperties.java 26 public class SystemProperties
  /frameworks/base/services/java/com/android/server/
EntropyService.java 29 import android.os.SystemProperties;
135 out.println(SystemProperties.get("ro.serialno"));
136 out.println(SystemProperties.get("ro.bootmode"));
137 out.println(SystemProperties.get("ro.baseband"));
138 out.println(SystemProperties.get("ro.carrier"));
139 out.println(SystemProperties.get("ro.bootloader"));
140 out.println(SystemProperties.get("ro.hardware"));
141 out.println(SystemProperties.get("ro.revision"));
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
WTK.java 46 public abstract SystemProperties getSystemProperties();
SystemProperties.java 32 public interface SystemProperties {
  /frameworks/base/packages/VpnServices/src/com/android/server/vpn/
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...]
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));
  /frameworks/base/core/java/android/net/
Proxy.java 21 import android.os.SystemProperties;
98 String host = SystemProperties.get("net.gprs.http-proxy");
114 String host = SystemProperties.get("net.gprs.http-proxy");
NetworkStateTracker.java 24 import android.os.SystemProperties;
115 String value = SystemProperties.get(propertyNames[i]);
179 * Reads the network specific TCP buffer sizes from SystemProperties
185 String bufferSizes = SystemProperties.get(key);
192 bufferSizes = SystemProperties.get(key);
  /packages/apps/Phone/src/com/android/phone/
OtaStartupReceiver.java 26 import android.os.SystemProperties;
38 private static final boolean DBG = (SystemProperties.getInt("ro.debuggable", 0) == 1);
91 String mode = SystemProperties.get("ro.setupwizard.mode", "REQUIRED");
CdmaDisplayInfo.java 21 import android.os.SystemProperties;
30 private static final boolean DBG = (SystemProperties.getInt("ro.debuggable", 0) == 1);
  /packages/apps/Settings/src/com/android/settings/
LocalePickerInSetupWizard.java 25 import android.os.SystemProperties;
Utils.java 24 import android.os.SystemProperties;
96 return SystemProperties.getBoolean("ro.monkey", false);
DeviceInfoSettings.java 25 import android.os.SystemProperties;
96 if (SystemProperties.get(property).equals(""))
120 SystemProperties.get(property,
AirplaneModeEnabler.java 25 import android.os.SystemProperties;
118 SystemProperties.get(TelephonyProperties.PROPERTY_INECM_MODE))) {
SettingsLicenseActivity.java 20 import android.os.SystemProperties;
53 String fileName = SystemProperties.get(PROPERTY_LICENSE_PATH, DEFAULT_LICENSE_PATH);
SettingsSafetyLegalActivity.java 24 import android.os.SystemProperties;
47 String userSafetylegalUrl = SystemProperties.get(PROPERTY_LSAFETYLEGAL_URL);
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 25 import android.os.SystemProperties;
306 SystemProperties.getInt(TelephonyProperties.CURRENT_ACTIVE_PHONE,
315 int mode = SystemProperties.getInt("ro.telephony.default_network", -1);
334 return SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_ALPHA);
345 return SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_NUMERIC);
355 return "true".equals(SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_ISROAMING));
367 return SystemProperties.get(TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY);
513 String prop = SystemProperties.get(TelephonyProperties.PROPERTY_SIM_STATE);
543 return SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC);
554 return SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_ALPHA)
    [all...]
CellLocation.java 22 import android.os.SystemProperties;
  /frameworks/base/awt/com/android/internal/awt/
AndroidWTK.java 27 import org.apache.harmony.awt.wtk.SystemProperties;
77 public SystemProperties getSystemProperties() {
  /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/core/java/android/util/
DisplayMetrics.java 224 return SystemProperties.getInt("qemu.sf.lcd_density",
225 SystemProperties.getInt("ro.sf.lcd_density", DENSITY_DEFAULT));
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaProfileReader.java 27 import android.os.SystemProperties;
54 s = SystemProperties.get("ro.product.name");

Completed in 352 milliseconds

1 2 3 4 5 6