HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 176 - 200 of 2264) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/test/pyautolib/chromeos/
power_strip.py 22 TIMEOUT = 10
81 tn.open(self._host, timeout=PowerStrip.TIMEOUT)
82 resp = tn.read_until('Username:', timeout=PowerStrip.TIMEOUT)
86 resp = tn.read_until('Password:', timeout=PowerStrip.TIMEOUT)
90 resp = tn.read_until('Switched CDU:', timeout=PowerStrip.TIMEOUT)
99 resp = tn.read_until('Switched CDU:', timeout=PowerStrip.TIMEOUT
    [all...]
  /external/smack/asmack-master/static-src/custom/org/jivesoftware/smack/
AndroidConnectionConfiguration.java 39 * @param timeout
42 public AndroidConnectionConfiguration(String serviceName, int timeout) throws XMPPException {
44 AndroidInit(serviceName, timeout);
72 * @param timeout
75 private void AndroidInit(String serviceName, int timeout) throws XMPPException {
99 t.join(timeout);
101 throw new XMPPException("DNS lookup timeout after " + timeout + "ms", e);
  /external/smack/src/org/jivesoftware/smack/
AndroidConnectionConfiguration.java 39 * @param timeout
42 public AndroidConnectionConfiguration(String serviceName, int timeout) throws XMPPException {
44 AndroidInit(serviceName, timeout);
72 * @param timeout
75 private void AndroidInit(String serviceName, int timeout) throws XMPPException {
99 t.join(timeout);
101 throw new XMPPException("DNS lookup timeout after " + timeout + "ms", e);
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
tab_list_backend.py 24 def New(self, timeout):
27 self._browser_backend.Request('new', timeout=timeout)
33 def CloseTab(self, debugger_url, timeout=None):
39 self.New(timeout)
44 timeout=timeout,
50 util.WaitFor(lambda: not self._FindTabInfo(debugger_url), timeout=5)
56 def ActivateTab(self, debugger_url, timeout=None):
63 timeout=timeout
    [all...]
inspector_memory.py 25 def GetDOMCounters(self, timeout):
29 timeout: The number of seconds to wait for the inspector backend to
38 }, timeout)
system_info_backend.py 16 def GetSystemInfo(self, timeout=10):
20 res = self._conn.SyncRequest(req, timeout)
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_common.c 160 DBusTimeout *timeout = sock_ctx; local
161 dbus_timeout_handle(timeout);
165 static dbus_bool_t add_timeout(DBusTimeout *timeout, void *data)
168 if (!dbus_timeout_get_enabled(timeout))
171 eloop_register_timeout(0, dbus_timeout_get_interval(timeout) * 1000,
172 process_timeout, priv, timeout);
174 dbus_timeout_set_data(timeout, priv, NULL);
180 static void remove_timeout(DBusTimeout *timeout, void *data)
183 eloop_cancel_timeout(process_timeout, priv, timeout);
184 dbus_timeout_set_data(timeout, NULL, NULL)
    [all...]
  /hardware/qcom/display/msm8960/libgenlock/
genlock.cpp 64 int lockType, int timeout,
85 lock.timeout = timeout;
261 * timeout value can be specified. By default, there is no timeout.
265 * @param: timeout value in ms. GENLOCK_MAX_TIMEOUT is the maximum timeout value.
270 int timeout)
281 if (0 == timeout) {
282 ALOGW("%s: trying to lock a buffer with timeout = 0", __FUNCTION__)
    [all...]
  /hardware/qcom/display/msm8x26/libgenlock/
genlock.cpp 64 int lockType, int timeout,
85 lock.timeout = timeout;
261 * timeout value can be specified. By default, there is no timeout.
265 * @param: timeout value in ms. GENLOCK_MAX_TIMEOUT is the maximum timeout value.
270 int timeout)
281 if (0 == timeout) {
282 ALOGW("%s: trying to lock a buffer with timeout = 0", __FUNCTION__)
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingExecutorService.java 48 public boolean awaitTermination(long timeout, TimeUnit unit)
50 return delegate().awaitTermination(timeout, unit);
61 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
63 return delegate().invokeAll(tasks, timeout, unit);
74 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
76 return delegate().invokeAny(tasks, timeout, unit);
  /external/jmdns/src/javax/jmdns/
JmDNS.java 188 * Get service information. If the information is not cached, the method will block for the given timeout until updated information is received.
190 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
196 * @param timeout
197 * timeout in milliseconds. Typical timeout should be 5s.
200 public abstract ServiceInfo getServiceInfo(String type, String name, long timeout);
218 * Get service information. If the information is not cached, the method will block for the given timeout until updated information is received.
220 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
226 * @param timeout
227 * timeout in milliseconds. Typical timeout should be 5s
    [all...]
JmmDNS.java 164 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
170 * @param timeout
171 * timeout in milliseconds. Typical timeout should be 5s.
175 public abstract ServiceInfo[] getServiceInfos(String type, String name, long timeout);
180 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
196 * Usage note: If you call this method from the AWT event dispatcher thread, use a small timeout, or you will make the user interface unresponsive.
202 * @param timeout
203 * timeout in milliseconds. Typical timeout should be 5s
    [all...]
  /external/chromium_org/media/cast/net/pacing/
paced_sender_unittest.cc 103 base::TimeDelta timeout = base::TimeDelta::FromMilliseconds(10); local
104 testing_clock_.Advance(timeout);
108 timeout = base::TimeDelta::FromMilliseconds(5);
109 testing_clock_.Advance(timeout);
114 testing_clock_.Advance(timeout);
118 testing_clock_.Advance(timeout);
146 base::TimeDelta timeout = base::TimeDelta::FromMilliseconds(10); local
147 testing_clock_.Advance(timeout);
155 testing_clock_.Advance(timeout);
161 testing_clock_.Advance(timeout);
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestCase.java 37 public void addTest(String testName, int timeout) {
38 mTests.add(new Test(testName, timeout));
  /development/ndk/sources/android/libportable/arch-mips/
poll.c 109 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, long timeout)
117 ret = REAL(poll)(fds, nfds, timeout);
  /external/chromium_org/chrome/test/remoting/
waiter.h 22 explicit TimeoutWaiter(base::TimeDelta timeout);
49 ConditionalTimeoutWaiter(base::TimeDelta timeout,
54 // Returns true if |callback_| returned true and false in case of timeout.
  /external/chromium_org/content/browser/aura/
compositor_resize_lock.cc 17 const base::TimeDelta& timeout)
33 timeout);
  /external/chromium_org/third_party/libusb/src/libusb/
sync.c 80 * \param timeout timeout (in millseconds) that this function should wait
82 * timeout, use value 0.
92 unsigned char *data, uint16_t wLength, unsigned int timeout)
114 sync_transfer_cb, &completed, timeout);
160 int *transferred, unsigned int timeout, unsigned char type)
170 sync_transfer_cb, &completed, timeout);
224 * Also check <tt>transferred</tt> when dealing with a timeout error code.
226 * underlying O/S requirements, meaning that the timeout may expire after
228 * that may have been transferred; do not assume that timeout condition
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plresolv.h 72 PRIntn bufsize, PRIntervalTime timeout,
77 PRIntn bufsize, PRIntervalTime timeout,
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chromebase.py 50 def Scrape(urls, outdir, size, pos, timeout, kwargs):
58 timeout: amount of time to wait for page to load
84 load_time = windowing.WaitForThrobber(wnd, (20, 16, 36, 32), timeout)
108 if not windowing.WaitForProcessExit(proc, timeout):
113 return "timeout"
118 def Time(urls, size, timeout, kwargs):
124 timeout: amount of time to wait for page to load
128 A list of tuples (url, time). "time" can be "crashed" or "timeout"
153 load_time = windowing.WaitForThrobber(wnd, (20, 16, 36, 32), timeout)
158 load_time = "timeout"
    [all...]
  /external/kernel-headers/original/linux/
completion.h 48 unsigned long timeout));
50 struct completion *x, unsigned long timeout));
  /external/libusb/libusb/
sync.c 62 * \param timeout timeout (in millseconds) that this function should wait
64 * timeout, use value 0.
74 unsigned char *data, uint16_t wLength, unsigned int timeout)
96 ctrl_transfer_cb, &completed, timeout);
155 int *transferred, unsigned int timeout, unsigned char type)
165 bulk_transfer_cb, &completed, timeout);
227 * Also check <tt>transferred</tt> when dealing with a timeout error code.
229 * underlying O/S requirements, meaning that the timeout may expire after
231 * that may have been transferred; do not assume that timeout condition
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Ping.java 61 * response was cancelled, or -2 if the timeout elapsed before the round
64 public long roundTripTime(long timeout, TimeUnit unit) throws InterruptedException {
65 if (latch.await(timeout, unit)) {
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamSession.java 85 public void setReadTimeout(int timeout) throws IOException {
87 this.socket.setSoTimeout(timeout);
  /external/smack/src/org/jivesoftware/smackx/muc/
ConnectionDetachedPacketCollector.java 92 * until a packet is available or the <tt>timeout</tt> has elapased. If the
93 * timeout elapses without a result, <tt>null</tt> will be returned.
95 * @param timeout the amount of time to wait for the next packet (in milleseconds).
98 public Packet nextResult(long timeout) {
100 return resultQueue.poll(timeout, TimeUnit.MILLISECONDS);

Completed in 1204 milliseconds

1 2 3 4 5 6 78 91011>>