/frameworks/base/telephony/java/android/telephony/ |
D | LteVopsSupportInfo.java | 35 public final class LteVopsSupportInfo extends VopsSupportInfo { class 66 public LteVopsSupportInfo(@LteVopsStatus int vops, @LteVopsStatus int emergency) { in LteVopsSupportInfo() method in LteVopsSupportInfo 126 if (o == null || !(o instanceof LteVopsSupportInfo)) { in equals() 130 LteVopsSupportInfo other = (LteVopsSupportInfo) o; in equals() 151 public static final @android.annotation.NonNull Creator<LteVopsSupportInfo> CREATOR = 152 new Creator<LteVopsSupportInfo>() { 154 public LteVopsSupportInfo createFromParcel(Parcel in) { 157 return new LteVopsSupportInfo(in); 161 public LteVopsSupportInfo[] newArray(int size) { 162 return new LteVopsSupportInfo[size]; [all …]
|
D | DataSpecificRegistrationInfo.java | 277 public LteVopsSupportInfo getLteVopsSupportInfo() { in getLteVopsSupportInfo() 278 return mVopsSupportInfo instanceof LteVopsSupportInfo in getLteVopsSupportInfo() 279 ? (LteVopsSupportInfo) mVopsSupportInfo in getLteVopsSupportInfo() 280 : new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in getLteVopsSupportInfo() 281 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in getLteVopsSupportInfo()
|
D | LteVopsSupportInfo.aidl | 19 parcelable LteVopsSupportInfo;
|
D | VopsSupportInfo.java | 85 return LteVopsSupportInfo.createFromParcelBody(in);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | DataSpecificRegistrationInfoTest.java | 24 import android.telephony.LteVopsSupportInfo; 47 LteVopsSupportInfo vopsInfo = new LteVopsSupportInfo( in testBuilder() 48 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, LteVopsSupportInfo.LTE_STATUS_SUPPORTED); in testBuilder()
|
D | RatRatcheterTest.java | 29 import android.telephony.LteVopsSupportInfo; 98 LteVopsSupportInfo lteVopsSupportInfo = in createNetworkRegistrationInfo() 99 new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_SUPPORTED, in createNetworkRegistrationInfo() 100 LteVopsSupportInfo.LTE_STATUS_NOT_SUPPORTED); in createNetworkRegistrationInfo()
|
D | CellularNetworkServiceTest.java | 36 import android.telephony.LteVopsSupportInfo; 174 new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in testGetNetworkRegistrationInfo() 175 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in testGetNetworkRegistrationInfo() 241 VopsSupportInfo vops = new LteVopsSupportInfo( in testGetNetworkRegistrationInfoV1_5() 242 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, LteVopsSupportInfo.LTE_STATUS_SUPPORTED); in testGetNetworkRegistrationInfoV1_5() 339 VopsSupportInfo vops = new LteVopsSupportInfo( in testGetNetworkRegistrationInfoV1_6WithLte() 340 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, LteVopsSupportInfo.LTE_STATUS_SUPPORTED); in testGetNetworkRegistrationInfoV1_6WithLte() 525 new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in testGetAvailableServices_withMmsEnabled() 526 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in testGetAvailableServices_withMmsEnabled()
|
D | DisplayInfoControllerTest.java | 35 import android.telephony.LteVopsSupportInfo; 153 LteVopsSupportInfo lteVopsSupportInfo = in changeRegState() 154 new LteVopsSupportInfo( in changeRegState() 155 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, in changeRegState() 156 LteVopsSupportInfo.LTE_STATUS_SUPPORTED); in changeRegState()
|
D | ServiceStateTrackerTest.java | 79 import android.telephony.LteVopsSupportInfo; 2053 LteVopsSupportInfo lteVopsSupportInfo = in changeRegState() 2054 new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in changeRegState() 2055 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in changeRegState() 2078 LteVopsSupportInfo lteVopsSupportInfo = in changeRegStateWithIwlan() 2079 new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in changeRegStateWithIwlan() 2080 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in changeRegStateWithIwlan() 2330 LteVopsSupportInfo lteVopsSupportInfo = in sendRegStateUpdateForLteCellId() 2331 new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in sendRegStateUpdateForLteCellId() 2332 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in sendRegStateUpdateForLteCellId() [all …]
|
D | ServiceStateTest.java | 27 import android.telephony.LteVopsSupportInfo; 316 LteVopsSupportInfo lteVopsSupportInfo = in testNetworkRegistrationInfo() 317 new LteVopsSupportInfo(LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in testNetworkRegistrationInfo() 318 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in testNetworkRegistrationInfo()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CellularNetworkService.java | 41 import android.telephony.LteVopsSupportInfo; 331 LteVopsSupportInfo lteVopsSupportInfo; in createRegistrationStateFromDataRegState() 341 lteVopsSupportInfo = new LteVopsSupportInfo( in createRegistrationStateFromDataRegState() 342 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in createRegistrationStateFromDataRegState() 343 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in createRegistrationStateFromDataRegState() 396 LteVopsSupportInfo vopsInfo = new LteVopsSupportInfo( in getNetworkRegistrationInfo() 397 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE, in getNetworkRegistrationInfo() 398 LteVopsSupportInfo.LTE_STATUS_NOT_AVAILABLE); in getNetworkRegistrationInfo() 636 private LteVopsSupportInfo convertHalLteVopsSupportInfo( in convertHalLteVopsSupportInfo() 638 int vops = LteVopsSupportInfo.LTE_STATUS_NOT_SUPPORTED; in convertHalLteVopsSupportInfo() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/data/ |
D | DataNetworkControllerTest.java | 74 import android.telephony.LteVopsSupportInfo; 623 .setVopsSupportInfo(new LteVopsSupportInfo( in serviceStateChanged() 624 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, in serviceStateChanged() 625 LteVopsSupportInfo.LTE_STATUS_SUPPORTED)) in serviceStateChanged() 678 .setVopsSupportInfo(new LteVopsSupportInfo( in createSS() 679 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, in createSS() 680 LteVopsSupportInfo.LTE_STATUS_SUPPORTED)) in createSS() 3881 .setVopsSupportInfo(new LteVopsSupportInfo( in testNonVoPSNoIMSSetup() 3882 LteVopsSupportInfo.LTE_STATUS_NOT_SUPPORTED, in testNonVoPSNoIMSSetup() 3883 LteVopsSupportInfo.LTE_STATUS_NOT_SUPPORTED)) in testNonVoPSNoIMSSetup() [all …]
|
D | DataNetworkTest.java | 59 import android.telephony.LteVopsSupportInfo; 570 .setVopsSupportInfo(new LteVopsSupportInfo( in testCreateDataNetworkWhenOos() 571 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, in testCreateDataNetworkWhenOos() 572 LteVopsSupportInfo.LTE_STATUS_SUPPORTED)) in testCreateDataNetworkWhenOos() 617 .setVopsSupportInfo(new LteVopsSupportInfo( in testRecreateAgentWhenOos() 618 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, in testRecreateAgentWhenOos() 619 LteVopsSupportInfo.LTE_STATUS_SUPPORTED)) in testRecreateAgentWhenOos() 1678 .setVopsSupportInfo(new LteVopsSupportInfo( in testMovingToNonVopsRequestedMmtel() 1679 LteVopsSupportInfo.LTE_STATUS_SUPPORTED, in testMovingToNonVopsRequestedMmtel() 1680 LteVopsSupportInfo.LTE_STATUS_SUPPORTED)) in testMovingToNonVopsRequestedMmtel() [all …]
|
/frameworks/base/boot/ |
D | preloaded-classes | 7498 android.telephony.LteVopsSupportInfo$1 7499 android.telephony.LteVopsSupportInfo-IA 7500 android.telephony.LteVopsSupportInfo
|
D | boot-image-profile.txt | 14064 HSPLandroid/telephony/LteVopsSupportInfo$1;->createFromParcel(Landroid/os/Parcel;)Landroid/telephon… 14065 HSPLandroid/telephony/LteVopsSupportInfo$1;->createFromParcel(Landroid/os/Parcel;)Ljava/lang/Object; 14066 HSPLandroid/telephony/LteVopsSupportInfo;-><init>(Landroid/os/Parcel;)V 14067 HSPLandroid/telephony/LteVopsSupportInfo;->toString()Ljava/lang/String; 14068 HSPLandroid/telephony/LteVopsSupportInfo;->writeToParcel(Landroid/os/Parcel;I)V 29905 Landroid/telephony/LteVopsSupportInfo$1; 29906 Landroid/telephony/LteVopsSupportInfo-IA; 29907 Landroid/telephony/LteVopsSupportInfo;
|
/frameworks/base/config/ |
D | preloaded-classes | 7529 android.telephony.LteVopsSupportInfo$1 7530 android.telephony.LteVopsSupportInfo-IA 7531 android.telephony.LteVopsSupportInfo
|
D | boot-image-profile.txt | 14128 HSPLandroid/telephony/LteVopsSupportInfo$1;->createFromParcel(Landroid/os/Parcel;)Landroid/telephon… 14129 HSPLandroid/telephony/LteVopsSupportInfo$1;->createFromParcel(Landroid/os/Parcel;)Ljava/lang/Object; 14130 HSPLandroid/telephony/LteVopsSupportInfo;-><init>(Landroid/os/Parcel;)V 14131 HSPLandroid/telephony/LteVopsSupportInfo;->toString()Ljava/lang/String; 14132 HSPLandroid/telephony/LteVopsSupportInfo;->writeToParcel(Landroid/os/Parcel;I)V 40066 Landroid/telephony/LteVopsSupportInfo$1; 40067 Landroid/telephony/LteVopsSupportInfo-IA; 40068 Landroid/telephony/LteVopsSupportInfo;
|
/frameworks/base/core/api/ |
D | system-current.txt | 14541 method @Deprecated @NonNull public android.telephony.LteVopsSupportInfo getLteVopsSupportInfo(); 14661 public final class LteVopsSupportInfo extends android.telephony.VopsSupportInfo { 14662 ctor public LteVopsSupportInfo(int, int); 14671 …ll public static final android.os.Parcelable.Creator<android.telephony.LteVopsSupportInfo> CREATOR;
|