/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
OfferRequestProvider.java | 50 int timeout = -1;
local 69 if ("timeout".equals(elemName)) {
70 timeout = Integer.parseInt(parser.nextText());
104 new OfferRequestPacket(userJID, userID, timeout, metaData, sessionID, content);
112 private int timeout;
field in class:OfferRequestProvider.OfferRequestPacket 119 public OfferRequestPacket(String userJID, String userID, int timeout, Map<String, List<String>> metaData,
124 this.timeout = timeout;
163 * @return the offer timeout (in seconds).
166 return this.timeout;
[all...] |
/bionic/libc/include/sys/ |
atomics.h | 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
|
/development/host/windows/usb/winusb/ |
adb_winusb_endpoint_object.h | 89 @param[in] time_out A timeout (in milliseconds) required for this I/O to
91 timeout set for this I/O.
108 @param[in] time_out A timeout (in milliseconds) required for this I/O to
110 timeout set for this I/O.
125 /** \brief Sets read / write operation timeout.
127 @param[in] timeout Timeout value in milliseconds to use for current read
129 not timeout at all. Note that timeout that is set with this method is
134 WinUsb framework will accept a timeout parameter in WinUsb_Read/Write [all...] |
/development/ndk/platforms/android-3/include/sys/ |
atomics.h | 79 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
|
epoll.h | 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
/external/chromium/third_party/libevent/ |
evrpc-internal.h | 81 int timeout; member in struct:evrpc_pool
|
/external/chromium_org/chrome/browser/usb/ |
usb_device_handle.h | 90 const unsigned int timeout, 97 const unsigned int timeout, 104 const unsigned int timeout, 113 const unsigned int timeout,
|
/external/chromium_org/chrome/service/cloud_print/ |
connector_settings.cc | 76 int timeout = prefs->GetInt( local 78 SetXmppPingTimeoutSec(timeout); 117 void ConnectorSettings::SetXmppPingTimeoutSec(int timeout) { 118 xmpp_ping_timeout_sec_ = timeout; 121 "CP_CONNECTOR: XMPP ping timeout is less then minimal value";
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
devtools_client.h | 46 // If the condition is not met within |timeout|ms, kTimeout status 49 const base::TimeDelta& timeout) = 0;
|
/external/chromium_org/third_party/libevent/ |
evrpc-internal.h | 81 int timeout; member in struct:evrpc_pool
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/ |
egl_g3d_sync.h | 43 EGLint flags, EGLTimeKHR timeout);
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
util.py | 31 timeout, poll_interval=0.1, 37 res = condition(max((start_time + timeout) - time.time(), 0.0)) 42 if time.time() - start_time > timeout: 51 (timeout, condition_string))
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
CheckedFuture.java | 69 * timeout this method throws a normal {@link TimeoutException}. 75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X;
|
/external/iproute2/include/linux/hdlc/ |
ioctl.h | 76 unsigned int timeout; member in struct:__anon21036
|
/external/libusb/libusb/ |
libusb.h | 729 /** Timeout for this transfer in millseconds. A value of 0 indicates no 730 * timeout. */ 731 unsigned int timeout; member in struct:libusb_transfer 921 * \param timeout timeout for the transfer in milliseconds 926 unsigned int timeout) 932 transfer->timeout = timeout; 952 * \param timeout timeout for the transfer in millisecond [all...] |
/external/mesa3d/src/gallium/state_trackers/egl/common/ |
egl_g3d_sync.h | 43 EGLint flags, EGLTimeKHR timeout);
|
/external/openssh/openbsd-compat/ |
bsd-poll.c | 40 poll(struct pollfd *fds, nfds_t nfds, int timeout) 81 /* poll timeout is msec, select is timeval (sec + usec) */ 82 if (timeout >= 0) { 83 tv.tv_sec = timeout / 1000; 84 tv.tv_usec = (timeout % 1000) * 1000;
|
/external/qemu/ |
async.c | 197 void qemu_bh_update_timeout(int *timeout) 206 *timeout = MIN(10, *timeout); 210 *timeout = 0;
|
qemu-os-win32.h | 46 void os_host_main_loop_wait(int *timeout);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/generic/ |
SDL_syssem.c | 50 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 146 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 155 /* A timeout of 0 is an easy case */ 156 if ( timeout == 0 ) { 165 sem->count_lock, timeout);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/os2/ |
SDL_syssem.c | 82 DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 91 if ( timeout == SDL_MUTEX_MAXWAIT ) { 111 if ( timeout == 0 ) 147 ulrc = DosWaitEventSem(sem->changed, timeout);
|
/frameworks/base/core/java/android/util/ |
NtpTrustedTime.java | 46 private NtpTrustedTime(String server, long timeout) { 49 mTimeout = timeout; 64 final long timeout = Settings.Global.getLong( local 68 sSingleton = new NtpTrustedTime(server, timeout);
|
/frameworks/base/services/java/com/android/server/accessibility/ |
GestureUtils.java | 27 int timeout, int distance, int actionIndex) { 28 if (isTimedOut(first, second, timeout)) { 43 public static boolean isTimedOut(MotionEvent firstUp, MotionEvent secondUp, int timeout) { 45 return (deltaTime >= timeout);
|
/libcore/luni/src/main/java/java/nio/channels/ |
Selector.java | 113 * the calling thread is interrupted or the specified {@code timeout} 116 * @param timeout 117 * the non-negative timeout in millisecond; 0 will block forever 123 * if the given timeout argument is less than zero. 127 public abstract int select(long timeout) throws IOException;
|
/libcore/luni/src/main/java/java/util/concurrent/ |
Semaphore.java | 372 * @param timeout the maximum time to wait for a permit 373 * @param unit the time unit of the {@code timeout} argument 378 public boolean tryAcquire(long timeout, TimeUnit unit) 380 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout)); 543 * @param timeout the maximum time to wait for the permits 544 * @param unit the time unit of the {@code timeout} argument 550 public boolean tryAcquire(int permits, long timeout, TimeUnit unit) 553 return sync.tryAcquireSharedNanos(permits, unit.toNanos(timeout));
|