HomeSort by relevance Sort by last modified time
    Searched refs:TIMEOUT (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/dnsmasq/src/
config.h 23 #define TIMEOUT 10 /* drop UDP queries after TIMEOUT seconds */
forward.c 957 /* if wait==NULL return a free or older than TIMEOUT record.
960 limit of 4*TIMEOUT before we wipe things (for random sockets) */
974 if (difftime(now, f->time) >= 4*TIMEOUT)
991 and it's older than timeout */
992 if (oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT)
994 /* keep stuff for twice timeout if we can by allocating a new
996 if (difftime(now, oldest->time) < 2*TIMEOUT &&
1013 *wait = oldest->time + (time_t)TIMEOUT - now;
  /external/dhcpcd/
dhcpcd-run-hooks.in 15 BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT|STATIC) if_up=true;;
  /external/grub/netboot/
fsys_tftp.c 60 long timeout; local
63 timeout = rfc2131_sleep_interval (block ? TFTP_REXMT : TIMEOUT, retry);
65 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
68 if (! await_reply (AWAIT_TFTP, iport, NULL, timeout))
99 /* Timeout. */
main.c 274 long timeout; local
277 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
279 if (await_reply (AWAIT_ARP, arpentry, arpreq.tipaddr, timeout))
330 long timeout; local
333 timeout = rfc2131_sleep_interval (block ? TFTP_REXMT : TIMEOUT, retry);
335 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
338 if (! await_reply (AWAIT_TFTP, iport, NULL, timeout))
507 long timeout; local
586 long timeout; local
    [all...]
etherboot.h 74 #define TIMEOUT (10 * TICKS_PER_SEC)
77 /* total retransmission timeout in ticks */
79 /* packet retransmission timeout in ticks */
501 extern int await_reply (int type, int ival, void *ptr, int timeout);
  /frameworks/base/core/java/android/net/
DnsPinger.java 59 /** Short socket timeout so we don't block one any 'receive' call */
85 public static final int TIMEOUT = -1;
90 * Send a new ping via a socket. arg1 is ID, arg2 is timeout, obj is InetAddress to ping
103 int timeout; field in class:DnsPinger.ActivePing
147 newActivePing.timeout = msg.arg2;
204 // A timeout here doesn't mean anything - squelsh this exception
220 curPing.start + curPing.timeout) {
221 sendResponse(curPing.internalId, curPing.packetId, TIMEOUT);
264 * @param timeout timeout for pin
    [all...]
  /external/ppp/pppd/
upap.c 69 "Set retransmit timeout for PAP", OPT_PRIO },
72 { "pap-timeout", o_int, &upap[0].us_reqtimeout,
193 TIMEOUT(upap_reqtimeout, u, u->us_reqtimeout);
260 TIMEOUT(upap_reqtimeout, u, u->us_reqtimeout);
276 if (u->us_clientstate == UPAPCS_AUTHREQ) /* Timeout pending? */
277 UNTIMEOUT(upap_timeout, u); /* Cancel timeout */
574 TIMEOUT(upap_timeout, u, u->us_timeouttime);
fsm.c 144 UNTIMEOUT(fsm_timeout, f); /* Cancel timeout */
152 UNTIMEOUT(fsm_timeout, f); /* Cancel timeout */
207 * Cancel any timeout running, notify upper layers we're done, and
216 UNTIMEOUT(fsm_timeout, f); /* Cancel timeout */
237 TIMEOUT(fsm_timeout, f, f->timeouttime);
278 * fsm_timeout - Timeout expired.
300 TIMEOUT(fsm_timeout, f, f->timeouttime);
309 warn("%s: timeout sending Config-Requests\n", PROTO_NAME(f));
325 FSMDEBUG(("%s: Timeout event in state %d!", PROTO_NAME(f), f->state));
462 UNTIMEOUT(fsm_timeout, f); /* Cancel timeout */
    [all...]
chap-new.c 69 "Set timeout for CHAP", OPT_PRIO },
275 TIMEOUT(chap_timeout, arg, chap_timeout_time);
384 TIMEOUT(chap_timeout, ss,
  /external/kernel-headers/original/linux/
a1026.h 210 #define TIMEOUT 20 /* ms */
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_failures.py 54 return test_expectations.TIMEOUT
printing_unittest.py 135 if result_type == test_expectations.TIMEOUT:
338 tests = ['passes/text.html', 'failures/expected/timeout.html',
364 tests = ['passes/text.html', 'failures/expected/timeout.html',
366 expectations = 'BUGX : failures/expected/timeout.html = TIMEOUT'
391 rs.add(self.get_result('passes/text.html', test_expectations.TIMEOUT), False)
392 rs.add(self.get_result('failures/expected/timeout.html'), True)
420 rs.add(self.get_result('passes/text.html', test_expectations.TIMEOUT), False)
421 rs.add(self.get_result('failures/expected/timeout.html'), True)
493 rs.add(self.get_result('failures/expected/timeout.html'
    [all...]
test_expectations.py 44 (PASS, FAIL, TEXT, IMAGE, IMAGE_PLUS_TEXT, AUDIO, TIMEOUT, CRASH, SKIP, WONTFIX,
232 LayoutTests/fast/js/crash.js = CRASH TIMEOUT FAIL PASS
236 SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
237 DEBUG : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
238 DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
239 LINUX DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
240 LINUX WIN : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
243 SLOW: The test takes a long time to run, but does not timeout indefinitely.
247 -A test cannot be both SLOW and TIMEOUT
264 'timeout': TIMEOUT
    [all...]
json_layout_results_generator.py 49 test_expectations.TIMEOUT: "T",
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java 57 private final static int TIMEOUT = 60000;
271 // if the channel could not finish writing in TIMEOUT ms, the
274 assertTimeout(startTime, TIMEOUT);
280 * than timeout.
282 private void assertTimeout(long startTime, long timeout) {
284 if ((currentTime - startTime) > timeout) {
285 fail("Timeout");
  /packages/apps/Email/tests/src/com/android/email/activity/
MailboxFinderTest.java 43 private static final int TIMEOUT = 10; // in seconds
145 }, TIMEOUT);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 73 // read/connection timeout value
74 private static final int TIMEOUT = 5000;
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 84 // read/connection timeout value
85 private static final int TIMEOUT = 5000;
752 clientConnection.setConnectTimeout(TIMEOUT);
753 clientConnection.setReadTimeout(TIMEOUT);
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.c 151 * once a second as a registered event loop timeout.
513 SM_STATE(BE_AUTH, TIMEOUT)
515 SM_ENTRY_MA(BE_AUTH, TIMEOUT, be_auth);
554 SM_ENTER(BE_AUTH, TIMEOUT);
563 SM_ENTER(BE_AUTH, TIMEOUT);
595 SM_ENTER(BE_AUTH, TIMEOUT);
915 /* Re-run from eloop timeout */
924 /* Re-run from eloop timeout */
967 * Run eapol_sm_step_run from a registered timeout to make sure that
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 73 /** Timeout for HTTP connections (in ms) */
74 private static final int TIMEOUT = 20 * 1000;
749 urlConnection.setConnectTimeout(TIMEOUT);
750 urlConnection.setReadTimeout(TIMEOUT);
  /development/tools/emulator/system/camera/
EmulatedCameraDevice.cpp 306 EmulatedCameraDevice::WorkerThread::Select(int fd, int timeout)
318 if (timeout) {
319 tv.tv_sec = timeout / 1000000;
320 tv.tv_usec = timeout % 1000000;
329 /* Timeout. */
330 return TIMEOUT;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardViewMediator.java 104 private static final int TIMEOUT = 1;
131 * How long to wait after the screen turns off due to timeout before
223 * it turned off due to timeout. see {@link #onScreenTurnedOff(int)}
364 // if the screen turned off because of timeout, set an alarm
383 long timeout; local
387 timeout = Math.min(policyTimeout - displayTimeout, lockAfterTimeout);
389 timeout = lockAfterTimeout;
392 if (timeout <= 0) {
398 long when = SystemClock.elapsedRealtime() + timeout;
468 // to unblock us after a timeout so we don't risk blocking too lon
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SocketChannelTest.java 67 private final static int TIMEOUT = 60000;
    [all...]
  /external/iproute2/examples/
dhcp-client-script 408 TIMEOUT)

Completed in 928 milliseconds

12 3 4