HomeSort by relevance Sort by last modified time
    Searched full:pbap (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /frameworks/opt/bluetooth/
Android.mk 6 src_dirs:= src/android/bluetooth/client/pbap
11 LOCAL_MODULE:= android.bluetooth.client.pbap
  /frameworks/base/core/java/android/bluetooth/
BluetoothPbap.java 31 * Public API for controlling the Bluetooth Pbap Service. This includes
33 * BluetoothPbap is a proxy object for controlling the Bluetooth Pbap
58 "android.bluetooth.pbap.intent.PBAP_STATE";
61 "android.bluetooth.pbap.intent.PBAP_PREVIOUS_STATE";
63 /** Indicates the state of a pbap connection state has changed.
68 "android.bluetooth.pbap.intent.action.PBAP_STATE_CHANGED";
165 Log.e(TAG, "Could not bind to Bluetooth Pbap Service with " + intent);
211 * object is currently not connected to the Pbap service.
230 * the Pbap service.
248 * object is not currently connected to the Pbap service
    [all...]
IBluetoothPbap.aidl 22 * System private API for Bluetooth pbap service
BluetoothPbapClient.java 30 * This class provides the APIs to control the Bluetooth PBAP Client Profile.
40 "android.bluetooth.pbap.profile.action.CONNECTION_STATE_CHANGED";
59 Log.d(TAG, "onBluetoothStateChange: PBAP CLIENT up=" + up);
117 Log.e(TAG, "Could not bind to Bluetooth PBAP Client Service with " + intent);
162 * Upon successful connection to remote PBAP server the Client will
171 log("connect(" + device + ") for PBAP Client.");
BluetoothProfile.java 88 * PBAP
91 public static final int PBAP = 6;
134 * PBAP Client
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
PbapServerProfile.java 40 static final String NAME = "PBAP Server";
45 // The UUIDs indicate that remote device might access pbap server
73 BluetoothPbap pbap = new BluetoothPbap(context, new PbapServiceListener()); local
114 // ignore: isPreferred is always true for PBAP
144 Log.w(TAG, "Error cleaning up PBAP proxy", t);
PbapClientProfile.java 64 // We just bound to the service, so refresh the UI for any connected PBAP devices.
231 Log.w(TAG, "Error cleaning up PBAP Client proxy", t);
LocalBluetoothProfileManager.java 133 //Create PBAP server profile, but do not add it to list of profiles
214 //PBAP Client
217 if(DEBUG) Log.d(TAG, "Adding local PBAP Client profile");
225 "Warning: PBAP Client profile was previously added but the UUID is now missing.");
230 // There is no local SDP record for HID and Settings app doesn't control PBAP Server.
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 33 package com.android.bluetooth.pbap;
75 * To enable PBAP DEBUG/VERBOSE logging - run below cmd in adb shell, and
89 public static final String AUTH_CHALL_ACTION = "com.android.bluetooth.pbap.authchall";
95 public static final String AUTH_RESPONSE_ACTION = "com.android.bluetooth.pbap.authresponse";
101 public static final String AUTH_CANCELLED_ACTION = "com.android.bluetooth.pbap.authcancelled";
108 "com.android.bluetooth.pbap.userconfirmtimeout";
114 public static final String EXTRA_SESSION_KEY = "com.android.bluetooth.pbap.sessionkey";
198 if (VERBOSE) Log.v(TAG, "Pbap Service onCreate");
205 if (VERBOSE) Log.v(TAG, "Starting PBAP service");
340 if (VERBOSE) Log.v(TAG, "Pbap Service onDestroy")
    [all...]
BluetoothPbapReceiver.java 33 package com.android.bluetooth.pbap;
63 //FIX: We turn on PBAP after BluetoothAdapter.STATE_ON,
64 //but we turn off PBAP right after BluetoothAdapter.STATE_TURNING_OFF
BluetoothPbapConfig.java 18 package com.android.bluetooth.pbap;
BluetoothPbapUtils.java 18 package com.android.bluetooth.pbap;
25 import com.android.bluetooth.pbap.BluetoothPbapService;
BluetoothPbapAuthenticator.java 33 package com.android.bluetooth.pbap;
BluetoothPbapActivity.java 33 package com.android.bluetooth.pbap;
62 * PbapActivity shows two dialogues: One for accepting incoming pbap request and
  /system/bt/bta/pb/
bta_pbs_int.h 46 #define BTA_PBS_DEFAULT_VERSION 0x0101 /* for PBAP PSE version 1.1 */
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
BtEnum.py 47 PBAP = 6
  /packages/apps/Bluetooth/
AndroidManifest_test.xml 87 <activity android:name=".pbap.BluetoothPbapActivity"
96 android:name=".pbap.BluetoothPbapService" >
100 android:name=".pbap.BluetoothPbapReceiver">
AndroidManifest.xml 71 <!-- For PBAP Owner Vcard Info -->
216 <activity android:name=".pbap.BluetoothPbapActivity"
227 android:name=".pbap.BluetoothPbapService"
236 android:name=".pbap.BluetoothPbapReceiver"
375 <!-- Authenticator for PBAP account. -->
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/pbap/
BluetoothPbapVcardManagerTest.java 17 package com.android.bluetooth.tests.pbap;
19 import com.android.bluetooth.pbap.BluetoothPbapObexServer;
20 import com.android.bluetooth.pbap.BluetoothPbapVcardManager;
ContactCursorFilterTest.java 17 package com.android.bluetooth.tests.pbap;
24 import com.android.bluetooth.pbap.BluetoothPbapVcardManager;
  /system/bt/btif/src/
btif_sock_sdp.c 213 // database as a PBAP protocol.
257 APPL_TRACE_ERROR("add_pbap_sdp: failed to register PBAP service, stage: %s, "
375 * HSAG, HFAG, OPP & PBAP that are mapped to rc chan 10, 11,12 & 19. Today
377 * now we will need to support OPP and PBAP to enable 3rd party developer apps
396 // PBAP Server is always channel 19
436 case RESERVED_SCN_PBS: // PBAP Reserved port
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapPCEClient.java 83 mContactHandlerThread = new HandlerThread("PBAP contact handler",
252 Log.w(TAG, "pbap disconnecting from = " + device);
407 // Find all accounts that match the type "pbap" and delete them. This section is
BluetoothPbapRequest.java 71 /* make sure final flag for GET is used (PBAP spec 6.2.2) */
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DeviceProfilesSettings.java 60 private static final String KEY_PBAP_SERVER = "PBAP Server";
181 // Only provide PBAP cabability if the client device has requested PBAP.
  /packages/apps/Bluetooth/src/com/android/bluetooth/sdp/
SdpManager.java 44 // TODO: When changing PBAP to use this new API.
45 // Move the defines to the profile (PBAP already have the feature bits)
46 /* PBAP repositories */
575 * PBAP specification)
577 * the Bluetooth PBAP specification)
579 * PBAP specification)

Completed in 1910 milliseconds

1 2 3 4 5 6 7