OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bluetoothmapclient
(Results
1 - 16
of
16
) sorted by null
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
MapMceTestFragment.java
23
import android.bluetooth.
BluetoothMapClient
;
49
BluetoothMapClient
mMapProfile;
78
mSendIntent = new Intent(
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY);
79
mDeliveryIntent = new Intent(
BluetoothMapClient
.ACTION_MESSAGE_DELIVERED_SUCCESSFULLY);
140
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY);
141
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_DELIVERED_SUCCESSFULLY);
142
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_RECEIVED);
143
intentFilter.addAction(
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
209
mMapProfile = (
BluetoothMapClient
) proxy;
230
if (action.equals(
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED))
[
all
...]
MapReceiver.java
19
import android.bluetooth.
BluetoothMapClient
;
32
if (action.equals(
BluetoothMapClient
.ACTION_MESSAGE_RECEIVED)) {
BluetoothHeadsetFragment.java
24
import android.bluetooth.
BluetoothMapClient
;
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothMapClientFacade.java
23
import android.bluetooth.
BluetoothMapClient
;
63
private static
BluetoothMapClient
sMapProfile = null;
75
mSendIntent = new Intent(
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY);
76
mDeliveryIntent = new Intent(
BluetoothMapClient
.ACTION_MESSAGE_DELIVERED_SUCCESSFULLY);
78
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_RECEIVED);
79
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY);
80
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_DELIVERED_SUCCESSFULLY);
88
sMapProfile = (
BluetoothMapClient
) proxy;
198
if (action.equals(
BluetoothMapClient
.ACTION_MESSAGE_RECEIVED)) {
201
} else if (action.equals(
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY))
[
all
...]
BluetoothConnectionFacade.java
36
import android.bluetooth.
BluetoothMapClient
;
146
new IntentFilter(
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
325
case
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED:
/packages/apps/Car/Messenger/src/com/android/car/messenger/
MapMessage.java
20
import android.bluetooth.
BluetoothMapClient
;
38
* {@link
BluetoothMapClient
#ACTION_MESSAGE_RECEIVED} broadcast.
46
String handle = intent.getStringExtra(
BluetoothMapClient
.EXTRA_MESSAGE_HANDLE);
48
BluetoothMapClient
.EXTRA_SENDER_CONTACT_URI);
50
BluetoothMapClient
.EXTRA_SENDER_CONTACT_NAME);
MapMessageMonitor.java
23
import android.bluetooth.
BluetoothMapClient
;
190
boolean sendAutoReply(SenderKey senderKey,
BluetoothMapClient
mapClient) {
210
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY),
254
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY);
255
intentFilter.addAction(
BluetoothMapClient
.ACTION_MESSAGE_RECEIVED);
265
if (
BluetoothMapClient
.ACTION_MESSAGE_SENT_SUCCESSFULLY.equals(intent.getAction())) {
269
} else if (
BluetoothMapClient
.ACTION_MESSAGE_RECEIVED.equals(intent.getAction())) {
MessengerService.java
22
import android.bluetooth.
BluetoothMapClient
;
63
private
BluetoothMapClient
mMapClient;
183
mMapClient = (
BluetoothMapClient
) proxy;
208
intentFilter.addAction(
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
/frameworks/base/core/java/android/bluetooth/
BluetoothMapClient.java
37
public final class
BluetoothMapClient
implements BluetoothProfile {
39
private static final String TAG = "
BluetoothMapClient
";
105
* Create a
BluetoothMapClient
proxy object.
107
/*package*/
BluetoothMapClient
(Context context, ServiceListener l) {
108
if (DBG) Log.d(TAG, "Create
BluetoothMapClient
proxy object");
396
BluetoothMapClient
.this);
BluetoothAdapter.java
[
all
...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
MapClientProfile.java
22
import android.bluetooth.
BluetoothMapClient
;
41
private
BluetoothMapClient
mService;
65
mService = (
BluetoothMapClient
) proxy;
LocalBluetoothProfileManager.java
25
import android.bluetooth.
BluetoothMapClient
;
136
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
219
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
/packages/services/Car/service/src/com/android/car/
CarBluetoothUserService.java
24
import android.bluetooth.
BluetoothMapClient
;
42
private
BluetoothMapClient
mBluetoothMapClient = null;
219
mBluetoothMapClient = (
BluetoothMapClient
) proxy;
BluetoothDeviceConnectionPolicy.java
24
import android.bluetooth.
BluetoothMapClient
;
272
} else if (
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED.equals(action)) {
527
profileFilter.addAction(
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MceStateMachine.java
46
import android.bluetooth.
BluetoothMapClient
;
158
Intent intent = new Intent(
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
511
intent.setAction(
BluetoothMapClient
.ACTION_MESSAGE_RECEIVED);
513
intent.putExtra(
BluetoothMapClient
.EXTRA_MESSAGE_HANDLE, request.getHandle());
525
intent.putExtra(
BluetoothMapClient
.EXTRA_SENDER_CONTACT_URI,
528
intent.putExtra(
BluetoothMapClient
.EXTRA_SENDER_CONTACT_NAME,
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java
29
import android.bluetooth.
BluetoothMapClient
;
119
} else if (
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED.equals(action)) {
156
filter.addAction(
BluetoothMapClient
.ACTION_CONNECTION_STATE_CHANGED);
Completed in 702 milliseconds