/external/ppp/pppd/plugins/radius/ |
buildreq.c | 64 int timeout, int retries) 69 data->timeout = timeout; 195 int timeout = rc_conf_int("radius_timeout"); local 224 authserver->port[i], timeout, retries); 253 int timeout = rc_conf_int("radius_timeout"); local 268 authserver->port[i], timeout, retries); 299 int timeout = rc_conf_int("radius_timeout"); local 337 acctserver->port[i], timeout, retries); 382 int timeout = rc_conf_int("radius_timeout") local 420 int timeout = rc_conf_int("radius_timeout"); local [all...] |
/external/chromium_org/third_party/pexpect/ |
pxssh.py | 90 def __init__ (self, timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=None): 92 spawn.__init__(self, None, timeout=timeout, maxread=maxread, searchwindowsize=searchwindowsize, logfile=logfile, cwd=cwd, env=env) 161 self.read_nonblocking(size=10000,timeout=1) 162 except TIMEOUT: 167 x = self.read_nonblocking(size=1000,timeout=1) 171 a = self.read_nonblocking(size=1000,timeout=1) 175 b = self.read_nonblocking(size=1000,timeout=1) 198 a timeout when looking for the prompt we assume that the original 227 i = self.expect(["(?i)are you sure you want to continue connecting", original_prompt, "(?i)(?:password)|(?:passphrase for key)", "(?i)permission denied", "(?i)terminal type", TIMEOUT, "(?i)connection closed by remote host"], timeout=login_timeout [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
task_unittest.cc | 58 // this is a generic timeout task which, when it signals timeout, will 136 // this unit test is primarily concerned (for now) with the timeout 139 // * Create a bunch of tasks, some "stuck" (ie., guaranteed to timeout) 141 // * Set the timeout on the "stuck" tasks to some number of seconds between 162 LOG(LS_INFO) << "Task " << stuck_[i].xlat_ << " created with timeout " 195 std::cout << "Stuck task #" << i << " timeout is " << 210 // give all the stuck tasks time to timeout 288 std::cout << "Stuck task #" << i << " timeout is at " 308 TEST(start_task_test, Timeout) { [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ConnectReqTestCase.java | 95 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 100 WifiP2pDevice dev = mReceiverTest.waitDeviceFound(mTargetAddress, TIMEOUT); 129 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 147 if (mReceiverTest.waitPeerConnected(mTargetAddress, TIMEOUT) != true) { 156 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) { 166 p2pInfo = mReceiverTest.waitDisconnectionNotice(TIMEOUT); 174 if (mReceiverTest.waitPeerDisconnected(mTargetAddress, TIMEOUT) != true) {
|
/external/chromium_org/chrome/test/base/ |
tracing.cc | 54 bool WaitForWatchEvent(base::TimeDelta timeout) { 59 if (timeout != base::TimeDelta()) { 60 timer_.Start(FROM_HERE, timeout, this, 61 &InProcessTraceController::Timeout); 139 void Timeout() { 171 bool WaitForWatchEvent(base::TimeDelta timeout) { 172 return InProcessTraceController::GetInstance()->WaitForWatchEvent(timeout);
|
uma_histogram_helper.cc | 24 // responding, which is something we should not ignore. The timeout is 25 // set to be longer than the normal browser test timeout so that it will 26 // be prempted by the normal timeout.
|
/external/chromium_org/content/browser/renderer_host/media/ |
audio_sync_reader.cc | 128 base::TimeDelta timeout = maximum_wait_time_; local 130 const base::TimeTicks finish_time = start_time + timeout; 147 while (timeout.InMicroseconds() > 0) { 149 &renderer_buffer_index, sizeof(renderer_buffer_index), timeout); 157 // Reduce the timeout value as receives succeed, but aren't the right index. 158 timeout = finish_time - base::TimeTicks::Now(); 161 // Receive timed out or another error occurred. Receive can timeout if the
|
audio_sync_reader.h | 49 // Blocks until data is ready for reading or a timeout expires. Returns false 50 // if an error or timeout occurs. 88 // used to block with timeout for audio data.
|
/external/chromium_org/v8/tools/testrunner/local/ |
verbose.py | 38 * %(timeout)4d tests are expected to timeout sometimes 47 skipped = timeout = nocrash = passes = fail_ok = fail = 0 56 if statusfile.TIMEOUT in o: timeout += 1 64 "timeout": timeout,
|
/external/droiddriver/src/com/google/android/droiddriver/ |
DroidDriver.java | 48 * using a smaller timeout than the default timeout. It's not worth it -- on 57 * method will poll until a match is found, or the default timeout is reached. 80 * default timeout is reached. 84 * default timeout 90 * the default timeout is reached. 94 * timeout
|
/external/kernel-headers/original/linux/ |
watchdog.h | 45 #define WDIOF_SETTIMEOUT 0x0080 /* Set timeout (in seconds) */ 68 * @set_timeout:The routine for setting the watchdog devices timeout value. 95 * @timeout: The watchdog devices timeout value. 96 * @min_timeout:The watchdog devices minimum timeout value. 97 * @max_timeout:The watchdog devices maximum timeout value. 111 unsigned int timeout; member in struct:watchdog_device
|
/external/libppp/src/ |
datalink.h | 79 int next_timeout; /* Redial next timeout value */ 80 int inc; /* Increment timeout by `inc' each time read */ 82 int timeout; /* Redial timeout value (end of phone list) */ member in struct:datalink::__anon21035::__anon21038 86 int timeout; /* Timeout before reconnect on carrier loss */ member in struct:datalink::__anon21035::__anon21039 104 int incs; /* # times our timeout has been incremented */
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/private/ |
pprio.h | 171 PRNetAddr **raddr, void *buf, PRInt32 amount, PRIntervalTime timeout); 179 PRTransmitFileFlags flags, PRIntervalTime timeout); 200 ** interface to AcceptRead, there is no way for us to timeout the Accept; 201 ** this is because when we timeout the Read, we can close the newly 202 ** socket and continue; but when we timeout the accept itself, there is no 203 ** new socket to timeout. So instead, this version of the function is 204 ** provided. After the initial timeout period elapses on the accept() 206 ** continue the accept. If the timeout occurs on the read, it will 228 PRIntervalTime timeout);
|
/external/chromium_org/tools/site_compare/scrapers/firefox/ |
firefox2.py | 76 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs): 84 timeout: amount of time to wait for page to load 122 load_time = windowing.WaitForThrobber(wnd, (10, 96, 26, 112), timeout) 149 return "timeout" 152 def Time(urls, size, timeout, **kwargs): 158 timeout: amount of time to wait for page to load 162 A list of tuples (url, time). "time" can be "crashed" or "timeout" 198 load_time = windowing.WaitForThrobber(wnd, (10, 96, 26, 112), timeout) 202 load_time = "timeout"
|
/system/core/init/ |
bootchart.c | 303 int timeout = 0, count = 0; local 308 timeout = atoi(buff); 311 /* when running with emulator, androidboot.bootchart=<timeout> 313 * timeout. this is useful when using -wipe-data since the /data 323 timeout = atoi(s); 326 if (timeout == 0) 329 if (timeout > BOOTCHART_MAX_TIME_SEC) 330 timeout = BOOTCHART_MAX_TIME_SEC; 332 count = (timeout*1000 + BOOTCHART_POLLING_MS-1)/BOOTCHART_POLLING_MS;
|
/bootable/recovery/minui/ |
minui.h | 61 /* timeout has the same semantics as for poll 64 * > 0 : block for 'timeout' milliseconds 66 int ev_wait(int timeout);
|
/cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
AccessibilityActivityTestCase.java | 32 * Timeout required for pending Binder calls or event processing to 38 * The timeout since the last accessibility event to consider the device idle. 93 // of each type within a timeout. Hence, sometimes the window
|
/external/chromium/base/synchronization/ |
waitable_event_win.cc | 62 double timeout = ceil(max_time.InMillisecondsF()); local 63 DWORD result = WaitForSingleObject(handle_, static_cast<DWORD>(timeout)); 90 INFINITE); // no timeout
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/ |
prettyload.js | 60 function timeout() { 83 } else { timeout(); } 85 } else { timeout(); }
|
/external/chromium_org/base/synchronization/ |
waitable_event_win.cc | 64 double timeout = ceil(max_time.InMillisecondsF()); local 65 DWORD result = WaitForSingleObject(handle_, static_cast<DWORD>(timeout)); 93 INFINITE); // no timeout
|
/external/chromium_org/chrome/browser/extensions/api/diagnostics/ |
diagnostics_api_chromeos.cc | 22 const char kTimeout[] = "timeout"; 79 if (parameters_->options.timeout) 80 config[kTimeout] = base::IntToString(*parameters_->options.timeout);
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
stub_web_view.h | 37 const base::TimeDelta& timeout, 43 const base::TimeDelta& timeout, 58 const base::TimeDelta& timeout,
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
DOMTimer.h | 44 static int install(ExecutionContext*, PassOwnPtr<ScheduledAction>, int timeout, bool singleShot); 63 static PassOwnPtr<DOMTimer> create(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot, int timeoutID) 65 return adoptPtr(new DOMTimer(context, action, timeout, singleShot, timeoutID));
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
seek.py | 16 - wait_timeout: Timeout to wait for seeked event. Only valid with 40 timeout = self.wait_timeout if hasattr(self, 'wait_timeout') else 60 43 self.WaitForEvent(tab, selector, 'seeked', timeout)
|
/external/chromium_org/v8/tools/blink_tests/ |
TestExpectations | 20 crbug.com/108833 [ Win Debug ] plugins/geturlnotify-during-document-teardown.html [ Crash Failure Timeout ] 21 webkit.org/b/48655 [ Win ] plugins/js-from-destroy.html [ Crash Timeout ] 22 crbug.com/178745 [ Win Debug ] plugins/open-and-close-window-with-plugin.html [ Crash Failure Timeout ]
|