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

  /frameworks/base/telephony/java/android/telephony/
PreciseCallState.java 28 * The following call information is included in returned PreciseCallState:
40 public class PreciseCallState implements Parcelable {
74 public PreciseCallState(int ringingCall, int foregroundCall, int backgroundCall,
88 public PreciseCallState() {
92 * Construct a PreciseCallState object from the given parcel.
94 private PreciseCallState(Parcel in) {
105 * @see PreciseCallState#PRECISE_CALL_STATE_NOT_VALID
106 * @see PreciseCallState#PRECISE_CALL_STATE_IDLE
107 * @see PreciseCallState#PRECISE_CALL_STATE_ACTIVE
108 * @see PreciseCallState#PRECISE_CALL_STATE_HOLDIN
    [all...]
PreciseCallState.aidl 20 parcelable PreciseCallState
DataConnectionRealTimeInfo.java 59 * Construct a PreciseCallState object from the given parcel.
PhoneStateListener.java 343 PhoneStateListener.this.onPreciseCallStateChanged((PreciseCallState)msg.obj);
507 public void onPreciseCallStateChanged(PreciseCallState callState) {
654 public void onPreciseCallStateChanged(PreciseCallState callState) {
TelephonyManager.java 512 * @see PreciseCallState#PRECISE_CALL_STATE_NOT_VALID
513 * @see PreciseCallState#PRECISE_CALL_STATE_IDLE
514 * @see PreciseCallState#PRECISE_CALL_STATE_ACTIVE
515 * @see PreciseCallState#PRECISE_CALL_STATE_HOLDING
516 * @see PreciseCallState#PRECISE_CALL_STATE_DIALING
517 * @see PreciseCallState#PRECISE_CALL_STATE_ALERTING
518 * @see PreciseCallState#PRECISE_CALL_STATE_INCOMING
519 * @see PreciseCallState#PRECISE_CALL_STATE_WAITING
520 * @see PreciseCallState#PRECISE_CALL_STATE_DISCONNECTED
521 * @see PreciseCallState#PRECISE_CALL_STATE_DISCONNECTIN
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyEvents.java 22 import android.telephony.PreciseCallState;
67 private PreciseCallState mPreciseCallState;
74 PreciseCallState preciseCallState, int subscriptionId) {
77 mPreciseCallState = preciseCallState;
80 mCause = preciseCallState.getPreciseDisconnectCause();
91 public PreciseCallState getPreciseCallState() {
100 JSONObject preciseCallState = new JSONObject();
102 preciseCallState.put(
105 preciseCallState.put
    [all...]
TelephonyUtils.java 23 import android.telephony.PreciseCallState;
138 case PreciseCallState.PRECISE_CALL_STATE_ACTIVE:
140 case PreciseCallState.PRECISE_CALL_STATE_HOLDING:
142 case PreciseCallState.PRECISE_CALL_STATE_DIALING:
144 case PreciseCallState.PRECISE_CALL_STATE_ALERTING:
146 case PreciseCallState.PRECISE_CALL_STATE_INCOMING:
148 case PreciseCallState.PRECISE_CALL_STATE_WAITING:
150 case PreciseCallState.PRECISE_CALL_STATE_DISCONNECTED:
152 case PreciseCallState.PRECISE_CALL_STATE_DISCONNECTING:
154 case PreciseCallState.PRECISE_CALL_STATE_IDLE
    [all...]
TelephonyStateListeners.java 24 import android.telephony.PreciseCallState;
75 public void onPreciseCallStateChanged(PreciseCallState callState) {
80 foregroundState != PreciseCallState.PRECISE_CALL_STATE_NOT_VALID) {
86 ringingState != PreciseCallState.PRECISE_CALL_STATE_NOT_VALID) {
92 backgroundState != PreciseCallState.PRECISE_CALL_STATE_NOT_VALID) {
100 int newState, String which, PreciseCallState callState) {
TelephonyConstants.java 391 public static final String PRECISE_CALL_STATE = "preciseCallState";
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DefaultPhoneNotifierTest.java 36 import android.telephony.PreciseCallState;
215 PreciseCallState.PRECISE_CALL_STATE_IDLE,
216 PreciseCallState.PRECISE_CALL_STATE_IDLE,
217 PreciseCallState.PRECISE_CALL_STATE_IDLE);
222 PreciseCallState.PRECISE_CALL_STATE_IDLE,
223 PreciseCallState.PRECISE_CALL_STATE_ACTIVE,
224 PreciseCallState.PRECISE_CALL_STATE_IDLE);
229 PreciseCallState.PRECISE_CALL_STATE_IDLE,
230 PreciseCallState.PRECISE_CALL_STATE_ACTIVE,
231 PreciseCallState.PRECISE_CALL_STATE_HOLDING)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 25 import android.telephony.PreciseCallState;
341 * Convert the {@link Call.State} enum into the PreciseCallState.PRECISE_CALL_STATE_* constants
347 return PreciseCallState.PRECISE_CALL_STATE_ACTIVE;
349 return PreciseCallState.PRECISE_CALL_STATE_HOLDING;
351 return PreciseCallState.PRECISE_CALL_STATE_DIALING;
353 return PreciseCallState.PRECISE_CALL_STATE_ALERTING;
355 return PreciseCallState.PRECISE_CALL_STATE_INCOMING;
357 return PreciseCallState.PRECISE_CALL_STATE_WAITING;
359 return PreciseCallState.PRECISE_CALL_STATE_DISCONNECTED;
361 return PreciseCallState.PRECISE_CALL_STATE_DISCONNECTING
    [all...]
CallManager.java     [all...]
Phone.java     [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
IPhoneStateListener.aidl 24 import android.telephony.PreciseCallState;
42 void onPreciseCallStateChanged(in PreciseCallState callState);
PhoneConstantConversions.java 21 import android.telephony.PreciseCallState;
  /frameworks/base/services/core/java/com/android/server/
TelephonyRegistry.java 39 import android.telephony.PreciseCallState;
180 private int mRingingCallState = PreciseCallState.PRECISE_CALL_STATE_IDLE;
182 private int mForegroundCallState = PreciseCallState.PRECISE_CALL_STATE_IDLE;
184 private int mBackgroundCallState = PreciseCallState.PRECISE_CALL_STATE_IDLE;
186 private PreciseCallState mPreciseCallState = new PreciseCallState();
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
tel_defines.py 631 PRECISE_CALL_STATE = "preciseCallState"
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 53 import android.telephony.PreciseCallState;
250 public void onPreciseCallStateChanged(PreciseCallState preciseState) {
    [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 
  /frameworks/base/config/
compiled-classes-phone     [all...]

Completed in 5980 milliseconds