Home
last modified time | relevance | path

Searched refs:pkgForDebug (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
H A DOpportunisticNetworkServiceTest.java52 private String pkgForDebug; field in OpportunisticNetworkServiceTest
69 pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in setUp()
102 iOpportunisticNetworkService.setEnable(false, pkgForDebug); in testCheckEnable()
103 isEnable = iOpportunisticNetworkService.isEnabled(pkgForDebug); in testCheckEnable()
191 pkgForDebug); in testSystemPreferredDataWhileCarrierAppIsActive()
212 pkgForDebug); in testSetPreferredDataSubscriptionId()
254 pkgForDebug); in testUpdateAvailableNetworksWithInvalidArguments()
274 iOpportunisticNetworkService.setEnable(false, pkgForDebug); in testUpdateAvailableNetworksWithSuccess()
276 pkgForDebug); in testUpdateAvailableNetworksWithSuccess()
314 onsBinder.updateAvailableNetworks(availableNetworkInfos, mCallback, pkgForDebug); in testPriorityRuleOfActivatingAvailableNetworks()
[all …]
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java1298 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in removeOnSubscriptionsChangedListener()
1300 logd("unregister OnSubscriptionsChangedListener pkgForDebug=" + pkgForDebug in removeOnSubscriptionsChangedListener()
1382 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in removeOnOpportunisticSubscriptionsChangedListener() local
1385 + pkgForDebug + " listener=" + listener); in removeOnOpportunisticSubscriptionsChangedListener()
3130 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in createSubscriptionGroup() local
3140 groupUuid = iSub.createSubscriptionGroup(subIdArray, pkgForDebug); in createSubscriptionGroup()
3180 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in addSubscriptionsIntoGroup() local
3190 iSub.addSubscriptionsIntoGroup(subIdArray, groupUuid, pkgForDebug); in addSubscriptionsIntoGroup()
3232 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in removeSubscriptionsFromGroup() local
3242 iSub.removeSubscriptionsFromGroup(subIdArray, groupUuid, pkgForDebug); in removeSubscriptionsFromGroup()
H A DTelephonyManager.java12749 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in setOpportunisticNetworkState() local
12754 ret = iOpportunisticNetworkService.setEnable(enable, pkgForDebug); in setOpportunisticNetworkState()
12777 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in isOpportunisticNetworkEnabled() local
12783 isEnabled = iOpportunisticNetworkService.isEnabled(pkgForDebug); in isOpportunisticNetworkEnabled()
13474 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in setPreferredOpportunisticDataSubscription() local
13504 pkgForDebug); in setPreferredOpportunisticDataSubscription()
13573 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in updateAvailableNetworks() local
13599 .updateAvailableNetworks(availableNetworks, callbackStub, pkgForDebug); in updateAvailableNetworks()
13991 String pkgForDebug = mContext != null ? mContext.getOpPackageName() : "<unknown>"; in isDataEnabledForApn() local
13995 return service.isDataEnabledForApn(apnType, getSubId(), pkgForDebug); in isDataEnabledForApn()
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java887 public void removeOnSubscriptionsChangedListener(String pkgForDebug, in removeOnSubscriptionsChangedListener() argument