OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeoutSeconds
(Results
1 - 10
of
10
) sorted by null
/external/guava/guava-testlib/src/com/google/common/testing/
GcFinalization.java
94
private static long
timeoutSeconds
() {
119
final long
timeoutSeconds
=
timeoutSeconds
();
120
final long deadline = System.nanoTime() + SECONDS.toNanos(
timeoutSeconds
);
141
String.format("Future not done within %d second timeout",
timeoutSeconds
));
154
final long
timeoutSeconds
=
timeoutSeconds
();
155
final long deadline = System.nanoTime() + SECONDS.toNanos(
timeoutSeconds
);
171
String.format("Latch failed to count down within %d second timeout",
timeoutSeconds
));
207
final long
timeoutSeconds
= timeoutSeconds()
[
all
...]
/external/webkit/Tools/QtTestBrowser/
urlloader.h
42
UrlLoader(QWebFrame* frame, const QString& inputFileName, int
timeoutSeconds
, int extraTimeSeconds);
urlloader.cpp
35
UrlLoader::UrlLoader(QWebFrame* frame, const QString& inputFileName, int
timeoutSeconds
, int extraTimeSeconds)
48
if (
timeoutSeconds
) {
49
m_timeoutTimer.setInterval(
timeoutSeconds
* 1000);
/packages/apps/Email/tests/src/com/android/email/
TestUtils.java
109
public static void waitUntil(Condition condition, int
timeoutSeconds
) {
110
waitUntil("", condition,
timeoutSeconds
);
116
public static void waitUntil(String message, Condition condition, int
timeoutSeconds
) {
118
final long timeout = System.currentTimeMillis() +
timeoutSeconds
* 1000;
/external/webkit/Tools/MiniBrowser/qt/
UrlLoader.cpp
34
UrlLoader::UrlLoader(BrowserWindow* browserWindow, const QString& inputFileName, int
timeoutSeconds
, int extraTimeSeconds)
47
if (
timeoutSeconds
) {
48
m_timeoutTimer.setInterval(
timeoutSeconds
* 1000);
/external/webkit/Tools/DumpRenderTree/chromium/
TestShellMac.mm
111
NSTimeInterval
timeoutSeconds
= layoutTestTimeoutForWatchDog() / 1000;
113
initWithTimeout:
timeoutSeconds
] autorelease];
/cts/libs/vogar-expect/src/vogar/commands/
Command.java
161
* @param
timeoutSeconds
how long to wait, or 0 to wait indefinitely
164
public List<String> executeWithTimeout(int
timeoutSeconds
)
166
if (
timeoutSeconds
== 0) {
171
return executeLater().get(
timeoutSeconds
, TimeUnit.SECONDS);
/external/webkit/Tools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp
164
static const int
timeoutSeconds
= 10;
/external/webkit/Tools/Scripts/
old-run-webkit-tests
170
my $
timeoutSeconds
= 35;
318
--timeout t Sets the number of seconds before a test times out (default: $
timeoutSeconds
)
363
'timeout=i' => \$
timeoutSeconds
,
390
$
timeoutSeconds
*= 10 if $guardMalloc;
[
all
...]
/external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp
380
static const int
timeoutSeconds
= 30;
384
waitToDumpWatchdog = g_timeout_add_seconds(
timeoutSeconds
, waitToDumpWatchdogFired, 0);
[
all
...]
Completed in 1867 milliseconds