HomeSort by relevance Sort by last modified time
    Searched defs:timeoutMs (Results 1 - 25 of 331) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/common/device-side/util/src/com/android/compatibility/common/util/
PollingCheck.java 31 public PollingCheck(long timeoutMs) {
32 mTimeoutMs = timeoutMs;
42 long timeoutMs = mTimeoutMs;
43 while (timeoutMs > 0) {
54 timeoutMs -= TIME_SLICE;
60 public static void check(CharSequence message, long timeoutMs, Callable<Boolean> condition)
62 while (timeoutMs > 0) {
68 timeoutMs -= TIME_SLICE;
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
StateWaiter.java 91 * @param timeoutMs how long to wait in milliseconds
97 public void waitForState(int state, long timeoutMs) {
100 waitForAnyOfStates(Arrays.asList(stateArray), timeoutMs);
112 * @param timeoutMs how long to wait in milliseconds
120 public int waitForAnyOfStates(Collection<Integer> states, final long timeoutMs) {
136 long timeoutLeft = timeoutMs;
160 s.append(timeoutMs);
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingSessionCallback.java 134 * @param timeoutMs how many milliseconds to wait for
137 * @throws TimeoutRuntimeException if waiting for more than {@long timeoutMs}
139 public CameraCaptureSession waitAndGetSession(long timeoutMs) {
141 return mSessionFuture.get(timeoutMs, TimeUnit.MILLISECONDS);
144 String.format("Failed to get session after %s milliseconds", timeoutMs), e);
220 * @param timeoutMs how many milliseconds to wait for
222 * @throws TimeoutRuntimeException if waiting for more than {@long timeoutMs}
225 CameraCaptureSession session, Surface surface, long timeoutMs) {
232 long waitTimeRemaining = timeoutMs;
235 mPreparedSurfaces.wait(timeoutMs);
    [all...]
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
HttpClientStack.java 82 int timeoutMs = request.getTimeoutMs();
86 HttpConnectionParams.setSoTimeout(httpParams, timeoutMs);
HurlStack.java 188 int timeoutMs = request.getTimeoutMs();
189 connection.setConnectTimeout(timeoutMs);
190 connection.setReadTimeout(timeoutMs);
  /system/media/audio_utils/
echo_reference.c 332 uint32_t timeoutMs = (uint32_t)((1000 * buffer->frame_count) / er->rd_sampling_rate / 2);
339 ts.tv_sec += timeoutMs/1000;
340 ts.tv_nsec += (timeoutMs%1000) * 1000000;
355 timeoutMs, er->frames_in, buffer->frame_count);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
TransitionImageAnimation.java 130 public TransitionImageAnimation timeoutMs(long timeoutMs) {
131 mTransitionTimeoutMs = timeoutMs;
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
AbstractRestrictBackgroundNetworkTestCase.java 152 protected String sendOrderedBroadcast(Intent intent, int timeoutMs) throws Exception {
168 final String resultData = result.poll(timeoutMs, TimeUnit.MILLISECONDS);
169 Log.d(TAG, "Ordered broadcast response after " + timeoutMs + "ms: " + resultData );
303 int timeoutMs = 500;
317 + "Sleeping " + timeoutMs + "ms before trying again");
318 SystemClock.sleep(timeoutMs);
320 timeoutMs = Math.min(timeoutMs*2, NETWORK_TIMEOUT_MS);
    [all...]
  /cts/tests/tests/midi/src/android/midi/cts/
MidiEchoTest.java 128 * @param timeoutMs
131 public synchronized void waitForMessages(int count, int timeoutMs)
133 long endTimeMs = System.currentTimeMillis() + timeoutMs + 1;
134 long timeToWait = timeoutMs + 1;
351 final int timeoutMs = 20;
353 receiver.waitForMessages(numMessages, timeoutMs);
393 final int timeoutMs = 100;
395 receiver.waitForMessages(numMessages, timeoutMs);
455 final int timeoutMs = 500;
458 receiver.waitForMessages(messageReceivedIndex + 1, timeoutMs);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 189 public RequestThrottledException(int timeoutMs) {
190 mTimeoutMs = timeoutMs;
    [all...]
  /developers/build/prebuilts/androidtv/leanback/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Styled/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActiveNotifications/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActivityInstrumentation/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AgendaData/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AlwaysOn/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AppRestrictionEnforcer/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AppRestrictionSchema/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AppRestrictions/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AppUsageStatistics/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/gradle/wrapper/
gradle-wrapper.jar 

Completed in 589 milliseconds

1 2 3 4 5 6 7 8 91011>>