Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaMmiCode.java24 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
395 case CF_REASON_UNCONDITIONAL: { in getCallForwardingPrefixAndNumber()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmCdmaPhoneTest.java20 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
961 mPhoneUT.getCallForwardingOption(CF_REASON_UNCONDITIONAL, null); in testGetCallForwardingOption()
963 eq(CF_REASON_UNCONDITIONAL), eq(CommandsInterface.SERVICE_CLASS_VOICE), in testGetCallForwardingOption()
988 mPhoneUT.setCallForwardingOption(-1, CF_REASON_UNCONDITIONAL, in testSetCallForwardingOption()
994 mPhoneUT.setCallForwardingOption(CF_ACTION_ENABLE, CF_REASON_UNCONDITIONAL, cfNumber, 0, in testSetCallForwardingOption()
997 eq(CF_REASON_UNCONDITIONAL), anyInt(), eq(cfNumber), eq(0), in testSetCallForwardingOption()
2085 mPhoneUT.getCallForwardingOption(CommandsInterface.CF_REASON_UNCONDITIONAL, message); in testGetCallForwardingOption_FdnCheck()
2087 verify(mMockCi).queryCallForwardStatus(eq(CommandsInterface.CF_REASON_UNCONDITIONAL), in testGetCallForwardingOption_FdnCheck()
2091 mPhoneUT.getCallForwardingOption(CommandsInterface.CF_REASON_UNCONDITIONAL, message); in testGetCallForwardingOption_FdnCheck()
2114 CommandsInterface.CF_REASON_UNCONDITIONAL, "123", 0, in testSetCallForwardingOption_FdnCheck()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmMmiCode.java519 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
535 case CommandsInterface.CF_REASON_UNCONDITIONAL: in cfReasonToServiceType()
1056 return (((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) in isVoiceUnconditionalForwarding()
1777 if (info.reason == CommandsInterface.CF_REASON_UNCONDITIONAL && in makeCFQueryResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhone.java50 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
1119 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
1152 case CF_REASON_UNCONDITIONAL: return ImsUtInterface.CDIV_CF_UNCONDITIONAL; in getConditionFromCFReason()
1167 case ImsUtInterface.CDIV_CF_UNCONDITIONAL: return CF_REASON_UNCONDITIONAL; in getCFReasonFromCondition()
1902 (ss.mCfReason == CF_REASON_UNCONDITIONAL)) { in handleMessage()
DImsPhoneMmiCode.java423 return CommandsInterface.CF_REASON_UNCONDITIONAL; in scToCallForwardReason()
941 ((reason == CommandsInterface.CF_REASON_UNCONDITIONAL) || in processCode()
1570 if (info.reason == CommandsInterface.CF_REASON_UNCONDITIONAL && in makeCFQueryResultMessage()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneTest.java35 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
533 mImsPhoneUT.getCallForwardingOption(CF_REASON_UNCONDITIONAL, msg); in testCallForwardingOption()
540 mImsPhoneUT.setCallForwardingOption(CF_ACTION_ENABLE, CF_REASON_UNCONDITIONAL, "1234", 0, in testCallForwardingOption()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DGsmCdmaPhone.java32 import static com.android.internal.telephony.CommandsInterface.CF_REASON_UNCONDITIONAL;
2385 case CF_REASON_UNCONDITIONAL: in isValidCommandInterfaceCFReason()
2561 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in getCallForwardingOption()
2622 if (commandInterfaceCFReason == CF_REASON_UNCONDITIONAL) { in setCallForwardingOption()
DCommandsInterface.java80 static final int CF_REASON_UNCONDITIONAL = 0; field