Searched refs:SecurityAlgorithmUpdate (Results 1 – 8 of 8) sorted by relevance
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/security/ |
D | NullCipherNotifierTest.java | 36 import android.telephony.SecurityAlgorithmUpdate; 50 List.of(SecurityAlgorithmUpdate.CONNECTION_EVENT_VOLTE_SIP, 51 SecurityAlgorithmUpdate.CONNECTION_EVENT_VOLTE_SIP_SOS, 52 SecurityAlgorithmUpdate.CONNECTION_EVENT_VOLTE_RTP, 53 SecurityAlgorithmUpdate.CONNECTION_EVENT_VOLTE_RTP_SOS, 54 SecurityAlgorithmUpdate.CONNECTION_EVENT_VONR_SIP, 55 SecurityAlgorithmUpdate.CONNECTION_EVENT_VONR_SIP_SOS, 56 SecurityAlgorithmUpdate.CONNECTION_EVENT_VONR_RTP, 57 SecurityAlgorithmUpdate.CONNECTION_EVENT_VONR_RTP_SOS); 59 List.of(SecurityAlgorithmUpdate.CONNECTION_EVENT_CS_SIGNALLING_GSM, [all …]
|
D | SecurityAlgorithmUpdateTest.java | 19 import static android.telephony.SecurityAlgorithmUpdate.CONNECTION_EVENT_PS_SIGNALLING_3G; 20 import static android.telephony.SecurityAlgorithmUpdate.CONNECTION_EVENT_VOLTE_SIP; 21 import static android.telephony.SecurityAlgorithmUpdate.SECURITY_ALGORITHM_AUTH_HMAC_SHA2_256_128; 22 import static android.telephony.SecurityAlgorithmUpdate.SECURITY_ALGORITHM_EEA2; 23 import static android.telephony.SecurityAlgorithmUpdate.SECURITY_ALGORITHM_HMAC_SHA1_96; 24 import static android.telephony.SecurityAlgorithmUpdate.SECURITY_ALGORITHM_UEA1; 31 import android.telephony.SecurityAlgorithmUpdate; 41 SecurityAlgorithmUpdate update = new SecurityAlgorithmUpdate( in testEqualsAndHash() 44 SecurityAlgorithmUpdate sameUpdate = new SecurityAlgorithmUpdate( in testEqualsAndHash() 54 SecurityAlgorithmUpdate update = new SecurityAlgorithmUpdate( in testNotEqualsAndHash() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/security/ |
D | NullCipherNotifier.java | 19 import static android.telephony.SecurityAlgorithmUpdate.SECURITY_ALGORITHM_UNKNOWN; 27 import android.telephony.SecurityAlgorithmUpdate; 28 import android.telephony.SecurityAlgorithmUpdate.ConnectionEvent; 29 import android.telephony.SecurityAlgorithmUpdate.SecurityAlgorithm; 94 Context context, int phoneId, int subId, SecurityAlgorithmUpdate update) { in onSecurityAlgorithmUpdate() 211 private static boolean shouldIgnoreUpdate(SecurityAlgorithmUpdate update) { in shouldIgnoreUpdate() 221 case SecurityAlgorithmUpdate.CONNECTION_EVENT_VOLTE_SIP: in shouldIgnoreUpdate() 222 case SecurityAlgorithmUpdate.CONNECTION_EVENT_VOLTE_RTP: in shouldIgnoreUpdate() 223 case SecurityAlgorithmUpdate.CONNECTION_EVENT_VONR_SIP: in shouldIgnoreUpdate() 224 case SecurityAlgorithmUpdate.CONNECTION_EVENT_VONR_RTP: in shouldIgnoreUpdate() [all …]
|
/frameworks/base/telephony/java/android/telephony/ |
D | SecurityAlgorithmUpdate.java | 34 public final class SecurityAlgorithmUpdate implements Parcelable { class 42 public SecurityAlgorithmUpdate(@ConnectionEvent int connectionEvent, in SecurityAlgorithmUpdate() method in SecurityAlgorithmUpdate 51 private SecurityAlgorithmUpdate(Parcel in) { in SecurityAlgorithmUpdate() method in SecurityAlgorithmUpdate 91 public static final Parcelable.Creator<SecurityAlgorithmUpdate> CREATOR = 92 new Parcelable.Creator<SecurityAlgorithmUpdate>() { 93 public SecurityAlgorithmUpdate createFromParcel(Parcel in) { 94 return new SecurityAlgorithmUpdate(in); 97 public SecurityAlgorithmUpdate[] newArray(int size) { 98 return new SecurityAlgorithmUpdate[size]; 112 if (!(o instanceof SecurityAlgorithmUpdate)) return false; in equals() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | NetworkIndication.java | 52 import android.telephony.SecurityAlgorithmUpdate; 454 android.hardware.radio.network.SecurityAlgorithmUpdate securityAlgorithmUpdate) { in securityAlgorithmsUpdated() 461 SecurityAlgorithmUpdate update = in securityAlgorithmsUpdated()
|
D | GsmCdmaPhone.java | 86 import android.telephony.SecurityAlgorithmUpdate; 3782 SecurityAlgorithmUpdate update = (SecurityAlgorithmUpdate) ar.result; in handleMessage()
|
D | RILUtils.java | 346 import android.telephony.SecurityAlgorithmUpdate; 5807 public static SecurityAlgorithmUpdate convertSecurityAlgorithmUpdate( in convertSecurityAlgorithmUpdate() 5808 android.hardware.radio.network.SecurityAlgorithmUpdate securityAlgorithmUpdate) { in convertSecurityAlgorithmUpdate() 5813 return new SecurityAlgorithmUpdate( in convertSecurityAlgorithmUpdate()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | GsmCdmaPhoneTest.java | 82 import android.telephony.SecurityAlgorithmUpdate; 3008 SecurityAlgorithmUpdate update = in testSecurityAlgorithm_updateAddedToNotifier() 3009 new SecurityAlgorithmUpdate( in testSecurityAlgorithm_updateAddedToNotifier() 3010 SecurityAlgorithmUpdate.CONNECTION_EVENT_PS_SIGNALLING_3G, in testSecurityAlgorithm_updateAddedToNotifier() 3011 SecurityAlgorithmUpdate.SECURITY_ALGORITHM_UEA1, in testSecurityAlgorithm_updateAddedToNotifier() 3012 SecurityAlgorithmUpdate.SECURITY_ALGORITHM_AUTH_HMAC_SHA2_256_128, in testSecurityAlgorithm_updateAddedToNotifier()
|