HomeSort by relevance Sort by last modified time
    Searched refs:BluetoothSocket (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/device/bluetooth/
bluetooth_socket.h 21 // BluetoothSocket represents a socket to a specific service on a
22 // BluetoothDevice. BluetoothSocket objects are ref counted and may outlive
25 class BluetoothSocket : public base::RefCounted<BluetoothSocket> {
40 friend class base::RefCounted<BluetoothSocket>;
41 virtual ~BluetoothSocket() {}
bluetooth_socket_mac.h 34 // This class is an implementation of BluetoothSocket class for OSX platform.
35 class BluetoothSocketMac : public BluetoothSocket {
39 static scoped_refptr<BluetoothSocket> CreateBluetoothSocket(
42 static scoped_refptr<BluetoothSocket> CreateBluetoothSocket(
45 // BluetoothSocket override
bluetooth_profile.h 17 class BluetoothSocket;
91 // connections from devices, will have a BluetoothSocket created and passed
99 scoped_refptr<BluetoothSocket>)> ConnectionCallback;
bluetooth_socket_chromeos.h 30 // The BluetoothSocketChromeOS class implements BluetoothSocket for the
33 : public device::BluetoothSocket {
35 // BluetoothSocket override.
40 // Create an instance of a BluetoothSocket from the passed file descriptor
43 static scoped_refptr<device::BluetoothSocket> Create(
bluetooth_socket_win.h 26 // This class is an implementation of BluetoothSocket class for Windows
28 class BluetoothSocketWin : public BluetoothSocket {
30 static scoped_refptr<BluetoothSocket> CreateBluetoothSocket(
33 // BluetoothSocket override
bluetooth_profile_win.cc 37 scoped_refptr<BluetoothSocket> socket(
bluetooth_device.h 19 class BluetoothSocket;
268 // SocketCallback is used by ConnectToService to return a BluetoothSocket to
270 // until the last reference to the returned BluetoothSocket is released.
271 typedef base::Callback<void(scoped_refptr<BluetoothSocket>)>
334 // the connection is successful, |callback| is called with a BluetoothSocket.
336 // all references to the BluetoothSocket are released. Note that the
337 // BluetoothSocket object can outlive both this BluetoothDevice and the
bluetooth_profile_chromeos_unittest.cc 27 using device::BluetoothSocket;
96 scoped_refptr<BluetoothSocket> socket) {
116 scoped_refptr<BluetoothSocket> last_socket_;
169 scoped_refptr<BluetoothSocket> socket = last_socket_;
295 scoped_refptr<BluetoothSocket> socket = last_socket_;
bluetooth_socket_win.cc 43 scoped_refptr<BluetoothSocket> BluetoothSocketWin::CreateBluetoothSocket(
  /frameworks/base/core/java/android/bluetooth/
BluetoothServerSocket.java 33 * it will return a new {@link BluetoothSocket} to manage the connection.
34 * On the client side, use a single {@link BluetoothSocket} to both initiate
47 * a {@link BluetoothSocket} to manage the connection. Once the {@link
48 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
51 * close the returned {@link BluetoothSocket}.
66 * {@see BluetoothSocket}
70 /*package*/ final BluetoothSocket mSocket;
87 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
101 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, -1, uuid);
108 * <p>Returns a connected {@link BluetoothSocket} on successful connection
    [all...]
BluetoothInputStream.java 30 private BluetoothSocket mSocket;
32 /*package*/ BluetoothInputStream(BluetoothSocket s) {
BluetoothOutputStream.java 30 private BluetoothSocket mSocket;
32 /*package*/ BluetoothOutputStream(BluetoothSocket s) {
BluetoothDevice.java 52 * {@link BluetoothSocket} for communication with the remote device, using
65 * {@see BluetoothSocket}
    [all...]
BluetoothSocket.java 46 * it will return a new {@link BluetoothSocket} to manage the connection.
47 * On the client side, use a single {@link BluetoothSocket} to both initiate
54 * <p>To create a {@link BluetoothSocket} for connecting to a known device, use
61 * <p>To create a {@link BluetoothSocket} as a server (or "host"), see the
70 * <p>{@link BluetoothSocket} is thread
87 public final class BluetoothSocket implements Closeable {
88 private static final String TAG = "BluetoothSocket";
95 /** Keep TYPE_ fields in sync with BluetoothSocket.cpp */
139 * Construct a BluetoothSocket.
150 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapRfcommTransport.java 18 import android.bluetooth.BluetoothSocket;
29 private BluetoothSocket mSocket = null;
31 public BluetoothMapRfcommTransport(BluetoothSocket rfs) {
BluetoothMnsRfcommTransport.java 17 import android.bluetooth.BluetoothSocket;
29 private final BluetoothSocket mSocket;
31 public BluetoothMnsRfcommTransport(BluetoothSocket socket) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommTransport.java 41 import android.bluetooth.BluetoothSocket;
47 private final BluetoothSocket mSocket;
49 public BluetoothOppRfcommTransport(BluetoothSocket socket) {
BluetoothOppRfcommListener.java 41 import android.bluetooth.BluetoothSocket;
146 BluetoothSocket clientSocket;
176 Log.i(TAG, "BluetoothSocket listen thread finished");
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapRfcommTransport.java 35 import android.bluetooth.BluetoothSocket;
46 private BluetoothSocket mSocket = null;
48 public BluetoothPbapRfcommTransport(BluetoothSocket rfs) {
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_socket.h 22 class MockBluetoothSocket : public BluetoothSocket {
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_event_router.h 48 // Register the BluetoothSocket |socket| for use by the extensions system.
51 int RegisterSocket(scoped_refptr<device::BluetoothSocket> socket);
53 // Release the BluetoothSocket corresponding to |id|. Returns true if
75 // Get the BluetoothSocket corresponding to |id|.
76 scoped_refptr<device::BluetoothSocket> GetSocket(int id);
96 scoped_refptr<device::BluetoothSocket> socket);
126 // The next id to use for referring to a BluetoothSocket. We avoid using
131 typedef std::map<int, scoped_refptr<device::BluetoothSocket> > SocketMap;
bluetooth_api.h 23 class BluetoothSocket;
190 scoped_refptr<device::BluetoothSocket> socket_;
209 scoped_refptr<device::BluetoothSocket> socket_;
bluetooth_event_router.cc 85 scoped_refptr<device::BluetoothSocket> socket) {
134 scoped_refptr<device::BluetoothSocket>
177 scoped_refptr<device::BluetoothSocket> socket) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 22 import android.bluetooth.BluetoothSocket;
162 * @param socket The BluetoothSocket on which the connection was made
165 public synchronized void connected(BluetoothSocket socket, BluetoothDevice
300 BluetoothSocket socket = null;
359 private final BluetoothSocket mmSocket;
365 BluetoothSocket tmp = null;
368 // Get a BluetoothSocket for a connection with the
389 // Make a connection to the BluetoothSocket
430 private final BluetoothSocket mmSocket;
434 public ConnectedThread(BluetoothSocket socket, String socketType)
    [all...]
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChatService.java 27 import android.bluetooth.BluetoothSocket;
148 * @param socket The BluetoothSocket on which the connection was made
151 public synchronized void connected(BluetoothSocket socket, BluetoothDevice
294 BluetoothSocket socket = null;
351 private final BluetoothSocket mmSocket;
357 BluetoothSocket tmp = null;
360 // Get a BluetoothSocket for a connection with the
383 // Make a connection to the BluetoothSocket
423 private final BluetoothSocket mmSocket;
427 public ConnectedThread(BluetoothSocket socket, String socketType)
    [all...]

Completed in 273 milliseconds

1 2