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.java51 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
461 mPhoneUT.getCallForwardingOption(CF_REASON_UNCONDITIONAL, null); in testGetCallForwardingOption()
463 eq(CF_REASON_UNCONDITIONAL), anyInt(), anyString(), any(Message.class)); in testGetCallForwardingOption()
486 mPhoneUT.setCallForwardingOption(-1, CF_REASON_UNCONDITIONAL, in testSetCallForwardingOption()
492 mPhoneUT.setCallForwardingOption(CF_ACTION_ENABLE, CF_REASON_UNCONDITIONAL, cfNumber, 0, in testSetCallForwardingOption()
495 eq(CF_REASON_UNCONDITIONAL), anyInt(), eq(cfNumber), eq(0), any(Message.class)); in testSetCallForwardingOption()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneTest.java55 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
449 mImsPhoneUT.getCallForwardingOption(CF_REASON_UNCONDITIONAL, msg); in testCallForwardingOption()
456 mImsPhoneUT.setCallForwardingOption(CF_ACTION_ENABLE, CF_REASON_UNCONDITIONAL, "1234", 0, in testCallForwardingOption()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhone.java76 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
627 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
657 case CF_REASON_UNCONDITIONAL: return ImsUtInterface.CDIV_CF_UNCONDITIONAL; in getConditionFromCFReason()
672 case ImsUtInterface.CDIV_CF_UNCONDITIONAL: return CF_REASON_UNCONDITIONAL; in getCFReasonFromCondition()
770 (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL ? true : false), in setCallForwardingOption()
DImsPhoneMmiCode.java356 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
790 ((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) || in processCode()
1301 if (info.reason == CommandsInterface.CF_REASON_UNCONDITIONAL && in makeCFQueryResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmMmiCode.java426 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
850 (((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) || in processCode()
1447 if (info.reason == CommandsInterface.CF_REASON_UNCONDITIONAL && in makeCFQueryResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DGsmCdmaPhone.java64 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
1535 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
1589 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in getCallForwardingOption()
1621 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in setCallForwardingOption()
DCommandsInterface.java62 static final int CF_REASON_UNCONDITIONAL = 0; field