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;
457 mImsPhoneUT.getCallForwardingOption(CF_REASON_UNCONDITIONAL, msg); in testCallForwardingOption()
464 mImsPhoneUT.setCallForwardingOption(CF_ACTION_ENABLE, CF_REASON_UNCONDITIONAL, "1234", 0, in testCallForwardingOption()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhone.java79 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
717 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
747 case CF_REASON_UNCONDITIONAL: return ImsUtInterface.CDIV_CF_UNCONDITIONAL; in getConditionFromCFReason()
762 case ImsUtInterface.CDIV_CF_UNCONDITIONAL: return CF_REASON_UNCONDITIONAL; in getCFReasonFromCondition()
860 (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL ? true : false), in setCallForwardingOption()
DImsPhoneMmiCode.java363 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
802 ((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) || in processCode()
1317 if (info.reason == CommandsInterface.CF_REASON_UNCONDITIONAL && in makeCFQueryResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmMmiCode.java431 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
860 (((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) || in processCode()
1473 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;
1617 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
1671 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in getCallForwardingOption()
1703 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in setCallForwardingOption()
DCommandsInterface.java65 static final int CF_REASON_UNCONDITIONAL = 0; field