Loading telephony/java/com/android/ims/ImsCallForwardInfo.java +5 −0 Original line number Diff line number Diff line Loading @@ -31,6 +31,8 @@ public class ImsCallForwardInfo implements Parcelable { public int mStatus; // 0x91: International, 0x81: Unknown public int mToA; // Service class public int mServiceClass; // Number (it will not include the "sip" or "tel" URI scheme) public String mNumber; // No reply timer for CF Loading @@ -53,6 +55,7 @@ public class ImsCallForwardInfo implements Parcelable { out.writeInt(mCondition); out.writeInt(mStatus); out.writeInt(mToA); out.writeInt(mServiceClass); out.writeString(mNumber); out.writeInt(mTimeSeconds); } Loading @@ -62,6 +65,7 @@ public class ImsCallForwardInfo implements Parcelable { return super.toString() + ", Condition: " + mCondition + ", Status: " + ((mStatus == 0) ? "disabled" : "enabled") + ", ToA: " + mToA + ", Number=" + mNumber + ", Service Class: " + mServiceClass + ", Time (seconds): " + mTimeSeconds; } Loading @@ -69,6 +73,7 @@ public class ImsCallForwardInfo implements Parcelable { mCondition = in.readInt(); mStatus = in.readInt(); mToA = in.readInt(); mServiceClass = in.readInt(); mNumber = in.readString(); mTimeSeconds = in.readInt(); } Loading telephony/java/com/android/ims/internal/IImsUt.aidl +5 −0 Original line number Diff line number Diff line Loading @@ -111,4 +111,9 @@ interface IImsUt { * Sets the listener. */ void setListener(in IImsUtListener listener); /** * Retrieves the configuration of the call forward for specified service class. */ int queryCFForServiceClass(int condition, String number, int serviceClass); } Loading
telephony/java/com/android/ims/ImsCallForwardInfo.java +5 −0 Original line number Diff line number Diff line Loading @@ -31,6 +31,8 @@ public class ImsCallForwardInfo implements Parcelable { public int mStatus; // 0x91: International, 0x81: Unknown public int mToA; // Service class public int mServiceClass; // Number (it will not include the "sip" or "tel" URI scheme) public String mNumber; // No reply timer for CF Loading @@ -53,6 +55,7 @@ public class ImsCallForwardInfo implements Parcelable { out.writeInt(mCondition); out.writeInt(mStatus); out.writeInt(mToA); out.writeInt(mServiceClass); out.writeString(mNumber); out.writeInt(mTimeSeconds); } Loading @@ -62,6 +65,7 @@ public class ImsCallForwardInfo implements Parcelable { return super.toString() + ", Condition: " + mCondition + ", Status: " + ((mStatus == 0) ? "disabled" : "enabled") + ", ToA: " + mToA + ", Number=" + mNumber + ", Service Class: " + mServiceClass + ", Time (seconds): " + mTimeSeconds; } Loading @@ -69,6 +73,7 @@ public class ImsCallForwardInfo implements Parcelable { mCondition = in.readInt(); mStatus = in.readInt(); mToA = in.readInt(); mServiceClass = in.readInt(); mNumber = in.readString(); mTimeSeconds = in.readInt(); } Loading
telephony/java/com/android/ims/internal/IImsUt.aidl +5 −0 Original line number Diff line number Diff line Loading @@ -111,4 +111,9 @@ interface IImsUt { * Sets the listener. */ void setListener(in IImsUtListener listener); /** * Retrieves the configuration of the call forward for specified service class. */ int queryCFForServiceClass(int condition, String number, int serviceClass); }