/external/webkit/LayoutTests/fast/dom/Geolocation/ |
timeout-zero.html | 10 <script src="script-tests/timeout-zero.js"></script>
|
timeout.html | 10 <script src="script-tests/timeout.js"></script>
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
MessageSender.h | 57 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, double timeout = Connection::NoTimeout) 59 return sendSync(message, reply, static_cast<T*>(this)->destinationID(), timeout); 62 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout = Connection::NoTimeout) 67 return connection->sendSync(message, reply, destinationID, timeout);
|
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...] |
/frameworks/base/voip/java/android/net/sip/ |
ISipSession.aidl | 112 * @param timeout the session will be timed out if the call is not 113 * established within {@code timeout} seconds 116 void makeCall(in SipProfile callee, String sessionDescription, int timeout); 124 * @param timeout the session will be timed out if the call is not 125 * established within {@code timeout} seconds 127 void answerCall(String sessionDescription, int timeout); 144 * @param timeout the session will be timed out if the call is not 145 * established within {@code timeout} seconds 147 void changeCall(String sessionDescription, int timeout);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/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;
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
AdbHelper.java | 69 * @throws TimeoutException in case of timeout on the connection. 116 * @throws TimeoutException in case of timeout on the connection. 207 * @throws TimeoutException in case of timeout on the connection. 264 * @throws TimeoutException in case of timeout on the connection. 351 * @throws TimeoutException in case of timeout on the connection when sending the command. 414 // reset timeout 439 * @throws TimeoutException in case of timeout on the connection. 455 * @throws TimeoutException in case of timeout on the connection. 516 * @throws TimeoutException in case of timeout on the connection. 552 * @throws TimeoutException in case of timeout on the connection [all...] |
/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/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/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...] |
/external/bluetooth/glib/gio/ |
gfilemonitor.c | 83 GSource *timeout; member in struct:_GFileMonitorPrivate 164 if (monitor->priv->timeout) 166 g_source_destroy (monitor->priv->timeout); 167 g_source_unref (monitor->priv->timeout); 493 /* Set a timeout at 2*rate limit so that we can clear out the change from the hash eventualy */ 554 /* Remove old timeout */ 555 if (monitor->priv->timeout) 557 g_source_destroy (monitor->priv->timeout); 558 g_source_unref (monitor->priv->timeout); 559 monitor->priv->timeout = NULL [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
TimeUnit.java | 23 * the following code will timeout in 50 milliseconds if the {@link 29 * 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/host/src/com/android/cts/ |
ProgressObserver.java | 35 ProgressPrinter.DELAY, ProgressPrinter.TIMEOUT); 54 public final static int TIMEOUT = 2000;
|
/external/bluetooth/bluez/test/ |
gaptest.c | 229 "\t-T <timeout> Set timeout\n" 242 int opt, timeout = -1, powered = -1, discoverable = -1, pairable = -1; local 247 timeout = atoi(optarg); 294 if (timeout >= 0) 296 DBUS_TYPE_UINT32, &timeout); 303 if (timeout >= 0) 305 DBUS_TYPE_UINT32, &timeout);
|
/external/guava/src/com/google/common/util/concurrent/ |
UninterruptibleFuture.java | 27 * result is available or the timeout elapses, and only then re-interrupts the 37 /*@Override*/ V get(long timeout, TimeUnit unit)
|
/external/kernel-headers/original/linux/ |
completion.h | 48 unsigned long timeout)); 50 struct completion *x, unsigned long timeout));
|
/external/llvm/cmake/modules/ |
VersionFromVCS.cmake | 26 TIMEOUT 5 35 TIMEOUT 5
|
/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/core/java/android/hardware/usb/ |
UsbDeviceConnection.java | 119 * @param timeout in milliseconds 124 int index, byte[] buffer, int length, int timeout) { 125 return native_control_request(requestType, request, value, index, buffer, length, timeout); 135 * @param timeout in milliseconds 139 public int bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int length, int timeout) { 140 return native_bulk_request(endpoint.getAddress(), buffer, length, timeout); 178 int index, byte[] buffer, int length, int timeout); 179 private native int native_bulk_request(int endpoint, byte[] buffer, int length, int timeout);
|
/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");
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
AbstractSessionContext.java | 42 volatile int timeout; field in class:AbstractSessionContext 62 * @param timeout for cache entries 64 AbstractSessionContext(int maximumSize, int timeout) { 66 this.timeout = timeout; 114 return timeout; 140 timeout = seconds; 147 // timeout as part of their validity condition.
|
/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>
|