Home
last modified time | relevance | path

Searched refs:csgInfo (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DClosedSubscriberGroupInfoTest.java33 ClosedSubscriberGroupInfo csgInfo = new ClosedSubscriberGroupInfo( in testConstructorNormalInput() local
36 assertEquals(CSG_INDICATOR, csgInfo.getCsgIndicator()); in testConstructorNormalInput()
37 assertEquals(HOME_NODEB_NAME, csgInfo.getHomeNodebName()); in testConstructorNormalInput()
38 assertEquals(CSG_IDENTITY, csgInfo.getCsgIdentity()); in testConstructorNormalInput()
43 ClosedSubscriberGroupInfo csgInfo = new ClosedSubscriberGroupInfo( in testConstructorHomeNodebNameIsNull() local
46 assertEquals(CSG_INDICATOR, csgInfo.getCsgIndicator()); in testConstructorHomeNodebNameIsNull()
47 assertEquals(HOME_NODEB_NAME_EMPTY, csgInfo.getHomeNodebName()); in testConstructorHomeNodebNameIsNull()
48 assertEquals(CSG_IDENTITY, csgInfo.getCsgIdentity()); in testConstructorHomeNodebNameIsNull()
74 ClosedSubscriberGroupInfo csgInfo = new ClosedSubscriberGroupInfo( in testParcel() local
77 csgInfo.writeToParcel(p, 0); in testParcel()
[all …]
DRILTest.java1979 android.hardware.radio.V1_5.ClosedSubscriberGroupInfo csgInfo = in getHalCsgInfo() local
1982 csgInfo.csgIndication = CSG_INDICATION; in getHalCsgInfo()
1983 csgInfo.homeNodebName = HOME_NODEB_NAME; in getHalCsgInfo()
1984 csgInfo.csgIdentity = CSG_IDENTITY; in getHalCsgInfo()
1986 return csgInfo; in getHalCsgInfo()
2001 id.optionalCsgInfo.csgInfo(getHalCsgInfo()); in initializeCellIdentityLte_1_5()
2047 id.optionalCsgInfo.csgInfo(getHalCsgInfo()); in initializeCellIdentityWcdma_1_5()
2093 id.optionalCsgInfo.csgInfo(getHalCsgInfo()); in initializeCellIdentityTdscdma_1_5()
/frameworks/base/telephony/java/android/telephony/
DClosedSubscriberGroupInfo.java49 @NonNull android.hardware.radio.V1_5.ClosedSubscriberGroupInfo csgInfo) { in ClosedSubscriberGroupInfo()
50 this(csgInfo.csgIndication, csgInfo.homeNodebName, csgInfo.csgIdentity); in ClosedSubscriberGroupInfo()
DCellIdentityTdscdma.java93 @Nullable ClosedSubscriberGroupInfo csgInfo) { in CellIdentityTdscdma() argument
105 mCsgInfo = csgInfo; in CellIdentityTdscdma()
135 == android.hardware.radio.V1_5.OptionalCsgInfo.hidl_discriminator.csgInfo in CellIdentityTdscdma()
136 ? new ClosedSubscriberGroupInfo(cid.optionalCsgInfo.csgInfo()) in CellIdentityTdscdma()
DCellIdentityWcdma.java94 @Nullable ClosedSubscriberGroupInfo csgInfo) { in CellIdentityWcdma() argument
106 mCsgInfo = csgInfo; in CellIdentityWcdma()
129 == android.hardware.radio.V1_5.OptionalCsgInfo.hidl_discriminator.csgInfo in CellIdentityWcdma()
130 ? new ClosedSubscriberGroupInfo(cid.optionalCsgInfo.csgInfo()) in CellIdentityWcdma()
DCellIdentityLte.java121 @Nullable ClosedSubscriberGroupInfo csgInfo) { in CellIdentityLte() argument
135 mCsgInfo = csgInfo; in CellIdentityLte()
159 == android.hardware.radio.V1_5.OptionalCsgInfo.hidl_discriminator.csgInfo in CellIdentityLte()
160 ? new ClosedSubscriberGroupInfo(cid.optionalCsgInfo.csgInfo()) in CellIdentityLte()