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

  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapHandler.java 19 import com.android.bluetooth.pbapclient.BluetoothPbapClient;
41 case BluetoothPbapClient.EVENT_PULL_PHONE_BOOK_DONE:
46 case BluetoothPbapClient.EVENT_PULL_PHONE_BOOK_ERROR:
50 case BluetoothPbapClient.EVENT_SESSION_CONNECTED:
54 case BluetoothPbapClient.EVENT_SESSION_DISCONNECTED:
60 case BluetoothPbapClient.EVENT_SET_PHONE_BOOK_DONE:
63 case BluetoothPbapClient.EVENT_PULL_VCARD_LISTING_DONE:
66 case BluetoothPbapClient.EVENT_PULL_VCARD_ENTRY_DONE:
69 case BluetoothPbapClient.EVENT_PULL_PHONE_BOOK_SIZE_DONE:
72 case BluetoothPbapClient.EVENT_PULL_VCARD_LISTING_SIZE_DONE
    [all...]
BluetoothPbapRequestPullVcardEntry.java 52 if (format != BluetoothPbapClient.VCARD_TYPE_21
53 && format != BluetoothPbapClient.VCARD_TYPE_30) {
54 format = BluetoothPbapClient.VCARD_TYPE_21;
BluetoothPbapRequestPullPhoneBook.java 66 if (format != BluetoothPbapClient.VCARD_TYPE_21
67 && format != BluetoothPbapClient.VCARD_TYPE_30) {
68 format = BluetoothPbapClient.VCARD_TYPE_21;
CallLogPullRequest.java 18 import com.android.bluetooth.pbapclient.BluetoothPbapClient;
62 if (path.equals(BluetoothPbapClient.ICH_PATH)) {
64 } else if (path.equals(BluetoothPbapClient.OCH_PATH)) {
66 } else if (path.equals(BluetoothPbapClient.MCH_PATH)) {
BluetoothPbapClient.java 37 * <li>Create an instance of <code>BluetoothPbapClient</code> class, passing
75 public class BluetoothPbapClient {
78 private static final String TAG = "BluetoothPbapClient";
387 private final WeakReference<BluetoothPbapClient> mClient;
389 SessionHandler(BluetoothPbapClient client) {
390 mClient = new WeakReference<BluetoothPbapClient>(client);
397 BluetoothPbapClient client = mClient.get();
515 public BluetoothPbapClient(BluetoothDevice device, Account account, Handler handler) {
    [all...]
PbapPCEClient.java 53 * BluetoothPbapClient.PB_PATH;
54 * BluetoothPbapClient.SIM_PB_PATH;
55 * BluetoothPbapClient.ICH_PATH;
56 * BluetoothPbapClient.SIM_ICH_PATH;
57 * BluetoothPbapClient.OCH_PATH;
58 * BluetoothPbapClient.SIM_OCH_PATH;
59 * BluetoothPbapClient.MCH_PATH;
60 * BluetoothPbapClient.SIM_MCH_PATH;
67 private BluetoothPbapClient mClient;
93 BluetoothPbapClient.ConnectionState currentState = mClient.getState()
    [all...]
BluetoothPbapVcardList.java 63 if (format == BluetoothPbapClient.VCARD_TYPE_30) {
PhonebookPullRequest.java 6 import com.android.bluetooth.pbapclient.BluetoothPbapClient;
42 path = BluetoothPbapClient.PB_PATH;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
PbapClientProfile.java 19 import android.bluetooth.BluetoothPbapClient;
39 private BluetoothPbapClient mService;
63 mService = (BluetoothPbapClient) proxy;
LocalBluetoothProfileManager.java 27 import android.bluetooth.BluetoothPbapClient;
221 BluetoothPbapClient.ACTION_CONNECTION_STATE_CHANGED);
  /frameworks/base/core/java/android/bluetooth/
BluetoothPbapClient.java 33 public final class BluetoothPbapClient implements BluetoothProfile {
35 private static final String TAG = "BluetoothPbapClient";
91 * Create a BluetoothPbapClient proxy object.
93 BluetoothPbapClient(Context context, ServiceListener l) {
95 Log.d(TAG, "Create BluetoothPbapClient proxy object");
133 * Other public functions of BluetoothPbapClient will return default error
293 mServiceListener.onServiceConnected(BluetoothProfile.PBAP_CLIENT, BluetoothPbapClient.this);
BluetoothAdapter.java     [all...]

Completed in 175 milliseconds