Home
last modified time | relevance | path

Searched refs:serviceUuidList (Results 1 – 4 of 4) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothLeScanFacade.java271 String[] serviceUuidList in bleStartClassicBleScanWithServiceUuids()
274 UUID[] serviceUuids = new UUID[serviceUuidList.length]; in bleStartClassicBleScanWithServiceUuids()
275 for (int i = 0; i < serviceUuidList.length; i++) { in bleStartClassicBleScanWithServiceUuids()
276 serviceUuids[i] = UUID.fromString(serviceUuidList[i]); in bleStartClassicBleScanWithServiceUuids()
DGattServerFacade.java508 ArrayList<String> serviceUuidList = new ArrayList<String>(); in gattGetServiceUuidList() local
510 serviceUuidList.add(service.getUuid().toString()); in gattGetServiceUuidList()
512 return serviceUuidList; in gattGetServiceUuidList()
DGattClientFacade.java386 ArrayList<String> serviceUuidList = new ArrayList<String>(); in gattClientGetServiceUuidList() local
388 serviceUuidList.add(service.getUuid().toString()); in gattClientGetServiceUuidList()
390 return serviceUuidList; in gattClientGetServiceUuidList()
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java475 ArrayList<String> serviceUuidList = new ArrayList<String>(); in buildJsonBleScanResult() local
481 serviceUuidList.add(serviceUuid.toString()); in buildJsonBleScanResult()
487 result.put("serviceUuidList", serviceUuidList); in buildJsonBleScanResult()