Searched refs:timeout_secs (Results 1 - 9 of 9) sorted by relevance

/external/chromium/webkit/glue/
H A Dresource_fetcher.cc128 int timeout_secs, Callback* callback)
130 timeout_timer_.Start(TimeDelta::FromSeconds(timeout_secs), this,
126 ResourceFetcherWithTimeout( const GURL& url, WebFrame* frame, WebURLRequest::TargetType target_type, int timeout_secs, Callback* callback) argument
H A Dresource_fetcher.h114 int timeout_secs,
/external/chromium_org/content/renderer/fetchers/
H A Dresource_fetcher.cc129 int timeout_secs, const Callback& callback)
131 timeout_timer_.Start(FROM_HERE, TimeDelta::FromSeconds(timeout_secs), this,
127 ResourceFetcherWithTimeout( const GURL& url, WebFrame* frame, WebURLRequest::TargetType target_type, int timeout_secs, const Callback& callback) argument
H A Dresource_fetcher.h119 int timeout_secs,
/external/chromium_org/tools/android/forwarder2/
H A Dsocket.h120 bool WaitForEvent(EventType type, int timeout_secs);
H A Dsocket.cc365 bool Socket::WaitForEvent(EventType type, int timeout_secs) { argument
380 if (timeout_secs > 0) {
381 tv.tv_sec = timeout_secs;
/external/openssh/
H A Dclientloop.c565 int timeout_secs; local
612 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */
614 timeout_secs = options.server_alive_interval;
617 timeout_secs = MIN(timeout_secs,
619 if (timeout_secs < 0)
620 timeout_secs = 0;
622 if (timeout_secs == INT_MAX)
625 tv.tv_sec = timeout_secs;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dserver_process.py329 def stop(self, timeout_secs=3.0):
338 if timeout_secs:
339 deadline = now + timeout_secs
H A Dandroid.py874 def _loop_with_timeout(condition, timeout_secs):
875 deadline = time.time() + timeout_secs

Completed in 177 milliseconds