Home | History | Annotate | Download | only in cts

Lines Matching refs:Timeout

25      * Timeout until framework binds / unbinds from service.
27 static final Timeout CONNECTION_TIMEOUT = new Timeout("CONNECTION_TIMEOUT", 5000, 2F, 10000);
30 * Timeout until framework unbinds from a service.
34 static final Timeout IDLE_UNBIND_TIMEOUT = new Timeout("IDLE_UNBIND_TIMEOUT", 10000, 2F, 10000);
37 * Timeout to get the expected number of fill events.
39 static final Timeout FILL_EVENTS_TIMEOUT = new Timeout("FILL_EVENTS_TIMEOUT", 5000, 2F, 10000);
42 * Timeout for expected autofill requests.
44 static final Timeout FILL_TIMEOUT = new Timeout("FILL_TIMEOUT", 5000, 2F, 10000);
47 * Timeout for expected save requests.
49 static final Timeout SAVE_TIMEOUT = new Timeout("SAVE_TIMEOUT", 5000, 2F, 10000);
52 * Timeout used when save is not expected to be shown - test will sleep for that amount of time
58 * Timeout for UI operations. Typically used by {@link UiBot}.
60 static final Timeout UI_TIMEOUT = new Timeout("UI_TIMEOUT", 5000, 2F, 10000);
63 * Timeout for webview operations. Typically used by {@link UiBot}.
65 static final Timeout WEBVIEW_TIMEOUT = new Timeout("WEBVIEW_TIMEOUT", 8000, 2F, 16000);
68 * Timeout for showing the autofill dataset picker UI.
75 static final Timeout UI_DATASET_PICKER_TIMEOUT =
76 new Timeout("UI_DATASET_PICKER_TIMEOUT", 5000, 2F, 10000);
79 * Timeout used when the dataset picker is not expected to be shown - test will sleep for that
85 * Timeout (in milliseconds) for an activity to be brought out to top.
87 static final Timeout ACTIVITY_RESURRECTION =
88 new Timeout("ACTIVITY_RESURRECTION", 6000, 3F, 20000);
91 * Timeout for changing the screen orientation.
93 static final Timeout UI_SCREEN_ORIENTATION_TIMEOUT =
94 new Timeout("UI_SCREEN_ORIENTATION_TIMEOUT", 5000, 2F, 10000);