Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/
DSubscriptionInfo.java324 int carrierId, int profileClass, int subType, @Nullable String groupOwner, in SubscriptionInfo() argument
330 subType, groupOwner, carrierConfigAccessRules, areUiccApplicationsEnabled, 0); in SubscriptionInfo()
345 int carrierId, int profileClass, int subType, @Nullable String groupOwner, in SubscriptionInfo() argument
351 subType, groupOwner, carrierConfigAccessRules, areUiccApplicationsEnabled, in SubscriptionInfo()
367 int carrierId, int profileClass, int subType, @Nullable String groupOwner, in SubscriptionInfo() argument
395 this.mGroupOwner = TextUtils.emptyIfNull(groupOwner); in SubscriptionInfo()
1723 public Builder setGroupOwner(@Nullable String groupOwner) { in setGroupOwner() argument
1724 mGroupOwner = TextUtils.emptyIfNull(groupOwner); in setGroupOwner()
/frameworks/base/telephony/java/com/android/internal/telephony/
DISub.aidl322 void setGroupOwner(int subId, String groupOwner); in setGroupOwner() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/subscription/
DSubscriptionInfoInternal.java2584 public Builder setGroupOwner(@NonNull String groupOwner) { in setGroupOwner() argument
2585 Objects.requireNonNull(groupOwner); in setGroupOwner()
2586 mGroupOwner = groupOwner; in setGroupOwner()
DSubscriptionDatabaseManager.java1760 public void setGroupOwner(int subId, @NonNull String groupOwner) { in setGroupOwner() argument
1761 Objects.requireNonNull(groupOwner); in setGroupOwner()
1762 writeDatabaseAndCacheHelper(subId, SimInfo.COLUMN_GROUP_OWNER, groupOwner, in setGroupOwner()
DSubscriptionManagerService.java951 public void setGroupOwner(int subId, @NonNull String groupOwner) { in setGroupOwner() argument
956 groupOwner); in setGroupOwner()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/subscription/
DSubscriptionManagerServiceTest.java432 String groupOwner = "test"; in testSetAdminOwned() local
434 mSubscriptionManagerServiceUT.setGroupOwner(1, groupOwner); in testSetAdminOwned()
439 assertThat(subInfo.getGroupOwner()).isEqualTo(groupOwner); in testSetAdminOwned()
449 String groupOwner = "test"; in testSetGroupOwner_callerMissingpPermission_throws() local
454 () -> mSubscriptionManagerServiceUT.setGroupOwner(1, groupOwner)); in testSetGroupOwner_callerMissingpPermission_throws()