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

  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
HfpClientConnection.java 20 import android.bluetooth.BluetoothHeadsetClientCall;
40 private BluetoothHeadsetClientCall mCurrentCall;
50 BluetoothHeadsetClient client, BluetoothHeadsetClientCall call) {
112 public BluetoothHeadsetClientCall getCall() {
126 public void updateCall(BluetoothHeadsetClientCall call) {
142 case BluetoothHeadsetClientCall.CALL_STATE_ACTIVE:
148 case BluetoothHeadsetClientCall.CALL_STATE_HELD_BY_RESPONSE_AND_HOLD:
149 case BluetoothHeadsetClientCall.CALL_STATE_HELD:
155 case BluetoothHeadsetClientCall.CALL_STATE_DIALING:
156 case BluetoothHeadsetClientCall.CALL_STATE_ALERTING
    [all...]
HfpClientDeviceBlock.java 21 import android.bluetooth.BluetoothHeadsetClientCall;
87 List<BluetoothHeadsetClientCall> calls =
100 for (BluetoothHeadsetClientCall call : calls) {
108 synchronized Connection onCreateIncomingConnection(BluetoothHeadsetClientCall call) {
128 synchronized Connection onCreateUnknownConnection(BluetoothHeadsetClientCall call) {
166 synchronized void handleCall(BluetoothHeadsetClientCall call) {
192 // (represented as unknown call in telecom since). Since BluetoothHeadsetClientCall is a
195 if (call.getState() == BluetoothHeadsetClientCall.CALL_STATE_DIALING ||
196 call.getState() == BluetoothHeadsetClientCall.CALL_STATE_ALERTING ||
197 call.getState() == BluetoothHeadsetClientCall.CALL_STATE_ACTIVE |
    [all...]
HfpClientConference.java 20 import android.bluetooth.BluetoothHeadsetClientCall;
HfpClientConnectionService.java 21 import android.bluetooth.BluetoothHeadsetClientCall;
106 BluetoothHeadsetClientCall call =
203 BluetoothHeadsetClientCall call =
243 BluetoothHeadsetClientCall call =
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHeadsetClient.aidl 20 import android.bluetooth.BluetoothHeadsetClientCall;
41 List<BluetoothHeadsetClientCall> getCurrentCalls(in BluetoothDevice device);
47 boolean terminateCall(in BluetoothDevice device, in BluetoothHeadsetClientCall call);
52 BluetoothHeadsetClientCall dial(in BluetoothDevice device, String number);
BluetoothHeadsetClientCall.java 30 public final class BluetoothHeadsetClientCall implements Parcelable {
77 * Creates BluetoothHeadsetClientCall instance.
79 public BluetoothHeadsetClientCall(BluetoothDevice device, int id, int state, String number,
84 public BluetoothHeadsetClientCall(BluetoothDevice device, int id, UUID uuid, int state,
210 StringBuilder builder = new StringBuilder("BluetoothHeadsetClientCall{mDevice: ");
241 public static final Parcelable.Creator<BluetoothHeadsetClientCall> CREATOR =
242 new Parcelable.Creator<BluetoothHeadsetClientCall>() {
244 public BluetoothHeadsetClientCall createFromParcel(Parcel in) {
245 return new BluetoothHeadsetClientCall((BluetoothDevice)in.readParcelable(null),
251 public BluetoothHeadsetClientCall[] newArray(int size)
    [all...]
BluetoothHeadsetClientCall.aidl 18 parcelable BluetoothHeadsetClientCall;
BluetoothHeadsetClient.java 115 * with value of {@link BluetoothHeadsetClientCall} instance,
212 * {@link BluetoothHeadsetClientCall} object that has changed.
687 public List<BluetoothHeadsetClientCall> getCurrentCalls(BluetoothDevice device) {
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientStateMachine.java 39 import android.bluetooth.BluetoothHeadsetClientCall;
125 private final Hashtable<Integer, BluetoothHeadsetClientCall> mCalls = new Hashtable<>();
128 private final Hashtable<Integer, BluetoothHeadsetClientCall> mCallsUpdate = new Hashtable<>();
179 for (BluetoothHeadsetClientCall call : mCalls.values()) {
186 for (BluetoothHeadsetClientCall call : mCallsUpdate.values()) {
211 private BluetoothHeadsetClientCall getCall(int... states) {
215 for (BluetoothHeadsetClientCall c : mCalls.values()) {
227 for (BluetoothHeadsetClientCall c : mCalls.values()) {
236 private void sendCallChangedIntent(BluetoothHeadsetClientCall c) {
260 Iterator<Hashtable.Entry<Integer, BluetoothHeadsetClientCall>> it
    [all...]
HeadsetClientService.java 22 import android.bluetooth.BluetoothHeadsetClientCall;
358 public boolean terminateCall(BluetoothDevice device, BluetoothHeadsetClientCall call) {
386 public BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) {
395 public List<BluetoothHeadsetClientCall> getCurrentCalls(BluetoothDevice device) {
398 return new ArrayList<BluetoothHeadsetClientCall>();
725 BluetoothHeadsetClientCall dial(BluetoothDevice device, String number) {
739 BluetoothHeadsetClientCall call = new BluetoothHeadsetClientCall(
741 BluetoothHeadsetClientCall.CALL_STATE_DIALING, number, false /* multiparty */,
772 public List<BluetoothHeadsetClientCall> getCurrentCalls(BluetoothDevice device)
    [all...]
  /prebuilts/misc/common/robolectric/lib/
android-all-5.0.0_r2-robolectric-1-sources.jar 
android-all-6.0.0_r1-robolectric-0-sources.jar 

Completed in 335 milliseconds