HomeSort by relevance Sort by last modified time
    Searched refs:Timeout (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /external/nist-sip/java/javax/sip/
Timeout.java 3 public enum Timeout {
TimeoutEvent.java 4 private Timeout mTimeout;
7 Timeout timeout) {
9 mTimeout = timeout;
13 Timeout timeout) {
15 mTimeout = timeout;
18 public Timeout getTimeout() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
Timeout.java 20 * This class holds the remaining timeout value.
22 public class Timeout {
27 * Initialize timeout value.
30 public Timeout(long msec) {
35 * Return true if the timeout has already expired.
43 * Return the remaining timeout value.
P2pBroadcastReceiverTest.java 70 * @param msec timeout value.
72 * within the given timeout.
78 Timeout t = new Timeout(msec);
97 * @param msec timeout value
99 * established within the given timeout.
103 Timeout t = new Timeout(msec);
124 Timeout t = new Timeout(msec)
    [all...]
P2pClientPbcTestCase.java 62 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
87 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
95 Timeout t = new Timeout(TIMEOUT);
P2pClientPinTestCase.java 59 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
84 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
92 Timeout t = new Timeout(TIMEOUT);
ServReqTestCase.java 69 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
85 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
94 Timeout t = new Timeout(TIMEOUT);
ListenerTest.java 58 * the specified timeout.
61 * @param msec timeout.
73 * within the specified timeout.
76 * @param msec timeout.
163 Timeout t = new Timeout(msec);
ServReqMultiClientTestCase01.java 52 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
94 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
102 Timeout t = new Timeout(TIMEOUT);
ServReqMultiClientTestCase02.java 52 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
94 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
102 Timeout t = new Timeout(TIMEOUT);
  /external/mockito/src/org/mockito/verification/
Timeout.java 16 * Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
19 public class Timeout implements VerificationWithTimeout {
26 * Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
29 public Timeout(int millis, VerificationMode delegate) {
36 Timeout(int treshhold, int millis, VerificationMode delegate) {
51 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeast(minNumberOfInvocations));
58 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeastOnce());
73 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(0));
80 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.only());
87 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(wantedNumberOfInvocations));
    [all...]
  /external/junit/src/org/junit/rules/
Timeout.java 11 * The Timeout Rule applies the same timeout to all test methods in a class:
18 * public MethodRule globalTimeout= new Timeout(20);
36 public class Timeout implements TestRule {
40 * @param millis the millisecond timeout
42 public Timeout(int millis) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
icmpapi.h 16 DWORD WINAPI IcmpSendEcho(HANDLE IcmpHandle,IPAddr DestinationAddress,LPVOID RequestData,WORD RequestSize,PIP_OPTION_INFORMATION RequestOptions,LPVOID ReplyBuffer,DWORD ReplySize,DWORD Timeout);
19 DWORD WINAPI IcmpSendEcho2(HANDLE IcmpHandle,HANDLE Event,PIO_APC_ROUTINE ApcRoutine,PVOID ApcContext,IPAddr DestinationAddress,LPVOID RequestData,WORD RequestSize,PIP_OPTION_INFORMATION RequestOptions,LPVOID ReplyBuffer,DWORD ReplySize,DWORD Timeout);
20 DWORD WINAPI Icmp6SendEcho2(HANDLE IcmpHandle,HANDLE Event,PIO_APC_ROUTINE ApcRoutine,PVOID ApcContext,struct sockaddr_in6 *SourceAddress,struct sockaddr_in6 *DestinationAddress,LPVOID RequestData,WORD RequestSize,PIP_OPTION_INFORMATION RequestOptions,LPVOID ReplyBuffer,DWORD ReplySize,DWORD Timeout);
22 DWORD WINAPI IcmpSendEcho2(HANDLE IcmpHandle,HANDLE Event,FARPROC ApcRoutine,PVOID ApcContext,IPAddr DestinationAddress,LPVOID RequestData,WORD RequestSize,PIP_OPTION_INFORMATION RequestOptions,LPVOID ReplyBuffer,DWORD ReplySize,DWORD Timeout);
23 DWORD WINAPI Icmp6SendEcho2(HANDLE IcmpHandle,HANDLE Event,FARPROC ApcRoutine,PVOID ApcContext,struct sockaddr_in6 *SourceAddress,struct sockaddr_in6 *DestinationAddress,LPVOID RequestData,WORD RequestSize,PIP_OPTION_INFORMATION RequestOptions,LPVOID ReplyBuffer,DWORD ReplySize,DWORD Timeout);
avrt.h 61 PLARGE_INTEGER Timeout
68 PLARGE_INTEGER Timeout,
76 PLARGE_INTEGER Timeout,
lmdfs.h 104 ULONG Timeout;
115 ULONG Timeout;
126 ULONG Timeout;
137 ULONG Timeout;
165 ULONG Timeout;
180 ULONG Timeout;
212 ULONG Timeout;
225 ULONG Timeout;
244 ULONG Timeout;
304 NET_API_STATUS WINAPI NetDfsGetDcAddress(LPWSTR ServerName,LPWSTR *DcIpAddress,BOOLEAN *IsRoot,ULONG *Timeout);
    [all...]
  /frameworks/base/libs/common_time/
utils.h 29 class Timeout {
31 Timeout() : mSystemEndTime(0) { }
33 // Set a timeout which should occur msec milliseconds from now.
34 // Negative values will cancel any current timeout;
37 // Return the number of milliseconds until the timeout occurs, or -1 if
38 // no timeout is scheduled.
43 // The systemTime() at which the timeout will be complete, or 0 if no
44 // timeout is currently scheduled.
  /external/nist-sip/java/gov/nist/javax/sip/
ClientTransactionExt.java 8 import javax.sip.Timeout;
16 * listener will get a Timeout.RETRANSMIT event on each retransmission.
25 * Send a transaction timeout event to the application if Tx is still in Calling state in the
  /frameworks/base/core/java/android/text/method/
MultiTapKeyListener.java 123 new Timeout(content); // for its side effects
131 new Timeout(content); // for its side effects
147 new Timeout(content); // for its side effects
213 new Timeout(content); // for its side effects
215 // Set up the callback so we can remove the timeout if the
243 Timeout[] timeout = buf.getSpans(0, buf.length(), Timeout.class); local
245 for (int i = 0; i < timeout.length; i++) {
246 Timeout t = timeout[i]
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
winping.h 68 DWORD Timeout);
82 DWORD Timeout
  /external/chromium_org/third_party/webrtc/base/
winping.h 51 DWORD Timeout);
65 DWORD Timeout
  /external/llvm/tools/bugpoint/
ToolRunner.h 69 unsigned Timeout = 0,
119 unsigned Timeout = 0, unsigned MemoryLimit = 0) {}
127 unsigned Timeout = 0,
147 unsigned Timeout = 0,
174 unsigned Timeout = 0, unsigned MemoryLimit = 0) override;
185 unsigned Timeout = 0,
194 unsigned Timeout = 0,
ToolRunner.cpp 134 unsigned Timeout = 0,
152 ErrorFilename.str(), Timeout, MemoryLimit);
190 unsigned Timeout = 0,
202 unsigned Timeout,
232 Timeout, MemoryLimit, Error);
300 unsigned Timeout = 0,
312 unsigned Timeout = 0,
322 unsigned Timeout,
339 Timeout, MemoryLimit, Error))
341 Timeout, MemoryLimit)
    [all...]
  /external/chromium_org/ash/display/
resolution_notification_controller.h 28 // also manages the timeout in case the new resolution is unusable.
40 // In that case, the timeout has to be set since the user cannot make any
63 FRIEND_TEST_ALL_PREFIXES(ResolutionNotificationControllerTest, Timeout);
78 // Called every second for timeout.
  /external/chromium_org/chrome/browser/sync/glue/
browser_thread_model_worker_unittest.cc 52 &SyncBrowserThreadModelWorkerTest::Timeout);
68 void Timeout() {
  /external/chromium_org/tools/python/google/httpd_config/
httpd2_linux.conf 10 # Timeout: The number of seconds before receives and sends time out.
12 Timeout 300

Completed in 1103 milliseconds

1 2 3 4 5 6 7