Home
last modified time | relevance | path

Searched refs:CF_REASON_UNCONDITIONAL (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmCdmaPhoneTest.java20 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
469 mPhoneUT.getCallForwardingOption(CF_REASON_UNCONDITIONAL, null); in testGetCallForwardingOption()
471 eq(CF_REASON_UNCONDITIONAL), anyInt(), nullable(String.class), in testGetCallForwardingOption()
496 mPhoneUT.setCallForwardingOption(-1, CF_REASON_UNCONDITIONAL, in testSetCallForwardingOption()
502 mPhoneUT.setCallForwardingOption(CF_ACTION_ENABLE, CF_REASON_UNCONDITIONAL, cfNumber, 0, in testSetCallForwardingOption()
505 eq(CF_REASON_UNCONDITIONAL), anyInt(), eq(cfNumber), eq(0), in testSetCallForwardingOption()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneTest.java20 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
460 mImsPhoneUT.getCallForwardingOption(CF_REASON_UNCONDITIONAL, msg); in testCallForwardingOption()
467 mImsPhoneUT.setCallForwardingOption(CF_ACTION_ENABLE, CF_REASON_UNCONDITIONAL, "1234", 0, in testCallForwardingOption()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhone.java36 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
736 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
766 case CF_REASON_UNCONDITIONAL: return ImsUtInterface.CDIV_CF_UNCONDITIONAL; in getConditionFromCFReason()
781 case ImsUtInterface.CDIV_CF_UNCONDITIONAL: return CF_REASON_UNCONDITIONAL; in getCFReasonFromCondition()
879 (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL ? true : false), in setCallForwardingOption()
DImsPhoneMmiCode.java388 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
826 ((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) || in processCode()
1341 if (info.reason == CommandsInterface.CF_REASON_UNCONDITIONAL && in makeCFQueryResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmMmiCode.java477 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
906 (((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) || in processCode()
1519 if (info.reason == CommandsInterface.CF_REASON_UNCONDITIONAL && in makeCFQueryResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DGsmCdmaPhone.java28 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
1640 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
1694 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in getCallForwardingOption()
1726 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in setCallForwardingOption()
DCommandsInterface.java67 static final int CF_REASON_UNCONDITIONAL = 0; field