HomeSort by relevance Sort by last modified time
    Searched defs:timeout (Results 151 - 175 of 314) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/BusTxn/
wspi.c 394 UINT32 i, timeout; local
407 timeout = WSPI_SYNC_OVER_ASYNC_TIMEOUT * length;
408 for (i = 0; i < timeout; i++)
415 if (i == timeout)
417 /* Reached the timeout criteria without ending the asynchronous read */
636 int i, timeout; local
649 timeout = WSPI_SYNC_OVER_ASYNC_TIMEOUT * length;
650 for (i = 0; i < timeout; i++)
657 if (i == timeout)
659 /* Reached the timeout criteria without ending the asynchronous write *
    [all...]
  /bionic/libc/kernel/common/linux/
msm_kgsl.h 101 unsigned int timeout; member in struct:kgsl_device_waittimestamp
  /bionic/libc/netbsd/resolv/
res_send.c 871 struct timespec now, timeout, finish; local
953 timeout = evConsTime((long)seconds, 0L);
954 finish = evAddTime(now, timeout);
962 timeout = evSubTime(finish, now);
964 timeout = evConsTime(0L, 0L);
965 n = pselect(s + 1, &dsmask, NULL, NULL, &timeout, NULL);
967 Dprint(statp->options & RES_DEBUG, (stdout, ";; timeout\n"));
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 130 long timeout = System.currentTimeMillis() + TIMEOUT_MSEC; local
131 while (System.currentTimeMillis() < timeout
141 long timeout = System.currentTimeMillis() + TIMEOUT_MSEC; local
142 while (System.currentTimeMillis() < timeout && mMySync.expectedState == STATE_SCANING)
  /external/bluetooth/bluez/input/
device.c 82 int timeout; member in struct:input_conn
618 req->idle_to = iconn->timeout;
1100 int timeout)
1105 iconn->timeout = timeout;
1116 uint32_t handle, int timeout)
1129 iconn = input_conn_new(idev, uuid, "hid", timeout);
  /external/dbus/dbus/
dbus-mainloop.c 91 DBusTimeout *timeout; member in struct:__anon3203
124 timeout_callback_new (DBusTimeout *timeout,
135 cb->timeout = timeout;
317 DBusTimeout *timeout,
324 tcb = timeout_callback_new (timeout, function, data, free_data_func);
340 DBusTimeout *timeout,
353 TIMEOUT_CALLBACK (this)->timeout == timeout &&
365 _dbus_warn ("could not find timeout %p function %p data %p to remove\n"
532 long timeout; local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_xauth.c 805 struct timeval timeout; local
906 timeout.tv_sec = 15;
907 timeout.tv_usec = 0;
910 &timeout, 2, &lr);
1038 struct timeval timeout; local
1123 timeout.tv_sec = 15;
1124 timeout.tv_usec = 0;
1127 &timeout, 2, &lr);
    [all...]
  /external/kernel-headers/original/linux/
msm_kgsl.h 140 * timeout is in milliseconds.
144 unsigned int timeout; member in struct:kgsl_device_waittimestamp
  /external/libpcap/
pcap-int.h 98 int timeout; /* timeout specified to pcap_open_live */ member in struct:pcap_md
119 int dag_timeout; /* timeout specified to pcap_open_live.
142 int timeout; member in struct:pcap
  /external/netperf/
nettest_sctp.c 1089 struct timeval timeout; local
2250 struct timeval timeout; local
    [all...]
nettest_sdp.c 1587 struct timeval timeout; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11events.c 1392 int timeout, interval, prefer_blank, allow_exp; local
1411 int timeout, interval, prefer_blank, allow_exp; local
1433 int timeout, interval, prefer_blank, allow_exp; local
    [all...]
  /external/qemu/slirp/
slirp.c 245 struct timeval timeout; local
356 * Setup timeout to use minimum CPU usage, especially when idle
360 * First, see the timeout needed by *timo
362 timeout.tv_sec = 0;
363 timeout.tv_usec = -1;
365 * If a slowtimo is needed, set timeout to 500ms from the last
366 * slow timeout. If a fast timeout is needed, set timeout within
371 timeout.tv_usec = ((500 - (curtime - last_slowtimo)) * 1000) + 10000
    [all...]
  /external/qemu/
tap-win32.c 140 DWORD result, timeout = block ? INFINITE : 0L; local
143 result = WaitForSingleObject(overlapped->output_queue_semaphore, timeout);
  /external/qemu/telephony/
sysdeps_posix.c 424 struct timeval timeout_tv, *timeout = NULL; local
435 timeout = &timeout_tv;
437 timeout->tv_sec = 0;
438 timeout->tv_usec = 0;
441 timeout->tv_sec = diff / 1000;
442 timeout->tv_usec = (diff - timeout->tv_sec*1000) * 1000;
446 n = select( _s_maxfd+1, &rfd, &wfd, &efd, timeout);
  /external/tcpdump/
print-radius.c 271 "Idle Timeout",
272 "Session Timeout",
370 { "Session Timeout", NULL, 0, 0, print_attr_num },
371 { "Idle Timeout", NULL, 0, 0, print_attr_num },
573 u_int32_t timeout; local
625 timeout = EXTRACT_32BITS( data);
626 if ( timeout < 60 )
627 printf( "%02d secs", timeout);
630 if ( timeout < 3600 )
632 timeout / 60, timeout % 60)
    [all...]
  /external/v8/src/
d8-posix.cc 105 // Returns false on timeout, true on data ready.
111 struct timeval timeout; local
129 timeout.tv_usec = (read_timeout % 1000) * 1000;
130 timeout.tv_sec = read_timeout / 1000;
135 read_timeout != -1 ? &timeout : NULL);
140 // Checks whether we ran out of time on the timeout. Returns true if we ran out
368 // if you want a timeout. If we don't have waitid we can't limit the time
514 kill(pid, SIGINT); // On timeout, kill the subprocess.
  /external/webkit/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 110 int32_t timeout = 0; local
112 timeout = args[1]->Int32Value();
133 id = DOMTimer::install(scriptContext, action, timeout, singleShot);
135 id = DOMTimer::install(scriptContext, new ScheduledAction(V8Proxy::context(imp->frame()), functionString), timeout, singleShot);
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleManager.cpp 331 struct timeval timeout; local
332 timeout.tv_sec = 0;
333 timeout.tv_usec = selectTimeoutMS * 1000; // select waits microseconds
346 rc = ::select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
671 // timeout will occur and do curl_multi_perform
  /external/wpa_supplicant/
eapol_test.c 897 " [-r<count>] [-t<timeout>] [-C<Connect-Info>] \\\n"
914 " -t<timeout> = sets timeout in seconds (default: 30 s)\n"
931 int timeout = 30; local
979 timeout = atoi(optarg);
1049 eloop_register_timeout(timeout, 0, eapol_test_timeout, &eapol_test,
  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_dbus.c 157 DBusTimeout *timeout = sock_ctx; local
159 dbus_timeout_handle(timeout);
164 DBusTimeout *timeout)
166 if (!dbus_timeout_get_enabled(timeout))
169 eloop_register_timeout(0, dbus_timeout_get_interval(timeout) * 1000,
170 process_timeout, iface, timeout);
172 dbus_timeout_set_data(timeout, iface, NULL);
177 DBusTimeout *timeout)
179 eloop_cancel_timeout(process_timeout, iface, timeout);
180 dbus_timeout_set_data(timeout, NULL, NULL)
    [all...]
eapol_test.c 973 " [-r<count>] [-t<timeout>] [-C<Connect-Info>] \\\n"
994 " -t<timeout> = sets timeout in seconds (default: 30 s)\n"
1024 int timeout = 30; local
1079 timeout = atoi(optarg);
1178 eloop_register_timeout(timeout, 0, eapol_test_timeout, &eapol_test,
wpa_supplicant.c 205 * wpa_supplicant_req_auth_timeout - Schedule a timeout for authentication
210 * This function is used to schedule a timeout for the current authentication
220 wpa_msg(wpa_s, MSG_DEBUG, "Setting authentication timeout: %d sec "
228 * wpa_supplicant_cancel_auth_timeout - Cancel authentication timeout
231 * This function is used to cancel authentication timeout scheduled with
237 wpa_msg(wpa_s, MSG_DEBUG, "Cancelling authentication timeout");
1192 int timeout = 60; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerIntegrationTest.java 355 long timeout = 60 * 1000; // wait only 60 seconds before giving up local
371 WAIT_FOR_DOWNLOAD_POLL_TIME, timeout);
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 50 public static final String NI_INTENT_KEY_TIMEOUT = "timeout";
102 public int timeout; field in class:GpsNetInitiatedHandler.GpsNiNotification
165 // A note about timeout
169 // In some GPS hardware, the GPS driver (under HAL) can handle the timeout case
172 // However, the UI should at least close the dialog when timeout. Further,
173 // for more general handling, timeout response should be added to the Handler here.
248 intent.putExtra(NI_INTENT_KEY_TIMEOUT, notif.timeout);
252 ", timeout: " + notif.timeout);

Completed in 769 milliseconds

1 2 3 4 5 67 8 91011>>