Home
last modified time | relevance | path

Searched refs:launchDialog (Results 1 – 25 of 25) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DInterfaceConflictManagerTest.java161 verify(mDialogHandle, never()).launchDialog(); in testUserApprovalDisabled()
184 verify(mDialogHandle, never()).launchDialog(); in testUserApprovalDisabledForSpecificPackage()
202 verify(mDialogHandle, never()).launchDialog(); in testBypassDialog()
227 verify(mDialogHandle, never()).launchDialog(); in testUserApprovalNeededButCommandCanProceed()
240 verify(mDialogHandle, never()).launchDialog(); in testUserApprovalNeededButCommandCanProceed()
266 verify(mDialogHandle).launchDialog(); in testUserApproved()
280 verify(mDialogHandle, times(1)).launchDialog(); in testUserApproved()
306 verify(mDialogHandle).launchDialog(); in testUserRejected()
320 verify(mDialogHandle, times(1)).launchDialog(); in testUserRejected()
345 verify(mDialogHandle, times(1)).launchDialog(); in testUserApprovedWithDeferredMessages()
[all …]
DConnectionFailureNotifierTest.java148 verify(mDialogHandle).launchDialog(); in testConnectionFailureSendRandomizationSettingsNotification()
191 verify(mDialogHandle, never()).launchDialog(); in testWifiConfigurationMismatch()
DWifiConnectivityManagerTest.java4134 verify(mDialogHandle, never()).launchDialog(); in testSufficiencyCheckDisabledDoesNotShowNetworkSwitchDialog()
4165 verify(mDialogHandle).launchDialog(); in testUserApprovedNetworkSwitch()
4203 verify(mDialogHandle).launchDialog(); in testUserRejectedNetworkSwitch()
4219 verify(mDialogHandle, times(1)).launchDialog(); in testUserRejectedNetworkSwitch()
4233 verify(mDialogHandle, times(2)).launchDialog(); in testUserRejectedNetworkSwitch()
4264 verify(mDialogHandle).launchDialog(); in testNetworkSwitchDialogUpdated()
4273 verify(mDialogHandle).launchDialog(); in testNetworkSwitchDialogUpdated()
4284 verify(mDialogHandle, times(2)).launchDialog(); in testNetworkSwitchDialogUpdated()
4320 verify(mDialogHandle).launchDialog(); in testNetworkSwitchDialogDisabled()
4334 verify(mDialogHandle).launchDialog(); in testNetworkSwitchDialogDisabled()
[all …]
DInsecureEapNetworkHandlerTest.java1185 verify(mTofuAlertDialog).launchDialog(); in verifyTrustOnFirstUseFlow()
DWifiCarrierInfoManagerTest.java1919 verify(mDialogHandle, never()).launchDialog(); in testSendImsiProtectionExemptionNotificationWithUserDisallowed()
2233 verify(mDialogHandle, atLeastOnce()).launchDialog(); in validateUserApprovalDialog()
DWifiDialogManagerTest.java125 dialogHandle.launchDialog(timeoutMs); in launchDialogSynchronous()
DWifiServiceImplTest.java1237 verify(dialogHandle).launchDialog(); in testSetWifiEnabledDialogForThirdPartyAppsTargetingBelowQSdk()
1276 verify(dialogHandle).launchDialog(); in testSetWifiEnabledDialogForThirdPartyAppsTargetingBelowQSdk()
1299 verify(dialogHandle).launchDialog(); in testSetWifiEnabledDialogForThirdPartyAppsTargetingBelowQSdk()
1313 verify(dialogHandle, never()).launchDialog(); in testSetWifiEnabledDialogForThirdPartyAppsTargetingBelowQSdk()
1333 verify(dialogHandle).launchDialog(); in testSetWifiEnabledDialogForThirdPartyAppsTargetingBelowQSdk()
1352 verify(dialogHandle, never()).launchDialog(); in testSetWifiEnabledDialogForThirdPartyAppsTargetingBelowQSdk()
DClientModeImplTest.java10457 verify(mockDialogHandle).launchDialog(); in verifyConnectWithDisabledType()
10460 verify(mockDialogHandle, never()).launchDialog(); in verifyConnectWithDisabledType()
DWifiNetworkSuggestionsManagerTest.java3314 verify(mDialogHandle, atLeastOnce()).launchDialog(); in validateUserApprovalDialog()
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/permissions/additionalaccess/
DExerciseRoutesPermissionDialogFragmentTest.kt44 import com.android.healthconnect.controller.tests.utils.launchDialog
88 launchDialog<ExerciseRoutesPermissionDialogFragment>( in showDialog_permissionStateGranted_preselectCorrectView()
102 launchDialog<ExerciseRoutesPermissionDialogFragment>( in showDialog_permissionStateDeclared_preselectCorrectView()
114 launchDialog<ExerciseRoutesPermissionDialogFragment>( in showDialog_permissionStateRevoked_preselectCorrectView()
122 launchDialog<ExerciseRoutesPermissionDialogFragment>( in onOptionSelected_withAllowAll_callsViewModelWithGranted()
133 launchDialog<ExerciseRoutesPermissionDialogFragment>( in onOptionSelected_withAskEveryTime_callsViewModelWithDeclared()
147 launchDialog<ExerciseRoutesPermissionDialogFragment>( in onOptionSelected_withRevoke_callsViewModelWithRevoked()
DEnableExercisePermissionDialogTest.kt33 import com.android.healthconnect.controller.tests.utils.launchDialog
63 launchDialog<EnableExercisePermissionDialog>(bundle, TAG) in onClick_Yes_callsDisableExercisePermission()
75 launchDialog<EnableExercisePermissionDialog>(bundle, TAG) in onClick_No_callsHideExerciseRoutePermissionDialog()
86 launchDialog<EnableExercisePermissionDialog>(bundle, TAG) in onDismiss_callsHideExerciseRoutePermissionDialog()
DDisableExerciseRoutePermissionDialogTest.kt33 import com.android.healthconnect.controller.tests.utils.launchDialog
63 launchDialog<DisableExerciseRoutePermissionDialog>(bundle, TAG) in onClick_Yes_callsDisableExercisePermission()
75 launchDialog<DisableExerciseRoutePermissionDialog>(bundle, TAG) in onClick_No_callsHideExerciseRoutePermissionDialog()
86 launchDialog<DisableExerciseRoutePermissionDialog>(bundle, TAG) in onDismiss_callsHideExerciseRoutePermissionDialog()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiDialogManager.java233 public void launchDialog() { in launchDialog() method in WifiDialogManager.DialogHandle
235 mWifiThreadRunner.post(() -> mInternalHandle.launchDialog(0), in launchDialog()
238 mWifiThreadRunner.post(() -> mLegacyHandle.launchDialog(0), in launchDialog()
249 public void launchDialog(long timeoutMs) { in launchDialog() method in WifiDialogManager.DialogHandle
251 mWifiThreadRunner.post(() -> mInternalHandle.launchDialog(timeoutMs), in launchDialog()
254 mWifiThreadRunner.post(() -> mLegacyHandle.launchDialog(timeoutMs), in launchDialog()
296 void launchDialog(long timeoutMs) { in launchDialog() method in WifiDialogManager.DialogHandleInternal
528 void launchDialog(long timeoutMs) { in launchDialog() method in WifiDialogManager.LegacySimpleDialogHandle
635 launchDialog(mTimeoutMs); in changeWindowType()
DConnectionFailureNotifier.java172 new WifiThreadRunner(mHandler)).launchDialog(); in showRandomizationSettingsDialog()
DInsecureEapNetworkHandler.java458 mTofuAlertDialog.launchDialog(); in createCertificateErrorNotification()
787 mTofuAlertDialog.launchDialog(); in askForUserApprovalForCaCertificate()
DWifiShellCommand.java1547 simpleDialogHandle.launchDialog(simpleTimeoutMs); in onCommand()
1558 simpleDialogHandle.launchDialog(); in onCommand()
1595 displayId).launchDialog(); in onCommand()
1660 p2pInvitationReceivedDialogHandle.launchDialog(p2pInvRecTimeout); in onCommand()
1671 p2pInvitationReceivedDialogHandle.launchDialog(); in onCommand()
DInterfaceConflictManager.java388 mCurrentDialogHandle.launchDialog(); in manageInterfaceConflictForStateMachine()
DWifiCarrierInfoManager.java2052 new WifiThreadRunner(mHandler)).launchDialog(); in sendImsiPrivacyConfirmationDialog()
DWifiConnectivityManager.java1689 mNetworkSwitchDialog.launchDialog(); in connectToNetworkForPrimaryCmmUsingMbbIfAvailable()
DWifiNetworkSuggestionsManager.java1714 new WifiThreadRunner(mHandler)).launchDialog(); in sendUserApprovalDialog()
DWifiServiceImpl.java1437 dialogHandle.launchDialog(); in showWifiEnableRequestDialog()
DClientModeImpl.java1510 }, mWifiThreadRunner).launchDialog(); in connectToUserSelectNetwork()
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/utils/
DHiltExt.kt56 inline fun <reified T : DialogFragment> launchDialog( in launchDialog() method
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pServiceImplTest.java3659 verify(dialogHandle).launchDialog(); in testAcceptFrequencyConflictDialogSendsDisconnectWifiRequest()
3728 verify(dialogHandle).launchDialog(); in testDeclineFrequencyConflictDialogEndsP2pConnectionEvent()
3771 verify(dialogHandle).launchDialog(); in testFrequencyConflictDialogDismissedOnStateExit()
6338 verify(mDialogHandle).launchDialog(); in testProvisionDiscoveryShowPinEventLaunchesInvitationSentDialog()
6368 verify(mDialogHandle).launchDialog(); in testProvisionDiscoveryShowPinEventInactiveStateLaunchesInvitationReceivedDialog()
6892 verify(mDialogHandle).launchDialog(P2P_INVITATION_RECEIVED_TIMEOUT_MS); in testInvitationReceivedDialogTrigger()
6920 verify(mDialogHandle).launchDialog(P2P_INVITATION_RECEIVED_TIMEOUT_MS); in testInvitationReceivedDialogTriggerWithDisplayId()
6948 verify(mDialogHandle).launchDialog(P2P_INVITATION_RECEIVED_TIMEOUT_MS); in testInvitationReceivedDialogTriggerWithDisplayIdDeleted()
7705 verify(mDialogHandle).launchDialog(P2P_INVITATION_RECEIVED_TIMEOUT_MS); in testSurplusProvisionDiscoveryRequestsBehavior()
7734 verify(mDialogHandle).launchDialog(P2P_INVITATION_RECEIVED_TIMEOUT_MS); in testSurplusProvisionDiscoveryRequestsBehavior()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java4905 dialog.launchDialog(); in showFrequencyConflictDialog()
6003 dialogHandle.launchDialog(); in showInvitationSentDialog()
6081 new WifiThreadRunner(getHandler())).launchDialog(); in showP2pProvDiscShowPinRequestDialog()
6237 mInvitationDialogHandle.launchDialog(mContext.getResources().getInteger( in showInvitationReceivedDialog()