OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
25
import android.bluetooth.
BluetoothPbap
;
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java
41
import android.bluetooth.
BluetoothPbap
;
190
mState =
BluetoothPbap
.STATE_DISCONNECTED;
310
setState(
BluetoothPbap
.STATE_DISCONNECTED,
BluetoothPbap
.RESULT_CANCELED);
477
setState(
BluetoothPbap
.STATE_CONNECTED);
513
setState(
BluetoothPbap
.STATE_DISCONNECTED);
703
setState(state,
BluetoothPbap
.RESULT_SUCCESS);
712
Intent intent = new Intent(
BluetoothPbap
.PBAP_STATE_CHANGED_ACTION);
713
intent.putExtra(
BluetoothPbap
.PBAP_PREVIOUS_STATE, prevState);
714
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 255 milliseconds