HomeSort by relevance Sort by last modified time
    Searched refs:propValues (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/server/
BluetoothEventLoop.java 305 * @param propValues a string array containing the key and one or more
308 /*package*/ void onPropertyChanged(String[] propValues) {
317 log("Property Changed: " + propValues[0] + " : " + propValues[1]);
318 String name = propValues[0];
320 adapterProperties.setProperty(name, propValues[1]);
322 intent.putExtra(BluetoothAdapter.EXTRA_LOCAL_NAME, propValues[1]);
326 adapterProperties.setProperty(name, propValues[1]);
332 String pairable = name.equals("Pairable") ? propValues[1] :
334 String discoverable = name.equals("Discoverable") ? propValues[1]
    [all...]
BluetoothDeviceProperties.java 134 String[] propValues = mService.getRemoteDeviceProperties(address);
135 if (propValues != null) {
136 return addProperties(address, propValues);
BluetoothA2dpService.java 470 * @param propValues a string array containing the key and one or more
473 private synchronized void onSinkPropertyChanged(String path, String[] propValues) {
478 String name = propValues[0];
488 int state = convertBluezSinkStringToState(propValues[1]);

Completed in 211 milliseconds