Searched defs:properties (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/java/com/android/server/location/
H A DGpsXtraDownloader.java54 GpsXtraDownloader(Context context, Properties properties) { argument
59 String server1 = properties.getProperty("XTRA_SERVER_1");
60 String server2 = properties.getProperty("XTRA_SERVER_2");
61 String server3 = properties.getProperty("XTRA_SERVER_3");
/frameworks/base/core/java/android/server/
H A DBluetoothEventLoop.java148 private void addDevice(String address, String[] properties) { argument
149 mBluetoothService.addRemoteDeviceProperties(address, properties);
175 private void onDeviceFound(String address, String[] properties) { argument
176 if (properties == null) {
177 Log.e(TAG, "ERROR: Remote device properties are null");
180 addDevice(address, properties);
209 String[] properties = mBluetoothService.getRemoteDeviceProperties(address);
210 if (properties != null) {
211 addDevice(address, properties);
284 // bluetoothd has restarted, re-read all our properties
[all...]
H A DBluetoothService.java981 String properties[] = (String [])getAdapterPropertiesNative();
983 if (properties == null) {
988 for (int i = 0; i < properties.length; i++) {
989 String name = properties[i];
998 len = Integer.valueOf(properties[++i]);
1000 str.append(properties[++i]);
1007 newValue = properties[++i];
1370 Map<String, String> properties = mDeviceProperties.get(address);
1371 if (properties != null) {
1372 return properties
1393 addRemoteDeviceProperties(String address, String[] properties) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_bluetooth_common.cpp30 #include <cutils/properties.h>
476 int get_property(DBusMessageIter iter, Properties *properties, argument
492 if (!strncmp(property, properties[i].name, strlen(property)))
500 type = properties[*prop_index].type;
589 jobjectArray parse_properties(JNIEnv *env, DBusMessageIter *iter, Properties *properties, argument
620 if (!get_property(dict_entry, properties, max_num_properties, &prop_index,
623 if (properties[prop_index].type == DBUS_TYPE_ARRAY)
637 create_prop_array(env, strArray, &properties[i], &values[i].value, values[i].len,
640 if (properties[i].type == DBUS_TYPE_ARRAY && values[i].used
652 if (properties[
658 parse_property_change(JNIEnv *env, DBusMessage *msg, Properties *properties, int max_num_properties) argument
[all...]
/frameworks/base/core/java/android/os/
H A DDebug.java908 * A Map of typed debug properties.
913 * Load the debug properties from the standard files into debugProperties.
921 // Read the properties from each of the files, if present.
984 private static void modifyFieldIfSet(final Field field, final TypedProperties properties, argument
987 int stringInfo = properties.getStringInfo(propertyName);
1012 Object value = properties.get(propertyName);
1042 * properties. This method is a no-op if android.util.Config.DEBUG is
1080 * on internal properties that are fixed at boot time.
1082 * These properties are only set during platform debugging, and are not
1083 * meant to be used as a general-purpose properties stor
[all...]

Completed in 158 milliseconds