/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | Configurator.java | 35 // This short timeout to make sure we get the very last in cases where the above isn't true. 62 * Sets the timeout for waiting for the user interface to go into an idle 68 * timeout elapses (whichever occurs first), the object will start to wait 72 * @param timeout Timeout value in milliseconds 76 public Configurator setWaitForIdleTimeout(long timeout) { argument 77 mWaitForIdleTimeout = timeout; 82 * Gets the current timeout used for waiting for the user interface to go 88 * timeout elapses (whichever occurs first), the object will start to wait 92 * @return Current timeout value in milliseconds 100 * Sets the timeout fo 112 setWaitForSelectorTimeout(long timeout) argument 146 setScrollAcknowledgmentTimeout(long timeout) argument 180 setActionAcknowledgmentTimeout(long timeout) argument [all...] |
/frameworks/base/core/java/android/os/ |
H A D | ConditionVariable.java | 107 * timeout milliseconds have passed. 112 * @param timeout the minimum time to wait in milliseconds. 115 * because of the timeout. 117 public boolean block(long timeout) argument 122 if (timeout != 0) { 125 long end = now + timeout;
|
/frameworks/base/libs/hwui/ |
H A D | Fence.h | 35 * Default timeout in nano-seconds for wait() 64 * <timeout> nanoseconds have passed. 67 * a timeout or an error occurred. 69 bool wait(EGLTimeKHR timeout = kDefaultTimeout) { 71 EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, timeout); 97 AutoFence(EGLTimeKHR timeout = Fence::kDefaultTimeout): mTimeout(timeout) {
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
H A D | 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);
|
/frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/ |
H A D | IdlingPolicies.java | 60 * @param timeout the timeout before an AppNotIdleException is created. 61 * @param unit the unit of the timeout value. 63 public static void setMasterPolicyTimeout(long timeout, TimeUnit unit) { argument 64 checkArgument(timeout > 0); 67 .withIdlingTimeout(timeout) 74 * timeout. 76 * @param timeout the timeout before an IdlingResourceTimeoutException is created. 77 * @param unit the unit of the timeout valu 79 setIdlingResourceTimeout(long timeout, TimeUnit unit) argument [all...] |
/frameworks/base/core/java/android/hardware/usb/ |
H A D | UsbDeviceConnection.java | 142 * @param timeout in milliseconds 147 int index, byte[] buffer, int length, int timeout) { 148 return controlTransfer(requestType, request, value, index, buffer, 0, length, timeout); 167 * @param timeout in milliseconds 172 byte[] buffer, int offset, int length, int timeout) { 175 buffer, offset, length, timeout); 190 * @param timeout in milliseconds 195 byte[] buffer, int length, int timeout) { 196 return bulkTransfer(endpoint, buffer, 0, length, timeout); 207 * @param timeout i 146 controlTransfer(int requestType, int request, int value, int index, byte[] buffer, int length, int timeout) argument 171 controlTransfer(int requestType, int request, int value, int index, byte[] buffer, int offset, int length, int timeout) argument 194 bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int length, int timeout) argument 211 bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int offset, int length, int timeout) argument 260 native_control_request(int requestType, int request, int value, int index, byte[] buffer, int offset, int length, int timeout) argument 262 native_bulk_request(int endpoint, byte[] buffer, int offset, int length, int timeout) argument [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
H A D | DumpUtils.java | 35 * trying to acquire, we use a short timeout to avoid deadlocks. The process 38 public static void dumpAsync(Handler handler, final Dump dump, PrintWriter pw, long timeout) { argument 47 }, timeout)) {
|
/frameworks/base/core/java/android/accounts/ |
H A D | AccountManagerFuture.java | 101 * will be thrown rather than the call returning normally. If a timeout is specified then 103 * @param timeout the maximum time to wait 104 * @param unit the time unit of the timeout argument. This must not be null. 113 V getResult(long timeout, TimeUnit unit) argument
|
/frameworks/rs/ |
H A D | rsSignal.h | 36 // false for timeout 37 bool wait(uint64_t timeout = 0);
|
H A D | rsSignal.cpp | 72 bool Signal::wait(uint64_t timeout) { argument 83 if (!timeout) { 87 status = pthread_cond_timeout_np(&mCondition, &mMutex, timeout / 1000000);
|
/frameworks/base/core/java/android/service/fingerprint/ |
H A D | IFingerprintService.aidl | 27 void enroll(IBinder token, long timeout, int userId);
|
/frameworks/base/core/tests/coretests/src/android/os/ |
H A D | HandlerTester.java | 30 public void doTest(long timeout) { argument 35 wait(timeout);
|
H A D | TestHandlerThread.java | 35 public void doTest(long timeout) { argument 40 long endTime = now + timeout;
|
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/ |
H A D | AwaitableCompletionListener.java | 47 public void awaitOneCallback(long timeout, TimeUnit unit) throws InterruptedException, argument 49 if (mQueue.poll(timeout, unit) == null) {
|
H A D | AwaitableErrorListener.java | 55 public void awaitOneCallback(long timeout, TimeUnit unit) throws InterruptedException, argument 57 if (mQueue.poll(timeout, unit) == null) {
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
H A D | ConnectivityManagerTestBase.java | 159 protected boolean waitForNetworkState(int networkType, State expectedState, long timeout) { argument 167 if ((SystemClock.uptimeMillis() - startTime) > timeout) { 168 logv("waitForNetworkState timeout: %s", ni); 178 protected boolean waitForWifiState(int expectedState, long timeout) { argument 186 if ((SystemClock.uptimeMillis() - startTime) > timeout) { 187 logv("waitForWifiState timeout: expected=%d, actual=%d", expectedState, state); 197 protected boolean waitForWifiApState(int expectedState, long timeout) { argument 205 if ((SystemClock.uptimeMillis() - startTime) > timeout) { 206 logv(String.format("waitForWifiAPState timeout: expected=%d, actual=%d", 218 * @param timeout i 222 waitForTetherStateChange(long timeout) argument 420 waitForActiveNetworkConnection(long timeout) argument 436 waitUntilNoActiveNetworkConnection(long timeout) argument [all...] |
/frameworks/base/core/java/android/util/ |
H A D | NtpTrustedTime.java | 46 private NtpTrustedTime(String server, long timeout) { argument 49 mTimeout = timeout; 64 final long timeout = Settings.Global.getLong( 68 sSingleton = new NtpTrustedTime(server, timeout);
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
H A D | 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) { argument 45 return (deltaTime >= timeout); 26 eventsWithinTimeAndDistanceSlop(MotionEvent first, MotionEvent second, int timeout, int distance, int actionIndex) argument
|
/frameworks/base/core/java/android/bluetooth/ |
H A D | BluetoothServerSocket.java | 113 * timeout 120 * Block until a connection is established, with timeout. 127 * timeout 129 public BluetoothSocket accept(int timeout) throws IOException { argument 130 return mSocket.accept(timeout);
|
/frameworks/base/core/java/android/nfc/ |
H A D | INfcTag.aidl | 43 int setTimeout(int technology, int timeout);
|
/frameworks/base/core/java/android/nfc/tech/ |
H A D | IsoDep.java | 81 * Set the timeout of {@link #transceive} in milliseconds. 82 * <p>The timeout only applies to ISO-DEP {@link #transceive}, and is 84 * <p>Setting a longer timeout may be useful when performing 90 * @param timeout timeout value in milliseconds 92 public void setTimeout(int timeout) { argument 94 int err = mTag.getTagService().setTimeout(TagTechnology.ISO_DEP, timeout); 96 throw new IllegalArgumentException("The supplied timeout is not valid"); 104 * Get the current timeout for {@link #transceive} in milliseconds. 108 * @return timeout valu [all...] |
H A D | NfcA.java | 132 * Set the {@link #transceive} timeout in milliseconds. 134 * <p>The timeout only applies to {@link #transceive} on this object, 137 * <p>Setting a longer timeout may be useful when performing 143 * @param timeout timeout value in milliseconds 145 public void setTimeout(int timeout) { argument 147 int err = mTag.getTagService().setTimeout(TagTechnology.NFC_A, timeout); 149 throw new IllegalArgumentException("The supplied timeout is not valid"); 157 * Get the current {@link #transceive} timeout in milliseconds. 161 * @return timeout valu [all...] |
H A D | NfcF.java | 131 * Set the {@link #transceive} timeout in milliseconds. 133 * <p>The timeout only applies to {@link #transceive} on this object, 136 * <p>Setting a longer timeout may be useful when performing 142 * @param timeout timeout value in milliseconds 144 public void setTimeout(int timeout) { argument 146 int err = mTag.getTagService().setTimeout(TagTechnology.NFC_F, timeout); 148 throw new IllegalArgumentException("The supplied timeout is not valid"); 156 * Get the current {@link #transceive} timeout in milliseconds. 160 * @return timeout valu [all...] |
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
H A D | SipWakeLock.java | 42 synchronized void acquire(long timeout) { argument 48 mTimerWakeLock.acquire(timeout);
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/ |
H A D | BlockingStateCallback.java | 141 * @param timeout how long to wait in milliseconds 143 * @throws TimeoutRuntimeException if the desired state is not observed before timeout. 145 public void waitForState(int state, long timeout) { argument 148 waitForAnyOfStates(Arrays.asList(stateArray), timeout); 158 * @param timeout how long to wait in milliseconds 161 * @throws TimeoutRuntimeException if none of the states is observed before timeout. 164 public int waitForAnyOfStates(Collection<Integer> states, final long timeout) { argument 176 long timeoutLeft = timeout; 199 s.append(timeout);
|