Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/network/telephony/
DMobileNetworkActivity.java56 static final int SUB_ID_NULL = Integer.MIN_VALUE; field in MobileNetworkActivity
76 int updateSubscriptionIndex = SUB_ID_NULL; in onNewIntent()
78 updateSubscriptionIndex = intent.getIntExtra(Settings.EXTRA_SUB_ID, SUB_ID_NULL); in onNewIntent()
123 ? savedInstanceState.getInt(Settings.EXTRA_SUB_ID, SUB_ID_NULL) in onCreate()
125 ? startIntent.getIntExtra(Settings.EXTRA_SUB_ID, SUB_ID_NULL) in onCreate()
126 : SUB_ID_NULL); in onCreate()
227 if (mCurSubscriptionId != SUB_ID_NULL) { in getSubscription()
321 if (SUB_ID_NULL == intent.getIntExtra(Settings.EXTRA_SUB_ID, SUB_ID_NULL)) { in validate()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/network/telephony/
DMobileNetworkActivity.java56 static final int SUB_ID_NULL = Integer.MIN_VALUE; field in MobileNetworkActivity
89 if (mCurSubscriptionId != SUB_ID_NULL) { in onCreate()
99 ? savedInstanceState.getInt(Settings.EXTRA_SUB_ID, SUB_ID_NULL) in onCreate()
100 : SUB_ID_NULL; in onCreate()
165 final int subId = intent.getIntExtra(Settings.EXTRA_SUB_ID, SUB_ID_NULL); in getSubscription()
166 if (subId != SUB_ID_NULL) { in getSubscription()
223 if (mCurSubscriptionId != SUB_ID_NULL && subscriptionId == mCurSubscriptionId in switchFragment()
/packages/apps/Car/Settings/src/com/android/car/settings/datausage/
DAppDataUsageFragment.java50 private static final int SUB_ID_NULL = Integer.MIN_VALUE; field in AppDataUsageFragment
82 ? getArguments().getInt(ARG_NETWORK_SUB_ID, SUB_ID_NULL) : SUB_ID_NULL; in onAttach()
83 if (subId == SUB_ID_NULL) { in onAttach()
/packages/apps/Car/Settings/src/com/android/car/settings/network/
DMobileNetworkFragment.java75 ? getArguments().getInt(ARG_NETWORK_SUB_ID, MobileNetworkUpdateManager.SUB_ID_NULL) in onAttach()
76 : MobileNetworkUpdateManager.SUB_ID_NULL; in onAttach()
104 if (subId != MobileNetworkUpdateManager.SUB_ID_NULL) { in onMobileNetworkUpdated()
DMobileNetworkUpdateManager.java45 static final int SUB_ID_NULL = Integer.MIN_VALUE; field in MobileNetworkUpdateManager
73 if (mCurSubscriptionId != SUB_ID_NULL) { in MobileNetworkUpdateManager()
146 if (mCurSubscriptionId != SUB_ID_NULL) { in getSubscription()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/network/
DMobileNetworkUpdateManagerTest.java139 setupMobileNetworkUpdateManager(MobileNetworkUpdateManager.SUB_ID_NULL); in onMobileNetworkUpdated_withoutInitialSubId_pickDefaultSubId()