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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
PbapServerProfile.java 22 import android.bluetooth.BluetoothPbap;
39 private BluetoothPbap mService;
49 implements BluetoothPbap.ServiceListener {
51 public void onServiceConnected(BluetoothPbap proxy) {
53 mService = (BluetoothPbap) proxy;
68 BluetoothPbap pbap = new BluetoothPbap(context, new PbapServiceListener());
LocalBluetoothProfileManager.java 24 import android.bluetooth.BluetoothPbap;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 41 import android.bluetooth.BluetoothPbap;
185 mState = BluetoothPbap.STATE_DISCONNECTED;
299 setState(BluetoothPbap.STATE_DISCONNECTED, BluetoothPbap.RESULT_CANCELED);
466 setState(BluetoothPbap.STATE_CONNECTED);
495 setState(BluetoothPbap.STATE_DISCONNECTED);
661 setState(state, BluetoothPbap.RESULT_SUCCESS);
670 Intent intent = new Intent(BluetoothPbap.PBAP_STATE_CHANGED_ACTION);
671 intent.putExtra(BluetoothPbap.PBAP_PREVIOUS_STATE, prevState);
672 intent.putExtra(BluetoothPbap.PBAP_STATE, mState)
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothPbap.java 34 * BluetoothPbap is a proxy object for controlling the Bluetooth Pbap
37 * Creating a BluetoothPbap object will create a binding with the
38 * BluetoothPbap service. Users of this object should call close() when they
39 * are finished with the BluetoothPbap, so that this proxy object can unbind
42 * This BluetoothPbap object is not immediately bound to the
43 * BluetoothPbap service. Use the ServiceListener interface to obtain a
45 * immediately call methods on BluetoothPbap after construction.
51 public class BluetoothPbap {
53 private static final String TAG = "BluetoothPbap";
92 * been connected to the BluetoothPbap service
    [all...]

Completed in 66 milliseconds