Lines Matching defs:name

251      * by a page scan of each new device to retrieve its Bluetooth name.
275 * Bluetooth name.
276 * <p>This name is visible to remote Bluetooth devices.
278 * the name.
286 * intents to request the local Bluetooth name.
520 * Get the friendly Bluetooth name of the local Bluetooth adapter.
521 * <p>This name is visible to remote Bluetooth devices.
524 * @return the Bluetooth name, or null on error
550 * Set the friendly Bluetooth name of the local Bluetooth adapter.
551 * <p>This name is visible to remote Bluetooth devices.
561 * @param name a valid Bluetooth name
562 * @return true if the name was set, false otherwise
564 public boolean setName(String name) {
567 return mService.setName(name);
659 * Bluetooth name.
893 * UUID, service name, and auto-assigned channel. Remote Bluetooth devices
900 * @param name service name for SDP record
906 public BluetoothServerSocket listenUsingRfcommWithServiceRecord(String name, UUID uuid)
908 return createNewRfcommSocketAndRecord(name, uuid, true, true);
924 * UUID, service name, and auto-assigned channel. Remote Bluetooth devices
931 * @param name service name for SDP record
937 public BluetoothServerSocket listenUsingInsecureRfcommWithServiceRecord(String name, UUID uuid)
939 return createNewRfcommSocketAndRecord(name, uuid, false, false);
961 * UUID, service name, and auto-assigned channel. Remote Bluetooth devices
968 * @param name service name for SDP record
976 String name, UUID uuid) throws IOException {
977 return createNewRfcommSocketAndRecord(name, uuid, false, true);
980 private BluetoothServerSocket createNewRfcommSocketAndRecord(String name, UUID uuid,
1016 handle = mService.addRfcommServiceRecord(name, new ParcelUuid(uuid), channel,
1023 throw new IOException("Not able to register SDP record for " + name);