HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 226 - 250 of 4818) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/include/gpxe/
retry.h 14 /** Default timeout value */
17 /** Limit after which the timeout will be deemed permanent */
26 /** Timeout value (in ticks) */
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 );
    [all...]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderInterface.h 28 virtual Encode_Status encode(VideoEncRawBuffer *inBuffer, uint32_t timeout = FUNC_BLOCK) = 0;
29 virtual Encode_Status getOutput(VideoEncOutputBuffer *outBuffer, uint32_t timeout = FUNC_BLOCK) = 0;
  /hardware/interfaces/broadcastradio/common/vts/utils/
call-barrier.cpp 33 bool CallBarrier::waitForCall(std::chrono::milliseconds timeout) {
38 auto status = mCond.wait_for(lk, timeout);
  /hardware/interfaces/broadcastradio/common/vts/utils/include/broadcastradio-vts-utils/
pointer-utils.h 31 * @param timeout Time to wait for other references.
34 static void clearAndWait(sp<T>& ptr, std::chrono::milliseconds timeout) {
42 auto limit = steady_clock::now() + timeout;
45 FAIL() << "Pointer was not released within timeout";
  /hardware/interfaces/weaver/1.0/
types.hal 39 uint32_t timeout;
  /libcore/ojluni/src/main/java/java/util/concurrent/
BlockingQueue.java 240 * @param timeout how long to wait before giving up, in units of
243 * {@code timeout} parameter
253 boolean offer(E e, long timeout, TimeUnit unit)
269 * @param timeout how long to wait before giving up, in units of
272 * {@code timeout} parameter
277 E poll(long timeout, TimeUnit unit)
  /system/extras/slideshow/
slideshow.cpp 81 LOGE("usage: slideshow [-t timeout] image.png [image2.png ...] last.png\n");
90 long int timeout = NEXT_TIMEOUT_MS; local
96 timeout = strtol(optarg, NULL, 0);
98 if (timeout < 0 || timeout >= LONG_MAX) {
99 timeout = NEXT_TIMEOUT_MS;
100 LOGE("invalid timeout %s, defaulting to %ld\n", optarg,
101 timeout);
120 * timeout or user input */
126 long int timeout_remaining = timeout;
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/
template 56 timeout { perror "timeout\n"; break }
  /cts/hostsidetests/theme/
android_device.py 34 def run_adb_command(self, cmd, timeout=None):
39 (out, err) = adb_process.communicate(timeout=timeout)
45 def wait_for_device(self, timeout=30):
46 return self.run_adb_command('wait-for-device', timeout)
48 def wait_for_prop(self, key, value, timeout=30):
52 while not boot_complete and (attempts*wait_period) < timeout:
60 print("%s not set to %s within timeout!" % (key, value))
63 def wait_for_service(self, name, timeout=30):
67 while not service_found and (attempts*wait_period) < timeout
    [all...]
  /external/autotest/client/cros/scripts/
wifi 40 print cmd, 'disconnect <ssid> [timeout seconds]'
42 print cmd, 'connect_with_props <ssid> <timeout seconds>'
67 def connect(ssid, security, credentials, save_credentials, timeout=15):
86 discovery_timeout_seconds=timeout,
87 association_timeout_seconds=timeout,
88 configuration_timeout_seconds=timeout)
100 def disconnect(ssid, timeout=None):
107 @param timeout float number of seconds to wait for transition
113 result = wifi.disconnect_from_wifi_network(ssid, timeout)
205 timeout = float(args[2]
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy.c 69 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/
telnetlib.py 30 - 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=socket._GLOBAL_DEFAULT_TIMEOUT)
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/reloc/
reloc.exp 39 timeout { perror "timeout\n"; break }
50 timeout { perror "timeout\n"; break }
87 timeout { perror "timeout\n"; break }
119 timeout { perror "timeout\n"; break }
152 timeout { perror "timeout\n"; break
    [all...]
  /external/autotest/server/hosts/
remote.py 93 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_id=current_boot_id
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
telnetlib.py 30 - 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=socket._GLOBAL_DEFAULT_TIMEOUT)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
telnetlib.py 30 - 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=socket._GLOBAL_DEFAULT_TIMEOUT)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 30 - 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=socket._GLOBAL_DEFAULT_TIMEOUT)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 30 - 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=socket._GLOBAL_DEFAULT_TIMEOUT)
    [all...]
  /bionic/libc/private/
bionic_futex.h 42 const timespec* timeout, int bitset) {
45 int result = syscall(__NR_futex, ftx, op, value, timeout, NULL, bitset);
61 static inline int __futex_wait(volatile void* ftx, int value, const timespec* timeout) {
62 return __futex(ftx, FUTEX_WAIT, value, timeout, 0);
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
PoolEntryRequest.java 48 * 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,
  /external/autotest/client/common_lib/cros/
enrollment.py 15 timeout=10)
28 utils.poll_for_condition(lambda: browser.oobe_exists, timeout=30)
58 utils.poll_for_condition(lambda: not browser.oobe_exists, timeout=30)
76 utils.poll_for_condition(lambda: not browser.oobe_exists, timeout=30)
  /external/autotest/client/deps/lansim/src/py/
simulator.py 96 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 is passed), until stop() is called or until the functio
    [all...]
  /external/autotest/server/site_tests/android_CrashLogging/
android_CrashLogging.py 12 # 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/
tracing_controller.py 42 @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
43 def StartAgentTracing(self, config, timeout=None):
61 @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
62 def StopAgentTracing(self, timeout=None):
71 @py_utils.Timeout(tracing_agents.GET_RESULTS_TIMEOUT)
72 def GetResults(self, timeout=None):
145 timeout=self._controller_config.timeout):
155 timeout=self._controller_config.timeout)
    [all...]
  /external/curl/docs/cmdline-opts/
expect100-timeout.d 1 Long: expect100-timeout
6 See-also: connect-timeout

Completed in 733 milliseconds

1 2 3 4 5 6 7 8 91011>>