Searched refs:BluetoothSocket (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java32 * it will return a new {@link BluetoothSocket} to manage the connection.
33 * On the client side, use a single {@link BluetoothSocket} to both initiate
46 * a {@link BluetoothSocket} to manage the connection. Once the {@link
47 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
50 * close the returned {@link BluetoothSocket}.
65 * {@see BluetoothSocket}
69 /*package*/ final BluetoothSocket mSocket;
86 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
100 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, -1, uuid);
107 * <p>Returns a connected {@link BluetoothSocket} o
[all...]
H A DBluetoothInputStream.java30 private BluetoothSocket mSocket;
32 /*package*/ BluetoothInputStream(BluetoothSocket s) {
H A DBluetoothOutputStream.java30 private BluetoothSocket mSocket;
32 /*package*/ BluetoothOutputStream(BluetoothSocket s) {
H A DBluetoothDevice.java51 * {@link BluetoothSocket} for communication with the remote device, using
64 * {@see BluetoothSocket}
1234 * Create an RFCOMM {@link BluetoothSocket} ready to start a secure
1247 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
1258 public BluetoothSocket createRfcommSocket(int channel) throws IOException {
1259 return new BluetoothSocket(BluetoothSocket.TYPE_RFCOMM, -1, true, true, this, channel,
1264 * Create an RFCOMM {@link BluetoothSocket} ready to start a secure
1269 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
1294 public BluetoothSocket createRfcommSocketToServiceRecor
[all...]
H A DBluetoothSocket.java41 * it will return a new {@link BluetoothSocket} to manage the connection.
42 * On the client side, use a single {@link BluetoothSocket} to both initiate
49 * <p>To create a {@link BluetoothSocket} for connecting to a known device, use
56 * <p>To create a {@link BluetoothSocket} as a server (or "host"), see the
65 * <p>{@link BluetoothSocket} is thread
82 public final class BluetoothSocket implements Closeable { class in inherits:Closeable
83 private static final String TAG = "BluetoothSocket";
90 /** Keep TYPE_ fields in sync with BluetoothSocket.cpp */
134 * Construct a BluetoothSocket.
145 /*package*/ BluetoothSocket(in method in class:BluetoothSocket
174 private BluetoothSocket(BluetoothSocket s) { method in class:BluetoothSocket
212 private BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, String address, method in class:BluetoothSocket
[all...]
H A DBluetoothAdapter.java856 * android.bluetooth.BluetoothSocket#connect()}. Discovery is not managed by
1093 BluetoothSocket.TYPE_RFCOMM, true, true, channel);
1204 socket = new BluetoothServerSocket(BluetoothSocket.TYPE_RFCOMM, auth,
1227 BluetoothSocket.TYPE_RFCOMM, false, false, port);
1249 BluetoothSocket.TYPE_RFCOMM, false, true, port);
1270 BluetoothSocket.TYPE_SCO, false, false, -1);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapRfcommTransport.java19 import android.bluetooth.BluetoothSocket;
30 private final BluetoothSocket mSocket;
32 public BluetoothMapRfcommTransport(BluetoothSocket socket) {
H A DBluetoothMnsService.java21 import android.bluetooth.BluetoothSocket;
109 BluetoothSocket sock = mServerSocket.accept();
H A DBluetoothMasClient.java21 import android.bluetooth.BluetoothSocket;
463 private BluetoothSocket socket = null;
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapObexTransport.java19 import android.bluetooth.BluetoothSocket;
31 private BluetoothSocket mSocket = null;
33 public BluetoothPbapObexTransport(BluetoothSocket rfs) {
H A DBluetoothPbapSession.java21 import android.bluetooth.BluetoothSocket;
293 private BluetoothSocket mSocket;

Completed in 160 milliseconds