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

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMasInstance.java 67 private BluetoothSocket mConnSocket = null;
343 if (mConnSocket != null) {
365 BluetoothObexTransport transport = new BluetoothObexTransport(mConnSocket);
387 return (mConnSocket != null);
426 if (mConnSocket != null) {
428 mConnSocket.close();
432 mConnSocket = null;
453 mConnSocket = socket;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 164 private BluetoothSocket mConnSocket = null;
305 if (mConnSocket != null) {
435 if (mConnSocket != null) {
437 mConnSocket.close();
438 mConnSocket = null;
508 BluetoothObexTransport transport = new BluetoothObexTransport(mConnSocket);
593 mConnSocket = serverSocket.accept();
597 if (mConnSocket == null) {
598 Log.w(TAG, "mConnSocket is null");
601 mRemoteDevice = mConnSocket.getRemoteDevice()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/sap/
SapService.java 84 private BluetoothSocket mConnSocket = null;
208 if (mConnSocket != null) {
210 mConnSocket.close();
211 mConnSocket = null;
262 mSapServer = new SapServer(mSessionStatusHandler, this, mConnSocket.getInputStream(), mConnSocket.getOutputStream());
328 mConnSocket = mServerSocket.accept();
331 if (mConnSocket == null) {
332 Log.w(TAG, "mConnSocket is null");
335 mRemoteDevice = mConnSocket.getRemoteDevice()
    [all...]

Completed in 190 milliseconds