OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:propValues
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/server/
BluetoothEventLoop.java
301
* @param
propValues
a string array containing the key and one or more
304
/*package*/ void onPropertyChanged(String[]
propValues
) {
313
log("Property Changed: " +
propValues
[0] + " : " +
propValues
[1]);
314
String name =
propValues
[0];
316
adapterProperties.setProperty(name,
propValues
[1]);
318
intent.putExtra(BluetoothAdapter.EXTRA_LOCAL_NAME,
propValues
[1]);
322
adapterProperties.setProperty(name,
propValues
[1]);
328
String pairable = name.equals("Pairable") ?
propValues
[1] :
330
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
457
* @param
propValues
a string array containing the key and one or more
460
private synchronized void onSinkPropertyChanged(String path, String[]
propValues
) {
465
String name =
propValues
[0];
475
int state = convertBluezSinkStringToState(
propValues
[1]);
Completed in 260 milliseconds