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

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
poll.h 51 FDS. If TIMEOUT is nonzero and not -1, allow TIMEOUT milliseconds for
52 an event to occur; if TIMEOUT is -1, block until an event occurs.
63 the timeout value is specified using a TIMESPEC object.
  /system/core/init/
README.BOOTCHART 10 On the emulator, use the new -bootchart <timeout> option to boot with bootcharting
11 activated for <timeout> seconds.
16 adb shell 'echo $TIMEOUT > /data/bootchart-start'
18 Where the value of $TIMEOUT corresponds to the wanted bootcharted period in seconds;
  /external/iptables/extensions/
libxt_SET.c 262 " --add-set name flags [--exist] [--timeout n]\n"
273 {.name = "timeout", .has_arg = true, .val = '4'},
289 "Option `--timeout' can be used with `--add-set' only");
302 info->timeout = UINT32_MAX;
311 unsigned int timeout; local
327 if (!xtables_strtoui(optarg, NULL, &timeout, 0, UINT32_MAX - 1))
329 "Invalid value for option --timeout "
331 myinfo->timeout = timeout;
347 if (info->timeout != UINT32_MAX
    [all...]
libxt_IDLETIMER.man 3 a rule is set with a new label. The rules also take a timeout value (in
15 \fB\-\-timeout\fP \fIamount\fP
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.h 143 template<typename T> bool sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout = DefaultTimeout);
144 template<typename T> bool waitForAndDispatchImmediately(uint64_t destinationID, double timeout);
153 template<typename E, typename T, typename U> bool deprecatedSendSync(E messageID, uint64_t destinationID, const T& arguments, const U& reply, double timeout = NoTimeout);
154 template<typename E> PassOwnPtr<ArgumentDecoder> deprecatedWaitFor(E messageID, uint64_t destinationID, double timeout);
198 PassOwnPtr<ArgumentDecoder> waitForMessage(MessageID, uint64_t destinationID, double timeout);
200 PassOwnPtr<ArgumentDecoder> sendSyncMessage(MessageID, uint64_t syncRequestID, PassOwnPtr<ArgumentEncoder>, double timeout);
201 PassOwnPtr<ArgumentDecoder> waitForSyncReply(uint64_t syncRequestID, double timeout);
343 template<typename T> bool Connection::sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout)
352 OwnPtr<ArgumentDecoder> replyDecoder = sendSyncMessage(MessageID(T::messageID), syncRequestID, argumentEncoder.release(), timeout);
360 template<typename T> bool Connection::waitForAndDispatchImmediately(uint64_t destinationID, double timeout)
    [all...]
  /external/iptables/libipq/
libipq.c 84 { IPQ_ERR_TIMEOUT, "Timeout"},
95 int timeout);
125 int timeout)
137 if (timeout != 0) {
142 if (timeout < 0) {
143 /* non-block non-timeout */
147 tv.tv_sec = timeout / 1000000;
148 tv.tv_usec = timeout % 1000000;
288 * timeout is in microseconds (1 second is 1000000 (1 million) microseconds)
292 unsigned char *buf, size_t len, int timeout)
    [all...]
  /external/mtpd/
mtpd.c 158 int timeout; local
175 timeout = initialize(argc, argv);
191 while (timeout >= 0) {
192 if (poll(pollfds, 3, timeout ? timeout : -1) == -1 && errno != EINTR) {
202 timeout = pollfds[0].revents ?
203 the_protocol->process() : the_protocol->timeout();
208 if (!timeout) {
209 timeout = 5000;
214 if (timeout < 0)
    [all...]
  /external/qemu/android/
sync-utils.h 38 * timeout - Time out (in milliseconds) to wait for the connection to occur.
42 SyncSocket* syncsocket_connect(int fd, SockAddress* sockaddr, int timeout);
144 * timeout - Timeout (in milliseconds) to complete the reading.
148 ssize_t syncsocket_read(SyncSocket* ssocket, void* buf, size_t size, int timeout);
179 * timeout - Timeout (in milliseconds) to complete the writing.
186 int timeout);
212 * timeout - Timeout (in milliseconds) to complete the reading
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 23 * the following code will timeout in 50 milliseconds if the {@link
30 * while this code will timeout in 50 seconds:
35 * Note however, that there is no guarantee that a particular timeout
267 * This is a convenience method that converts timeout arguments
275 * public synchronized Object poll(long timeout, TimeUnit unit)
278 * unit.timedWait(this, timeout);
284 * @param timeout the maximum time to wait. If less than
288 public void timedWait(Object obj, long timeout)
290 if (timeout > 0) {
291 long ms = toMillis(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-x86/
epoll.c 31 int WRAP(epoll_wait)(int epfd, struct epoll_event_portable *events, int max, int timeout)
34 int ret = REAL(epoll_wait)(epfd, &x86_epoll_event, max, timeout);
  /external/junit/src/org/junit/internal/runners/statements/
FailOnTimeout.java 13 public FailOnTimeout(Statement originalStatement, long timeout) {
15 fTimeout= timeout;
  /external/kernel-headers/original/linux/
completion.h 48 unsigned long timeout));
50 struct completion *x, unsigned long timeout));
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.h 74 ** millisec: Timeout in milliseconds.
76 ** Returns: True if wait is successful; false if timeout occurs.
  /external/v8/test/cctest/
test-lock.cc 47 // Semaphore not signalled - timeout.
55 // Semaphore signalled - no timeout.
  /external/webkit/Source/WebCore/manual-tests/wml/
timer.wml 14 When the timer is timeout(after 5s), will jump to card two.
27 When the timer is timeout(after 3s), will jump back to card one.
  /frameworks/base/services/java/com/android/server/am/
TransferPipe.java 79 String prefix, String[] args, long timeout) throws IOException, RemoteException {
92 tp.go(out, timeout);
104 String[] args, long timeout) throws IOException, RemoteException {
117 tp.go(out, timeout);
127 void go(FileDescriptor out, long timeout) throws IOException {
131 mEndTime = SystemClock.uptimeMillis() + timeout;
144 if (DEBUG) Slog.i(TAG, "TIMEOUT!");
146 throw new IOException("Timeout");
  /frameworks/volley/src/com/android/volley/
RetryPolicy.java 25 * Returns the current timeout (used for logging).
35 * Prepares for the next retry by applying a backoff to the timeout.
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AbstractSessionContext.java 42 volatile int timeout; field in class:AbstractSessionContext
67 * @param timeout for cache entries
69 AbstractSessionContext(int maximumSize, int timeout) {
71 this.timeout = timeout;
119 return timeout;
145 timeout = seconds;
152 // timeout as part of their validity condition.
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.overview/
future_status.pass.cpp 15 // timeout,
24 static_assert(static_cast<int>(std::future_status::timeout) == 1, "");
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/
cv_status.pass.cpp 12 // enum class cv_status { no_timeout, timeout };
20 assert(std::cv_status::timeout == 1);
  /packages/apps/Bluetooth/res/values-da/
strings_pbap.xml 6 <string name="pbap_acceptance_timeout_message" msgid="1107401415099814293">"Der var timeout ved forbindelsen med %1$s"</string>
7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"Der var timeout i indgangssessionnøgle med %1$s"</string>
  /packages/apps/Bluetooth/res/values-it/
strings_pbap.xml 6 <string name="pbap_acceptance_timeout_message" msgid="1107401415099814293">"Timeout dell\'accettazione della connessione con %1$s"</string>
7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"Timeout dell\'ingresso della chiave di sessione con %1$s"</string>
  /packages/apps/Email/tests/src/com/android/email/
ThrottleTest.java 47 * Gets two events. They're far apart enough that the timeout won't be extended.
91 * Here, we check if the timeout is extended, and the callback get called less than
105 // Timeout should be extended
117 // First call -- won't change the timeout
121 // Call again in 10 ms -- will extend timeout.
126 // Call again in TIMEOUT_EXTEND_INTERAVL ms -- will extend timeout.
131 // Again -- timeout reaches max.
136 // Call in TIMEOUT_EXTEND_INTERAVL + 1 ms -- timeout will get reset.
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PreparePageFadeoutTexture.java 11 private static final long TIMEOUT = 200;
37 } else if (mResultReady.block(TIMEOUT)) {

Completed in 1647 milliseconds

1 2 3 4 5 6 78 91011>>