Searched refs:timeout (Results 151 - 175 of 1792) sorted by relevance

1234567891011>>

/external/syslinux/gpxe/src/core/
H A Dgetkey.c36 * Read character from console if available within timeout period
38 * @v timeout Timeout period, in ticks
41 static int getchar_timeout ( unsigned long timeout ) {
42 unsigned long expiry = ( currticks() + timeout );
/external/syslinux/gpxe/src/include/gpxe/
H A Dretry.h14 /** Default timeout value */
17 /** Limit after which the timeout will be deemed permanent */
27 unsigned long timeout; member in struct:retry_timer
28 /** Minimum timeout value (in ticks)
30 * A value of zero means "use default timeout."
33 /** Maximum timeout value before failure (in ticks)
35 * A value of zero means "use default timeout."
49 * timeout has already exceeded @c MAX_TIMEOUT.
56 unsigned long timeout );
64 * This starts the timer running with a zero timeout valu
[all...]
/external/autotest/client/cros/scripts/
H A Dwifi42 print cmd, 'disconnect <ssid> [timeout seconds]'
44 print cmd, 'connect_with_props <ssid> <timeout seconds>'
69 def connect(ssid, security, credentials, save_credentials, timeout=15):
88 discovery_timeout_seconds=timeout,
89 association_timeout_seconds=timeout,
90 configuration_timeout_seconds=timeout)
102 def disconnect(ssid, timeout=None):
109 @param timeout float number of seconds to wait for transition
115 result = wifi.disconnect_from_wifi_network(ssid, timeout)
207 timeout
[all...]
/external/libmicrohttpd/src/examples/
H A Dmhd2spdy.c69 struct timeval timeout; local
126 timeout.tv_sec = 0;
127 timeout.tv_usec = 0;
142 timeout.tv_sec = 5;
145 timeout.tv_sec = timeoutlong / 1000;
146 timeout.tv_usec = (timeoutlong % 1000) * 1000;
167 PRINT_INFO2("MHD timeout %lld %lld", (unsigned long long)timeout.tv_sec, (unsigned long long)timeout.tv_usec);
171 ret = select(maxfd+1, &rs, &ws, &es, &timeout);
[all...]
/external/python/cpython2/Lib/
H A Dtelnetlib.py30 - timeout should be intrinsic to the connection object instead of an
150 read_until(expected, [timeout])
151 Read until the expected string has been seen, or a timeout is
152 hit (default is no timeout); may block.
189 timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
194 and timeout are optional.
199 self.timeout = timeout
211 self.open(host, port, timeout)
213 def open(self, host, port=0, timeout
[all...]
/external/autotest/server/hosts/
H A Dremote.py93 def halt(self, timeout=DEFAULT_HALT_TIMEOUT, wait=True):
102 @param timeout Maximum time to wait for host down, in seconds.
107 self.wait_down(timeout=timeout)
110 def reboot(self, timeout=DEFAULT_REBOOT_TIMEOUT, wait=True,
116 timeout - How long to wait for the reboot.
141 # shutdown isn't timed out by wait_down's short timeout
143 self.run('sync; sync', timeout=timeout, ignore_status=True)
159 self.wait_for_restart(timeout, old_boot_i
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DPoolEntryRequest.java48 * Obtains a pool entry with a connection within the given timeout.
52 * @param timeout the timeout, 0 or negative for no timeout
53 * @param tunit the unit for the <code>timeout</code>,
54 * may be <code>null</code> only if there is no timeout
59 * if the timeout expired
64 long timeout,
63 getPoolEntry( long timeout, TimeUnit tunit) argument
/external/autotest/client/cros/chameleon/
H A Dchameleon_bluetooth_audio.py18 # Set the timeout to 90 seconds so device can take more trials to reconnect.
27 timeout=_SEARCH_TIMEOUT):
34 @param timeout: Timeout in seconds to search for bluetooth module.
62 found_device = utils.wait_for_value(_find_device, True, timeout_sec=timeout)
85 timeout=_CONNECT_TIMEOUT):
92 @param timeout: Timeout in seconds to connect bluetooth module.
109 connected = utils.wait_for_value(_connect_device, True, timeout_sec=timeout)
125 @param timeout: Timeout in seconds to pair bluetooth module in a trial.
/external/autotest/client/cros/networking/chrome_testing/
H A Dtest_utils.py56 timeout=LONG_TIMEOUT):
66 @param timeout: Timeout interval in which the property should reach the
69 @raises error.TestFail, if the check doesn't pass within |timeout|.
84 timeout)
119 chrome_networking_test_context, function, args, timeout=SHORT_TIMEOUT):
129 @param timeout: Timeout in which the function should terminate.
139 timeout, function, *args)
/external/autotest/client/deps/lansim/src/py/
H A Dsimulator.py96 def add_timeout(self, timeout, callback):
97 """Add a new callback function to be called after a timeout.
99 This method schedules the given |callback| to be called after |timeout|
104 @param timeout: The rule description.
109 timestamp = time.time() + timeout
118 """Removes the every scheduled timeout call to the passed callback.
121 called once the timeout is reached. This method removes all the
164 def run(self, timeout=None, until=None):
167 This method blocks the caller thread until the timeout is reached (if
168 a timeout i
[all...]
/external/autotest/client/site_tests/power_CheckAC/
H A Dpower_CheckAC.py21 timeout=10, exception=error.TestError('AC power not %d' % power_on))
/external/autotest/server/site_tests/android_CrashLogging/
H A Dandroid_CrashLogging.py12 # Number of seconds to wait for host.run commands to timeout.
36 timeout=COMMAND_TIMEOUT_SECONDS, ignore_status=True)
40 timeout=COMMAND_TIMEOUT_SECONDS,
47 timeout=COMMAND_TIMEOUT_SECONDS,
57 timeout=COMMAND_TIMEOUT_SECONDS).split()
/external/chromium-trace/catapult/systrace/systrace/
H A Dtracing_controller.py43 def StartAgentTracing(self, config, timeout=None):
62 def StopAgentTracing(self, timeout=None):
72 def GetResults(self, timeout=None):
145 timeout=self._controller_config.timeout):
155 timeout=self._controller_config.timeout):
186 if agent.StopAgentTracing(timeout=self._controller_config.timeout):
194 timeout
[all...]
/external/curl/docs/cmdline-opts/
H A Dexpect100-timeout.d1 Long: expect100-timeout
6 See-also: connect-timeout
/external/curl/tests/libtest/
H A Dlib1501.c76 struct timeval timeout; local
85 timeout.tv_sec = 0;
86 timeout.tv_usec = 100000L; /* 100 ms */
96 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib507.c57 struct timeval timeout; local
66 timeout.tv_sec = 1;
67 timeout.tv_usec = 0;
73 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib560.c74 struct timeval timeout; local
85 /* set a suitable timeout to play around with */
86 timeout.tv_sec = 1;
87 timeout.tv_usec = 0;
94 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
98 /* timeout or readable/writable sockets */
H A Dlib573.c69 struct timeval timeout; local
73 timeout.tv_sec = 0;
74 timeout.tv_usec = 100000L; /* 100 ms */
91 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib575.c79 struct timeval timeout; local
85 timeout.tv_sec = 0;
86 timeout.tv_usec = 100000L; /* 100 ms */
96 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingBlockingQueue.java53 @Override public boolean offer(E e, long timeout, TimeUnit unit) argument
55 return delegate().offer(e, timeout, unit);
58 @Override public E poll(long timeout, TimeUnit unit) argument
60 return delegate().poll(timeout, unit);
/external/libdaemon/libdaemon/
H A Ddfork.h93 * @param timeout Thetimeout in seconds
96 int daemon_retval_wait(int timeout);
/external/libmicrohttpd/src/microhttpd/
H A Dconnection_https.c134 unsigned int timeout; local
142 timeout = connection->connection_timeout;
143 if ( (timeout != 0) && (timeout <= (MHD_monotonic_time() - connection->last_activity)))
/external/ltp/testcases/commands/tpm-tools/tpm/tpm_changeauth/
H A Dtpm_changeauth_tests_exp03.sh24 set timeout 30
39 expect timeout
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/
H A Dtpmtoken_import_tests_exp01.sh27 set timeout 30
35 expect timeout
H A Dtpmtoken_import_tests_exp02.sh27 set timeout 30
42 expect timeout

Completed in 2172 milliseconds

1234567891011>>