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 284 /*package*/ void onPropertyChanged(String[] propValues) {
290 String name = propValues[0];
293 intent.putExtra(BluetoothAdapter.EXTRA_LOCAL_NAME, propValues[1]);
295 mBluetoothService.setProperty(name, propValues[1]);
297 String pairable = name.equals("Pairable") ? propValues[1] :
299 String discoverable = name.equals("Discoverable") ? propValues[1] :
315 mBluetoothService.setProperty(name, propValues[1]);
318 if (propValues[1].equals("true")) {
328 mBluetoothService.setProperty(name, propValues[1]);
331 int len = Integer.valueOf(propValues[1])
    [all...]
BluetoothA2dpService.java 246 String propValues[] = (String []) getSinkPropertiesNative(path);
247 if (propValues == null) {
253 for (int i = 0; i < propValues.length; i+=2) {
254 if (propValues[i].equals(PROPERTY_STATE)) {
255 state = new Integer(convertBluezSinkStringtoState(propValues[i+1]));
459 private synchronized void onSinkPropertyChanged(String path, String []propValues) {
464 String name = propValues[0];
474 int state = convertBluezSinkStringtoState(propValues[1]);
BluetoothService.java     [all...]

Completed in 33 milliseconds