Home
last modified time | relevance | path

Searched refs:numTimes (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/
DShadowConnectivityManager.java45 public static boolean verifyFactoryResetCalled(int numTimes) { in verifyFactoryResetCalled() argument
46 return sResetCalledCount == numTimes; in verifyFactoryResetCalled()
49 public boolean verifyStartTetheringCalled(int numTimes) { in verifyStartTetheringCalled() argument
50 return mStartTetheringCalledCount == numTimes; in verifyStartTetheringCalled()
53 public boolean verifyStopTetheringCalled(int numTimes) { in verifyStopTetheringCalled() argument
54 return mStopTetheringCalledCount == numTimes; in verifyStopTetheringCalled()
DShadowRecoverySystem.java31 public static boolean verifyWipeEuiccDataCalled(int numTimes) { in verifyWipeEuiccDataCalled() argument
32 return sWipeEuiccDataCalledCount == numTimes; in verifyWipeEuiccDataCalled()
DShadowBluetoothAdapter.java40 public static boolean verifyFactoryResetCalled(int numTimes) { in verifyFactoryResetCalled() argument
41 return sResetCalledCount == numTimes; in verifyFactoryResetCalled()
DShadowNetworkPolicyManager.java40 public static boolean verifyFactoryResetCalled(String subscriber, int numTimes) { in verifyFactoryResetCalled() argument
42 return sResetCalledForSubscriberCount.get(subscriber) == numTimes; in verifyFactoryResetCalled()
DShadowTelephonyManager.java44 public static boolean verifyFactoryResetCalled(int subId, int numTimes) { in verifyFactoryResetCalled() argument
46 return sSubIdsWithResetCalledCount.get(subId) == numTimes; in verifyFactoryResetCalled()
DShadowWifiManager.java158 public static boolean verifyFactoryResetCalled(int numTimes) { in verifyFactoryResetCalled() argument
159 return sResetCalledCount == numTimes; in verifyFactoryResetCalled()
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/finalization/
DFinalizationInsideSuwControllerTest.java415 private void verifyDpcLaunchedForUser(UserHandle userHandle, int numTimes) { in verifyDpcLaunchedForUser() argument
417 verify(mActivity, times(numTimes)).startActivityForResultAsUser( in verifyDpcLaunchedForUser()
429 verify(mProvisioningAnalyticsTracker, times(numTimes)).logDpcSetupStarted( in verifyDpcLaunchedForUser()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBluetoothRouteManagerTest.java229 private void verifyConnectionAttempt(BluetoothDevice device, int numTimes) { in verifyConnectionAttempt() argument
230 verify(mDeviceManager, times(numTimes)).connectAudio(device.getAddress()); in verifyConnectionAttempt()