HomeSort by relevance Sort by last modified time
    Searched full:timeout (Results 301 - 325 of 2443) sorted by null

<<11121314151617181920>>

  /external/chromium/third_party/libjingle/source/talk/base/
asynchttprequest.h 73 int timeout() { return timeout_; } function in class:talk_base::AsyncHttpRequest
74 void set_timeout(int timeout) { timeout_ = timeout; }
httprequest.h 76 int timeout() { return timeout_; } function in class:talk_base::HttpRequest
77 void set_timeout(int timeout) { timeout_ = timeout; }
  /external/qemu/distrib/sdl-1.2.12/src/thread/epoc/
SDL_syssem.cpp 121 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
128 if ( timeout == SDL_MUTEX_MAXWAIT )
137 TInfo* info = new (ELeave)TInfo(timeout, sem->handle);
  /external/qemu/distrib/sdl-1.2.12/src/thread/win32/
SDL_syssem.c 87 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
97 if ( timeout == SDL_MUTEX_MAXWAIT ) {
100 dwMilliseconds = (DWORD)timeout;
  /external/webkit/Tools/MiniBrowser/qt/
UrlLoader.cpp 42 connect(&m_checkIfFinishedTimer, SIGNAL(timeout()), this, SLOT(checkIfFinished()));
51 connect(&m_timeoutTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
57 connect(&m_extraTimeTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
  /external/webkit/Tools/QtTestBrowser/
urlloader.cpp 43 connect(&m_checkIfFinishedTimer, SIGNAL(timeout()), this, SLOT(checkIfFinished()));
52 connect(&m_timeoutTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
58 connect(&m_extraTimeTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
  /frameworks/base/core/java/android/net/http/
IdleCache.java 43 /* six second timeout for connections */
44 private final static int TIMEOUT = 6 * 1000;
82 entry.mTimeout = time + TIMEOUT;
  /frameworks/base/include/private/media/
AudioTrackShared.h 29 // Maximum cumulated timeout milliseconds before restarting audioflinger thread
30 #define MAX_STARTUP_TIMEOUT_MS 3000 // Longer timeout period at startup to cope with A2DP init time
85 uint16_t bufferTimeoutMs; // Maximum cumulated timeout before restarting audioflinger
  /frameworks/base/services/java/com/android/server/am/
AppErrorDialog.java 39 // 5-minute timeout, then we automatically dismiss the crash dialog
81 // After the timeout, pretend the user clicked the quit button
96 // If this is a timeout we won't be automatically closed, so go
StrictModeViolationDialog.java 38 // 1-minute timeout, then we automatically dismiss the violation
78 // After the timeout, pretend the user clicked the quit button
93 // If this is a timeout we won't be automatically closed, so go
  /libcore/luni/src/main/java/java/util/concurrent/
CompletionService.java 87 * @param timeout how long to wait before giving up, in units of
90 * <tt>timeout</tt> parameter
96 Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException;
  /packages/apps/Email/tests/src/com/android/email/
TestUtils.java 118 final long timeout = System.currentTimeMillis() + timeoutSeconds * 1000; local
119 while (System.currentTimeMillis() < timeout) {
128 fail(message + ": Timeout");
  /packages/apps/Settings/src/com/android/settings/
DreamSettings.java 89 long timeout = Long.valueOf(values[i].toString()); local
90 if (currentTimeout >= timeout) {
122 Log.e(TAG, "could not persist dream timeout setting", e);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/netax25/
ax25.h 155 #define AX25_VALUES_T1 8 /* Default T1 timeout value */
156 #define AX25_VALUES_T2 9 /* Default T2 timeout value */
157 #define AX25_VALUES_T3 10 /* Default T3 timeout value */
  /development/tools/emulator/system/camera/
EmulatedCameraDevice.cpp 293 EmulatedCameraDevice::WorkerThread::Select(int fd, int timeout)
305 if (timeout) {
306 tv.tv_sec = timeout / 1000000;
307 tv.tv_usec = timeout % 1000000;
316 /* Timeout. */
317 return TIMEOUT;
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCStatement.java 64 throw new SQLException("can't set a query timeout on a closed statement");
66 throw new SQLException("can't set a query timeout of less than 0 seconds");
68 // An argument of 0 seconds should set an unlimited timeout. However, since this was not
70 conn.timeout = 5000;
72 conn.timeout = seconds * 1000;
78 return conn.timeout / 1000; // android-changed: should return seconds
  /external/valgrind/main/auxprogs/
posixtestsuite-1.5.1-diff.txt 59 # Added tests timeout from Sebastien Decugis (http://nptl.bullopensource.org)
70 - $(TIMEOUT) $< > $$COMPLOG 2>&1; \
72 + $(TIMEOUT) $(GRIND) $< > $$COMPLOG 2>&1; \
77 @echo Building timeout helper files; \
86 - $(TIMEOUT) $< > $$COMPLOG 2>&1; \
87 + $(TIMEOUT) $(GRIND) $< > $$COMPLOG 2>&1; \
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShellWin.cpp 54 // Thread main to run for the thread which just tests for timeout.
57 // If we're debugging a layout test, don't timeout.
64 DWORD timeout = static_cast<DWORD>(shell->layoutTestTimeoutForWatchDog()); local
65 DWORD rv = WaitForSingleObject(shell->finishedEvent(), timeout);
69 // this as a timeout.
89 // timeout, it can't do anything except terminate the test
  /frameworks/base/voip/java/android/net/sip/
SipAudioCall.java 608 * timed out if the call is not established within {@code timeout} seconds
614 * @param timeout the timeout value in seconds. Default value (defined by
615 * SIP protocol) is used if {@code timeout} is zero or negative.
622 int timeout) throws SipException {
634 timeout);
658 * within {@code timeout} seconds and
662 * @param timeout the timeout value in seconds. Default value (defined by
663 * SIP protocol) is used if {@code timeout} is zero or negative
    [all...]
  /libcore/luni/src/main/java/java/net/
URLConnection.java 52 * connect timeout} and a {@link #setReadTimeout read timeout}. By default,
    [all...]
  /bionic/libc/kernel/common/linux/
usbdevice_fs.h 25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
  /cts/tests/appsecurity-tests/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
ReceiveUriService.java 103 throw new RuntimeException("Timeout");
124 throw new RuntimeException("Timeout");
  /cts/tests/src/android/app/cts/
IntentServiceStub.java 52 public static void waitToFinish(long timeout) throws Throwable {
53 new DelayedCheck(timeout) {
  /cts/tests/src/android/view/animation/cts/
AnimationTestUtils.java 29 /** timeout delta when wait in case the system is sluggish */
40 * Assert run an animation successfully. Timeout is duration of animation.
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerNotificationTest.java 98 public void waitForCalls(int expectedCalls, long timeout) throws InterruptedException {
102 mLock.wait(timeout);

Completed in 865 milliseconds

<<11121314151617181920>>