Home
last modified time | relevance | path

Searched refs:getProperty (Results 1 – 25 of 64) sorted by relevance

123

/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/parser/
DPropertiesProvisioningDataParser.java113 .setDeviceAdminPackageName(props.getProperty( in parse()
115 if ((s = props.getProperty(EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME)) in parse()
121 builder.setTimeZone(props.getProperty(EXTRA_PROVISIONING_TIME_ZONE)) in parse()
123 props.getProperty(EXTRA_PROVISIONING_LOCALE))); in parse()
124 if ((s = props.getProperty(EXTRA_PROVISIONING_LOCAL_TIME)) != null) { in parse()
138 if ((s = props.getProperty(EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED)) in parse()
142 if ((s = props.getProperty(EXTRA_PROVISIONING_SKIP_ENCRYPTION)) != null) { in parse()
170 if (props.getProperty(EXTRA_PROVISIONING_WIFI_SSID) == null) { in parseWifiInfoFromProperties()
174 .setSsid(props.getProperty(EXTRA_PROVISIONING_WIFI_SSID)) in parseWifiInfoFromProperties()
175 .setSecurityType(props.getProperty(EXTRA_PROVISIONING_WIFI_SECURITY_TYPE)) in parseWifiInfoFromProperties()
[all …]
/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
DVehicleNetwork.java271 public VehiclePropValue getProperty(int property) throws IllegalArgumentException, in getProperty() method in VehicleNetwork
278 return getProperty(value); in getProperty()
285 public VehiclePropValue getProperty(VehiclePropValue value) throws IllegalArgumentException, in getProperty() method in VehicleNetwork
289 VehiclePropValueParcelable resParcelable = mService.getProperty(parcelable); in getProperty()
304 VehiclePropValue v = getProperty( in getIntProperty()
317 VehiclePropValue v = getProperty( in getZonedIntProperty()
330 VehiclePropValue v = getProperty( in getIntVectorProperty()
341 VehiclePropValue v = getProperty( in getZonedIntVectorProperty()
352 VehiclePropValue v = getProperty( in getFloatProperty()
365 VehiclePropValue v = getProperty( in getFloatVectorProperty()
[all …]
DIVehicleNetwork.aidl33 VehiclePropValueParcelable getProperty(in VehiclePropValueParcelable value) = 2;
/packages/services/Car/libvehiclenetwork/native/
DVehicleNetwork.cpp190 status_t r = getProperty(&v); in getInt32Property()
207 status_t r = getProperty(&v); in getInt64Property()
224 status_t r = getProperty(&v); in getFloatProperty()
243 status_t r = getProperty(&v); in getStringProperty()
259 status_t VehicleNetwork::getProperty(vehicle_prop_value_t* value) { in getProperty() function in android::VehicleNetwork
260 return getService()->getProperty(value); in getProperty()
/packages/services/Car/car-lib/src/android/car/hardware/hvac/
DCarHvacManager.java259 CarPropertyValue<Boolean> carProp = getProperty(Boolean.class, prop, area); in getBooleanProperty()
270 CarPropertyValue<Float> carProp = getProperty(Float.class, prop, area); in getFloatProperty()
281 CarPropertyValue<Integer> carProp = getProperty(Integer.class, prop, area); in getIntProperty()
287 private <E> CarPropertyValue<E> getProperty(Class<E> clazz, int prop, int area) in getProperty() method in CarHvacManager
294 CarPropertyValue<E> hvacProperty = mService.getProperty(prop, area); in getProperty()
DICarHvac.aidl32 CarPropertyValue getProperty(int prop, int zone) = 3; in getProperty() method
/packages/apps/Calendar/src/com/android/calendar/
DExtensionsFactory.java83 String className = sProperties.getProperty(ALL_IN_ONE_MENU_KEY); in getAllInOneMenuExtensions()
109 String className = sProperties.getProperty(CLOUD_NOTIFICATION_KEY); in getCloudNotificationBackplane()
146 String className = sProperties.getProperty(ANALYTICS_LOGGER_KEY); in getAnalyticsLogger()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DCallLogDatabaseHelper.java215 public String getProperty(String key, String defaultValue) { in getProperty() method in CallLogDatabaseHelper
216 return PropertyUtils.getProperty(getReadableDatabase(), key, defaultValue); in getProperty()
246 if ("1".equals(PropertyUtils.getProperty(calllog, DbProperties.DATA_MIGRATED, ""))) { in migrateFromLegacyTables()
292 PropertyUtils.getProperty(contacts, in migrateFromLegacyTables()
DBootCompletedReceiver.java59 String dbTime = ContactsDatabaseHelper.getInstance(context).getProperty( in onReceive()
67 dbTime = ContactsDatabaseHelper.getInstance(context).getProperty( in onReceive()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DCallLogMigrationTest.java78 dbh.getProperty(CallLogDatabaseHelper.DbProperties.CALL_LOG_LAST_SYNCED, "")); in testMigration()
85 dbh.getProperty(CallLogDatabaseHelper.DbProperties.DATA_MIGRATED, "")); in testMigration()
/packages/apps/Email/src/com/beetstra/jutf7/
DUTF7StyleCharsetEncoder.java62 String version = System.getProperty("java.specification.version");
63 String vendor = System.getProperty("java.vm.vendor");
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
Ddictionary.cpp180 void Dictionary::getProperty(const char *const query, const int queryLength, char *const outResult, in getProperty() function in latinime::Dictionary
183 return mDictionaryStructureWithBufferPolicy->getProperty(query, queryLength, outResult, in getProperty()
Ddictionary.h104 void getProperty(const char *const query, const int queryLength, char *const outResult,
/packages/services/Car/tests/libvehiclenetwork-native-test/
DIVehicleNetworkTest.cpp92 TEST_F(IVehicleNetworkTest, getProperty) { in TEST_F() argument
116 status_t r = vn->getProperty(&value.value); in TEST_F()
DVehicleNetworkTest.cpp99 TEST_F(VehicleNetworkTest, getProperty) { in TEST_F() argument
114 status_t r = vn->getProperty(&value.value); in TEST_F()
/packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
DVehicleNetworkTest.java84 VehiclePropValue value = mVehicleNetwork.getProperty(-1); in testGetProperty()
105 VehiclePropValue value = mVehicleNetwork.getProperty(config.getProp()); in testGetProperty()
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DCustomVCardEntry.java45 public VCardProperty getProperty(String name) { in getProperty() method in CustomVCardEntry
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
DTempStorage.java37 String clazz = System.getProperty("org.apache.james.mime4j.tempStorage");
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DPropertyUtils.java53 public static String getProperty(SQLiteDatabase db, String key, String defaultValue) { in getProperty() method in PropertyUtils
/packages/apps/ContactsCommon/src/com/android/contacts/common/extensions/
DExtensionsFactory.java56 final String className = sProperties.getProperty(EXTENDED_PHONE_DIRECTORIES_KEY); in init()
/packages/apps/Dialer/src/com/android/dialer/database/
DDialerDatabaseHelper.java530 public String getProperty(String key, String defaultValue) { in getProperty() method in DialerDatabaseHelper
531 return getProperty(getReadableDatabase(), key, defaultValue); in getProperty()
534 public String getProperty(SQLiteDatabase db, String key, String defaultValue) { in getProperty() method in DialerDatabaseHelper
557 final String stored = getProperty(db, key, ""); in getPropertyAsInt()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DHexDump.java109 System.getProperty("line.separator");
/packages/services/Car/libvehiclenetwork/include/
DIVehicleNetwork.h50 virtual status_t getProperty(vehicle_prop_value_t* value) = 0;
/packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/
Ddictionary_structure_with_buffer_policy.h104 virtual void getProperty(const char *const query, const int queryLength, char *const outResult,
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
DParseException.java155 protected String eol = System.getProperty("line.separator", "\n");

123