HomeSort by relevance Sort by last modified time
    Searched refs:TIMEOUT (Results 1 - 25 of 508) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
run.sh 8 TIMEOUT="timeout -k 5 -s XCPU $TIMEOUT_DURATION"
9 $TIMEOUT true > /dev/null 2>&1 ||
10 TIMEOUT=
17 exec $TIMEOUT "$@" < /dev/null
  /external/strace/tests-m32/
run.sh 8 TIMEOUT="timeout -k 5 -s XCPU $TIMEOUT_DURATION"
9 $TIMEOUT true > /dev/null 2>&1 ||
10 TIMEOUT=
17 exec $TIMEOUT "$@" < /dev/null
  /external/strace/tests-mx32/
run.sh 8 TIMEOUT="timeout -k 5 -s XCPU $TIMEOUT_DURATION"
9 $TIMEOUT true > /dev/null 2>&1 ||
10 TIMEOUT=
17 exec $TIMEOUT "$@" < /dev/null
  /external/ltp/testcases/open_posix_testsuite/functional/threads/tools/
watchdogtimer.sh 7 TIMEOUT=600
12 sleep $TIMEOUT
14 echo "Timeout, kill pi test case"
  /external/testng/src/test/java/test/thread/
ThreadPoolSampleBugTest.java 6 private static final long TIMEOUT = 500;
10 Thread.sleep(TIMEOUT);
15 Thread.sleep(TIMEOUT);
18 @Test(timeOut = 10, invocationCount = 1, threadPoolSize = 5)
20 Thread.sleep(TIMEOUT);
23 @Test(timeOut = 10, invocationCount = 2, threadPoolSize = 5)
25 Thread.sleep(TIMEOUT);
  /external/apache-http/src/org/apache/http/conn/params/
ConnManagerPNames.java 49 * Defines the timeout in milliseconds used when retrieving an instance of
56 public static final String TIMEOUT = "http.conn-manager.timeout";
  /external/vogar/src/vogar/
TestProperties.java 42 * Integer timeout in seconds
44 public static final String TIMEOUT = "timeout";
  /platform_testing/tests/functional/applinktests/src/com/android/functional/applinktests/
AppLinkTests.java 47 public final int TIMEOUT = 1000;
76 mDevice.wait(Until.findObject(By.text("AppLinkTestApp")), TIMEOUT).click();
77 mDevice.wait(Until.findObject(By.res("android:id/button_once")), TIMEOUT).click();
78 Thread.sleep(TIMEOUT);
82 mDevice.wait(Until.hasObject(By.text("Open with AppLinkTestApp")), TIMEOUT));
83 mDevice.wait(Until.findObject(By.res("android:id/button_once")), TIMEOUT)
84 .clickAndWait(Until.newWindow(), TIMEOUT);
85 Thread.sleep(TIMEOUT);
91 mDevice.wait(Until.findObject(By.res("android:id/button_always")), TIMEOUT).click();
104 Thread.sleep(TIMEOUT);
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-3200/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/gen-3200/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /packages/apps/Settings/tests/uitests/src/com/android/settings/ui/
DataUsageSettingsTests.java 32 private static final int TIMEOUT = 2000;
59 TIMEOUT));
62 "color_bar")), TIMEOUT));
65 TIMEOUT));
68 TIMEOUT));
75 .findObject(By.text("Network & Internet")), TIMEOUT)
77 Thread.sleep(TIMEOUT * 2);
79 Until.findObject(By.text("Data usage")), TIMEOUT));
81 .findObject(By.text("Data usage")), TIMEOUT)
LocationSettingsTests.java 35 private static final int TIMEOUT = 2000;
66 (By.res(SETTINGS_PACKAGE, "main_content")), TIMEOUT);
70 locationTitle = mDevice.wait(Until.findObject(By.text("Location")), TIMEOUT);
78 Thread.sleep(TIMEOUT);
80 mDevice.wait(Until.findObject(By.text("Location services")), TIMEOUT));
100 Thread.sleep(TIMEOUT);
108 Thread.sleep(TIMEOUT);
116 Thread.sleep(TIMEOUT);
126 Thread.sleep(TIMEOUT);
129 mDevice.wait(Until.findObject(By.text(element)), TIMEOUT));
    [all...]
AppsSettingsTests.java 42 private static final int TIMEOUT = 2000;
73 Thread.sleep(TIMEOUT * 2);
77 Until.findObject(By.text("All apps")), TIMEOUT);
85 mDevice.waitForIdle(TIMEOUT * 2); // give UI time to finish animating
92 Until.findObject(By.text("Calculator")), TIMEOUT);
97 Until.findObject(By.text(setting)), TIMEOUT);
107 Until.findObject(By.text("Calculator")), TIMEOUT);
109 mDevice.waitForIdle(TIMEOUT);
111 Until.findObject(By.res(SETTINGS_PACKAGE, "list")), TIMEOUT);
114 Until.findObject(By.text("DISABLE")), TIMEOUT);
    [all...]
  /packages/apps/Traceur/uitests/src/com/android/settings/ui/
TraceurAppTests.java 41 private static final int TIMEOUT = 2000; // milliseconds
61 mDevice.wait(Until.hasObject(By.pkg(TRACEUR_PACKAGE).depth(0)), TIMEOUT);
76 TIMEOUT));
79 TIMEOUT));
82 TIMEOUT));
85 TIMEOUT));
88 TIMEOUT));
91 TIMEOUT));
94 TIMEOUT));
105 mDevice.wait(Until.findObject(By.text("Record trace")), TIMEOUT);
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
Bots.java 36 private static final int TIMEOUT = 5000;
49 public Bots(UiDevice device, UiAutomation automation, Context context, int timeout) {
50 main = new UiBot(device, context, TIMEOUT);
51 breadcrumb = new BreadBot(device, context, TIMEOUT, main);
52 roots = new SidebarBot(device, context, TIMEOUT);
53 directory = new DirectoryListBot(device, automation, context, TIMEOUT);
54 sortHeader = new SortHeaderBot(device, context, TIMEOUT);
55 keyboard = new KeyboardBot(device, context, TIMEOUT);
56 search = new SearchBot(device, context, TIMEOUT);
57 gesture = new GestureBot(device, automation, context, TIMEOUT);
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-1240/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/gen-1240/
loc_api_clnt.c 9 /* Default timeout can be changed using clnt_control() */
10 static struct timeval TIMEOUT = { 25, 0 };
18 TIMEOUT));
27 TIMEOUT));
36 TIMEOUT));
45 TIMEOUT));
54 TIMEOUT));
63 TIMEOUT));
72 TIMEOUT));
81 TIMEOUT));
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_clnt.c 37 /* Default timeout can be changed using clnt_control() */
38 static struct timeval TIMEOUT = { 25, 0 };
46 TIMEOUT));
55 TIMEOUT));
64 TIMEOUT));
73 TIMEOUT));
82 TIMEOUT));
91 TIMEOUT));
100 TIMEOUT));
109 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_clnt.c 37 /* Default timeout can be changed using clnt_control() */
38 static struct timeval TIMEOUT = { 25, 0 };
46 TIMEOUT));
55 TIMEOUT));
64 TIMEOUT));
73 TIMEOUT));
82 TIMEOUT));
91 TIMEOUT));
100 TIMEOUT));
109 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_clnt.c 37 /* Default timeout can be changed using clnt_control() */
38 static struct timeval TIMEOUT = { 25, 0 };
46 TIMEOUT));
55 TIMEOUT));
64 TIMEOUT));
73 TIMEOUT));
82 TIMEOUT));
91 TIMEOUT));
100 TIMEOUT));
109 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_clnt.c 37 /* Default timeout can be changed using clnt_control() */
38 static struct timeval TIMEOUT = { 25, 0 };
46 TIMEOUT));
55 TIMEOUT));
64 TIMEOUT));
73 TIMEOUT));
82 TIMEOUT));
91 TIMEOUT));
100 TIMEOUT));
109 TIMEOUT));
    [all...]
  /hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_clnt.c 37 /* Default timeout can be changed using clnt_control() */
38 static struct timeval TIMEOUT = { 25, 0 };
46 TIMEOUT));
55 TIMEOUT));
64 TIMEOUT));
73 TIMEOUT));
82 TIMEOUT));
91 TIMEOUT));
100 TIMEOUT));
109 TIMEOUT));
    [all...]
  /platform_testing/libraries/system-helpers/activity-helper/src/android/system/helpers/
ActivityHelper.java 45 public static final int TIMEOUT = 1000;
96 Thread.sleep(TIMEOUT);
109 TIMEOUT * 5) && --retry > 0) {
111 Thread.sleep(TIMEOUT);
114 if (mDevice.wait(Until.hasObject(By.text("No recent items")), TIMEOUT * 5)) {
118 By.res(SYSTEMUI_PACKAGE, "recents_view")), TIMEOUT * 5));
122 By.res(SYSTEMUI_PACKAGE, "task_view_thumbnail")), TIMEOUT * 5).size();
126 Thread.sleep(TIMEOUT);
128 Thread.sleep(TIMEOUT);
140 TIMEOUT * 5) && --retry > 0)
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 6 7 8 91011>>