Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/anomaly-tester/src/com/android/settings/anomaly/tests/
DWakelockAnomalyTest.java47 private static final long TIME_OUT = 3000; field in WakelockAnomalyTest
79 TestUtils.wait(mDevice, durationMs - TIME_OUT); in testWakelockAnomaly_longTimeWhileRunning_report()
86 TIME_OUT)).isNotNull(); in testWakelockAnomaly_longTimeWhileRunning_report()
107 TIME_OUT)).isNull(); in testWakelockAnomaly_shortTime_notReport()
123 TestUtils.wait(mDevice, durationMs + TIME_OUT); in testWakelockAnomaly_longTimeWhileNotRunning_notReport()
130 TIME_OUT)).isNull(); in testWakelockAnomaly_longTimeWhileNotRunning_notReport()
DBluetoothAnomalyTest.java47 private static final long TIME_OUT = 3000; field in BluetoothAnomalyTest
85 TIME_OUT)).isNotNull(); in testBluetoothAnomaly_longScanningTime_reportAnomaly()
106 TIME_OUT)).isNull(); in testBluetoothAnomaly_shortScanningTime_notReport()
DTestUtils.java30 private static final long TIME_OUT = 3000; field in TestUtils
61 uiDevice.wait(Until.hasObject(By.pkg(PACKAGE_NAME).depth(0)), TIME_OUT); in startAnomalyApp()
/packages/apps/Settings/src/com/android/settings/wifi/
DNetworkRequestErrorDialogFragment.java38 public enum ERROR_DIALOG_TYPE {TIME_OUT, ABORT} enumConstant
58 ERROR_DIALOG_TYPE msgType = ERROR_DIALOG_TYPE.TIME_OUT; in onCreateDialog()
64 if (msgType == ERROR_DIALOG_TYPE.TIME_OUT) { in onCreateDialog()
DNetworkRequestDialogFragment.java324 stopScanningAndPopErrorDialog(ERROR_DIALOG_TYPE.TIME_OUT);
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wifi/
DNetworkRequestErrorDialogFragment.java38 public enum ERROR_DIALOG_TYPE {TIME_OUT, ABORT} enumConstant
58 ERROR_DIALOG_TYPE msgType = ERROR_DIALOG_TYPE.TIME_OUT; in onCreateDialog()
64 if (msgType == ERROR_DIALOG_TYPE.TIME_OUT) { in onCreateDialog()
DNetworkRequestDialogFragment.java324 stopScanningAndPopErrorDialog(ERROR_DIALOG_TYPE.TIME_OUT);
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/
DNetworkRequestDialogFragmentTest.java132 assertThat(fakeFragment.errorType).isEqualTo(ERROR_DIALOG_TYPE.TIME_OUT); in onResumeAndWaitTimeout_shouldCallTimeoutDialog()