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 220 /*package*/ void onPropertyChanged(String[] propValues) {
226 String name = propValues[0];
228 mBluetoothService.setProperty(name, propValues[1]);
230 intent.putExtra(BluetoothAdapter.EXTRA_LOCAL_NAME, propValues[1]);
233 String pairable = name.equals("Pairable") ? propValues[1] :
235 String discoverable = name.equals("Discoverable") ? propValues[1] :
242 mBluetoothService.setProperty(name, propValues[1]);
254 mBluetoothService.setProperty(name, propValues[1]);
255 if (propValues[1].equals("true")) {
267 int len = Integer.valueOf(propValues[1])
    [all...]
BluetoothA2dpService.java 212 String propValues[] = (String []) getSinkPropertiesNative(path);
213 if (propValues == null) {
219 for (int i = 0; i < propValues.length; i+=2) {
220 if (propValues[i].equals(PROPERTY_STATE)) {
221 state = new Integer(convertBluezSinkStringtoState(propValues[i+1]));
460 private synchronized void onSinkPropertyChanged(String path, String []propValues) {
465 String name = propValues[0];
475 int state = convertBluezSinkStringtoState(propValues[1]);
BluetoothService.java     [all...]

Completed in 13 milliseconds