/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
manager_worker_broker.py | 226 def join(self, timeout): 249 def join(self, timeout): 296 def join(self, timeout): 297 return self._thread.join(timeout) 342 def join(self, timeout): 343 return self._proc.join(timeout)
|
/external/wpa_supplicant/ |
l2_packet_pcap.c | 184 int timeout; local 187 timeout = 20000; 190 timeout = 100000; 192 /* Register new timeout before calling l2_packet_receive() since 194 * cancel this timeout). */ 195 eloop_register_timeout(0, timeout, l2_packet_receive_timeout,
|
/external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/ |
l2_packet_pcap.c | 184 int timeout; local 187 timeout = 20000; 190 timeout = 100000; 192 /* Register new timeout before calling l2_packet_receive() since 194 * cancel this timeout). */ 195 eloop_register_timeout(0, timeout, l2_packet_receive_timeout,
|
/external/wpa_supplicant_8/src/l2_packet/ |
l2_packet_pcap.c | 184 int timeout; local 187 timeout = 20000; 190 timeout = 100000; 192 /* Register new timeout before calling l2_packet_receive() since 194 * cancel this timeout). */ 195 eloop_register_timeout(0, timeout, l2_packet_receive_timeout,
|
/frameworks/base/core/tests/coretests/src/android/animation/ |
ViewPropertyAnimatorTest.java | 82 * Timeout length, based on when the animation should reasonably be complete. 101 * Variant constructor that auto-releases the FutureWaiter after the specified timeout. 103 * @param timeout 105 public FutureReleaseListener(FutureWaiter future, long timeout) { 113 }, timeout); 302 // Set the listener to automatically timeout after an uncanceled animation
|
/frameworks/base/tests/DumpRenderTree/assets/ |
run_reliability_tests.py | 128 print "Missing timeout file, use --timeout-file to specify" 184 "runReliabilityTest -e timeout %s -e delay %s" % 234 # get timeout file from sdcard 253 help="set the timeout for each test") 263 option_parser.add_option("-f", "--timeout-file",
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiNative.java | 241 public static boolean p2pFind(int timeout) { 242 if (timeout <= 0) { 245 return doBooleanCommand("P2P_FIND " + timeout); 252 public static boolean p2pListen(int timeout) { 253 if (timeout <= 0) { 256 return doBooleanCommand("P2P_LISTEN " + timeout);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/ |
clnt.h | 161 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout) 168 * struct timeval timeout; 219 #define CLSET_TIMEOUT 1 /* set timeout (timeval) */ 220 #define CLGET_TIMEOUT 2 /* get timeout (timeval) */ 238 #define CLSET_RETRY_TIMEOUT 4 /* set retry timeout (timeval) */ 239 #define CLGET_RETRY_TIMEOUT 5 /* get retry timeout (timeval) */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/scsi/ |
sg.h | 55 unsigned int timeout; /* [i] MAX_UINT->no timeout (unit: millisec) */ member in struct:sg_io_hdr 253 #define SG_SET_TIMEOUT 0x2201 /* Set timeout; *(int *)arg==timeout. */ 254 #define SG_GET_TIMEOUT 0x2202 /* Get timeout; return timeout. */
|
/sdk/layoutlib_api/src/com/android/ide/common/rendering/api/ |
RenderSession.java | 109 * Re-renders the layout as-is, with a given timeout in case other renderings are being done. 114 * is an internal lock object whenever such an action occurs. The timeout parameter is used 115 * when attempting to acquire the lock. If the timeout expires, the method will return 118 * @param timeout timeout for the rendering, in milliseconds. 122 public Result render(long timeout) {
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetwork.java | 385 * timeout, which is the number of microseconds to wait for the event to occur, and it takes 389 * when the timeout is reached (whichever occurs first). Note that there is no difference 390 * between an event occurring and the timeout being reached; the client will have to verify 397 * be returned to the client, or the timeout will be reached, and the results for the key 401 // deferreturn [event] [timeout (ms)] [command] 413 long timeout = Long.parseLong(command.get(2)); local 418 deferredReturn = new DeferredReturn(eventId, ret, timeout); 516 private long timeout; field in class:MonkeySourceNetwork.DeferredReturn 518 public DeferredReturn(int event, MonkeyCommandReturn deferredReturn, long timeout) { 521 this.timeout = timeout [all...] |
/external/openssl/ssl/ |
ssl_asn1.c | 106 ASN1_INTEGER timeout; member in struct:ssl_session_asn1_st 219 if (in->timeout != 0L) 221 a.timeout.length=LSIZE2; 222 a.timeout.type=V_ASN1_INTEGER; 223 a.timeout.data=ibuf4; 224 ASN1_INTEGER_set(&(a.timeout),in->timeout); 284 if (in->timeout != 0L) 285 M_ASN1_I2D_len_EXP_opt(&(a.timeout),i2d_ASN1_INTEGER,2,v2); 326 if (in->timeout != 0L [all...] |
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/ |
ConnectionUtil.java | 349 * @param timeout to wait for download to finish 352 public boolean startDownloadAndWait(String targetUrl, long timeout) { 362 if ((System.currentTimeMillis() - startTime) > timeout) { 364 " within " + timeout); 422 * @param timeout in milliseconds 425 public boolean waitForNetworkState(int networkType, State expectedState, long timeout) { 428 if ((System.currentTimeMillis() - startTime) > timeout) { 460 * Wait for a given wifi state to occur within a given timeout. 462 * @param timeout for the state to be set in milliseconds. 463 * @return true if the state was achieved within the timeout, false otherwise [all...] |
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
TestShellActivity.java | 97 throw new RuntimeException("WebView dump timeout, is it pegged?"); 127 private void setDumpTimeout(long timeout) { 128 Log.v(LOGTAG, "setting dump timeout at " + timeout); 130 mHandler.sendMessageDelayed(msg, timeout); 218 // Create a timeout timer 304 public void dump(boolean timeout, String webkitData) { 318 if (timeout) { 319 Log.w("Layout test: Timeout", mResultFile); 693 Log.v(LOGTAG, "JavaScript timeout"); [all...] |
/bootable/recovery/minui/ |
events.c | 113 int ev_wait(int timeout) 117 r = poll(ev_fds, ev_count, timeout);
|
/cts/tests/tests/net/src/android/net/wifi/cts/ |
ScanResultTest.java | 105 long timeout = System.currentTimeMillis() + TIMEOUT_MSEC; local 106 while (System.currentTimeMillis() < timeout
|
/cts/tests/tests/speech/src/android/speech/tts/cts/ |
TextToSpeechTest.java | 94 assertTrue("synthesizeToFile() completion timeout", waitForUtterance()); 106 assertTrue("speak() completion timeout", waitForUtterance());
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
HttpAuthHandlerTest.java | 36 private static final long TIMEOUT = 10000; 136 new DelayedCheck(TIMEOUT) {
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ViewFlipperTest.java | 149 private void waitForViewFlipping(int timeout) { 151 Thread.sleep(timeout);
|
/development/host/windows/usb/winusb/ |
adb_winusb_endpoint_object.cpp | 161 bool AdbWinUsbEndpointObject::SetTimeout(ULONG timeout) {
164 sizeof(ULONG), &timeout)) {
|
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/ |
UnixSocketTest.java | 90 // timeout expired 95 fail("No interrupted exception when connecting to address nobody listening on with short timeout 200");
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultConnectionKeepAliveStrategy.java | 46 * header's timeout token. 66 if (value != null && param.equalsIgnoreCase("timeout")) {
|
/external/bluetooth/bluez/tools/ |
csr_usb.c | 44 static inline int usb_interrupt_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) 46 return usb_bulk_read(dev, ep, bytes, size, timeout);
|
/external/bluetooth/glib/gio/ |
gasynchelper.c | 88 gint *timeout) 91 *timeout = -1;
|
/external/bluetooth/glib/gio/inotify/ |
inotify-missing.c | 70 /* If the timeout is turned off, we turn it back on */ 140 /* If the missing list is now empty, we disable the timeout */
|