Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/src/com/android/car/settings/datausage/
DAppDataUsageFragment.java47 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/
DMobileNetworkUpdateManager.java47 static final int SUB_ID_NULL = Integer.MIN_VALUE; field in MobileNetworkUpdateManager
80 if (mCurSubscriptionId != SUB_ID_NULL) { in MobileNetworkUpdateManager()
163 if (mCurSubscriptionId != SUB_ID_NULL) { in getSubscription()
DMobileNetworkFragment.java82 ? getArguments().getInt(ARG_NETWORK_SUB_ID, MobileNetworkUpdateManager.SUB_ID_NULL) in onAttach()
83 : MobileNetworkUpdateManager.SUB_ID_NULL; in onAttach()
127 if (subId != MobileNetworkUpdateManager.SUB_ID_NULL) { in onMobileNetworkUpdated()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/network/
DMobileNetworkUpdateManagerTest.java123 setupMobileNetworkUpdateManager(MobileNetworkUpdateManager.SUB_ID_NULL); in onMobileNetworkUpdated_withoutInitialSubId_pickDefaultSubId()