Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:BluetoothDevice

34  * Represents a remote Bluetooth device. A {@link BluetoothDevice} lets you
42 * BluetoothDevice}.
44 * <p>To get a {@link BluetoothDevice}, use
60 public final class BluetoothDevice implements Parcelable {
61 private static final String TAG = "BluetoothDevice";
67 * <p><code>Intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
68 * BluetoothDevice.ERROR)</code>
170 * Used as a Parcelable {@link BluetoothDevice} extra field in every intent
171 * broadcast by this class. It contains the {@link BluetoothDevice} that
349 synchronized (BluetoothDevice.class) {
362 * Create a new BluetoothDevice
370 /*package*/ BluetoothDevice(String address) {
381 if (o instanceof BluetoothDevice) {
382 BluetoothDevice)o).getAddress());
393 * Returns a string representation of this BluetoothDevice.
398 * @return string representation of this BluetoothDevice
409 public static final Parcelable.Creator<BluetoothDevice> CREATOR =
410 new Parcelable.Creator<BluetoothDevice>() {
411 public BluetoothDevice createFromParcel(Parcel in) {
412 return new BluetoothDevice(in.readString());
414 public BluetoothDevice[] newArray(int size) {
415 return new BluetoothDevice[size];
424 * Returns the hardware address of this BluetoothDevice.
640 return BluetoothDevice.ERROR;