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

  /frameworks/base/core/java/android/server/
BluetoothInputProfileHandler.java 66 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress());
67 if (objectPath == null ||
83 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress());
85 if (!mBluetoothService.connectInputDeviceNative(objectPath)) {
94 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress());
95 if (objectPath == null ||
110 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress());
112 if (!mBluetoothService.disconnectInputDeviceNative(objectPath)) {
BluetoothPanProfileHandler.java 131 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress());
132 if (DBG) Log.d(TAG, "connect PAN(" + objectPath + ")");
152 if (mBluetoothService.connectPanDeviceNative(objectPath, "nap")) {
171 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress());
176 if (!mBluetoothService.disconnectPanServerDeviceNative(objectPath,
219 String objectPath = mBluetoothService.getObjectPathFromAddress(device.getAddress());
220 debugLog("disconnect PAN(" + objectPath + ")");
238 if (!mBluetoothService.disconnectPanServerDeviceNative(objectPath, device.getAddress(),
245 if (!mBluetoothService.disconnectPanDeviceNative(objectPath)) {
BluetoothEventLoop.java 534 private String checkPairingRequestAndGetAddress(String objectPath, int nativeData) {
535 String address = mBluetoothService.getAddressFromObjectPath(objectPath);
563 * @param objectPath the path of the device to request pairing consent for
566 private void onRequestPairingConsent(String objectPath, int nativeData) {
567 String address = checkPairingRequestAndGetAddress(objectPath, nativeData);
598 * @param objectPath the path of the device to confirm the passkey for
602 private void onRequestPasskeyConfirmation(String objectPath, int passkey, int nativeData) {
603 String address = checkPairingRequestAndGetAddress(objectPath, nativeData);
622 * @param objectPath the path of the device requesting a passkey
625 private void onRequestPasskey(String objectPath, int nativeData)
    [all...]
BluetoothService.java     [all...]
BluetoothHealthProfileHandler.java 346 String objectPath =
348 if (objectPath == null) return null;
350 String mainChannelPath = mBluetoothService.getMainChannelNative(objectPath);

Completed in 768 milliseconds