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

  /frameworks/base/core/java/android/bluetooth/
IBluetoothHeadset.aidl 55 void phoneStateChanged(int numActive, int numHeld, int callState, String number, int type);
BluetoothHeadset.java 815 public void phoneStateChanged(int numActive, int numHeld, int callState, String number,
819 mService.phoneStateChanged(numActive, numHeld, callState, number, type);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 257 public void phoneStateChanged(int numActive, int numHeld, int callState,
261 service.phoneStateChanged(numActive, numHeld, callState, number, type);
480 private void phoneStateChanged(int numActive, int numHeld, int callState,
484 msg.obj = new HeadsetCallState(numActive, numHeld, callState, number, type);
HeadsetPhoneState.java 297 public HeadsetCallState(int numActive, int numHeld, int callState, String number, int type) {
299 mNumHeld = numHeld;
HeadsetStateMachine.java     [all...]
  /packages/services/Telephony/src/com/android/phone/
BluetoothPhoneService.java 359 int numHeld = 0;
371 numHeld = 0; //0: no calls held, as now *both* the caller are active
373 numHeld = 1; //1: held call and active call, as on answering a
377 numHeld = 1; //1: held call and active call, as on make a 3 Way Call
380 numHeld = 0; //0: no calls held as this is a SINGLE_ACTIVE call
383 return numHeld;
    [all...]

Completed in 3033 milliseconds