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.java1830 android.hardware.radio.V1_5.ClosedSubscriberGroupInfo csgInfo = in getHalCsgInfo() local
1833 csgInfo.csgIndication = CSG_INDICATION; in getHalCsgInfo()
1834 csgInfo.homeNodebName = HOME_NODEB_NAME; in getHalCsgInfo()
1835 csgInfo.csgIdentity = CSG_IDENTITY; in getHalCsgInfo()
1837 return csgInfo; in getHalCsgInfo()
1852 id.optionalCsgInfo.csgInfo(getHalCsgInfo()); in initializeCellIdentityLte_1_5()
1898 id.optionalCsgInfo.csgInfo(getHalCsgInfo()); in initializeCellIdentityWcdma_1_5()
1944 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.java91 @Nullable ClosedSubscriberGroupInfo csgInfo) { in CellIdentityTdscdma() argument
103 mCsgInfo = csgInfo; in CellIdentityTdscdma()
133 == android.hardware.radio.V1_5.OptionalCsgInfo.hidl_discriminator.csgInfo in CellIdentityTdscdma()
134 ? new ClosedSubscriberGroupInfo(cid.optionalCsgInfo.csgInfo()) in CellIdentityTdscdma()
DCellIdentityWcdma.java92 @Nullable ClosedSubscriberGroupInfo csgInfo) { in CellIdentityWcdma() argument
104 mCsgInfo = csgInfo; in CellIdentityWcdma()
127 == android.hardware.radio.V1_5.OptionalCsgInfo.hidl_discriminator.csgInfo in CellIdentityWcdma()
128 ? new ClosedSubscriberGroupInfo(cid.optionalCsgInfo.csgInfo()) in CellIdentityWcdma()
DCellIdentityLte.java119 @Nullable ClosedSubscriberGroupInfo csgInfo) { in CellIdentityLte() argument
133 mCsgInfo = csgInfo; in CellIdentityLte()
157 == android.hardware.radio.V1_5.OptionalCsgInfo.hidl_discriminator.csgInfo in CellIdentityLte()
158 ? new ClosedSubscriberGroupInfo(cid.optionalCsgInfo.csgInfo()) in CellIdentityLte()