Searched refs:delay (Results 101 - 120 of 120) sorted by relevance

12345

/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayPowerController.java98 // Proximity sensor debounce delay in milliseconds for positive or negative transitions.
630 // without any delay.
781 long delay = SystemClock.elapsedRealtime() - mScreenOnBlockStartRealTime;
782 Slog.i(TAG, "Unblocked screen on after " + delay + " ms");
991 // stable for the entire debounce delay. We hold a wake lock while
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DActivityTestMain.java581 void scheduleSpamAlarm(long delay) { argument
584 mHandler.sendMessageDelayed(msg, delay);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java235 /** The minimum delay in ms between reports of notification visibility. */
239 * The delay to reset the hint text when the hint animation is finished running.
1152 // Decrease the delay for every row we animate to give the sense of
3679 public void postStartActivityDismissingKeyguard(final Intent intent, int delay) { argument
3685 }, delay);
3996 long delay = calculateGoingToFullShadeDelay();
3997 mNotificationPanel.animateToFullShade(delay);
4014 }, delay + StackStateAnimator.ANIMATION_DURATION_GO_TO_FULL_SHADE);
4063 * @param delay the precalculated animation delay i
4066 setKeyguardFadingAway(long startTime, long delay, long fadeoutDuration) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioManager.java700 * If the user hits another key within the play sound delay, then
708 * The user has hit another key during the delay (e.g., 300ms)
3263 * @return a delay in ms that the caller should wait before broadcasting
3270 int delay = 0;
3272 delay = service.setBluetoothA2dpDeviceConnectionState(device, state, profile);
3276 return delay;
H A DCea708CaptionRenderer.java179 * <li>Job commands: The job commands make a delay and recover from the delay. (DLY, DLC, RST)</li>
1450 delay((int) event.obj);
1594 private void delay(int tenthsOfSeconds) { method in class:Cea708CCWidget.CCHandler
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java1396 // Retrieve the suggested retry delay from the modem and save it.
1398 // suggest a positive delay value (in milliseconds). Otherwise we'll get
1400 long delay = getSuggestedRetryDelay(ar);
1401 cp.mApnContext.setModemSuggestedDelay(delay);
1404 + " delay=" + delay
1831 * Using the result of the SETUP_DATA_CALL determine the retry delay.
1834 * @return NO_SUGGESTED_RETRY_DELAY if no retry is needed otherwise the delay to the
1849 if (DBG) log("No suggested retry delay.");
/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java596 final long delay = (long) (mLongAnimationDuration
600 mHandler.sendMessageDelayed(message, delay);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1133 public void dismissViewAnimated(View child, Runnable endRunnable, int delay, long duration) { argument
1134 mSwipeHelper.dismissChild(child, 0, endRunnable, delay, true, duration,
3227 public void goToFullShade(long delay) { argument
3231 mGoToFullShadeDelay = delay;
3303 long delay = maxLength * StackStateAnimator.ANIMATION_DELAY_PER_ELEMENT_DARK;
3304 fadeAnimator.setStartDelay(delay);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java116 * with JobScheduler with appropriate delay and constraints (according to backoffs and extras).
145 * When retrying a sync for the first time use this delay. After that
525 type.authority, null, 0 /* no delay */, 0 /* no delay */,
872 + ", delay until " + delayUntil
889 + " delay until " + delayUntil
1096 // Subsequent delays are the double of the previous delay.
1100 // The initial delay is the jitterized INITIAL_SYNC_RETRY_TIME_IN_MS.
1105 // Cap the delay.
1205 Slog.v(TAG, "backoff delay
2447 deferSyncH(SyncOperation op, long delay) argument
2461 deferStoppedSyncH(SyncOperation op, long delay) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp1072 int64_t delay = (media_time * samplerate + 500000) / 1000000; local
1073 mLastTrack->meta->setInt32(kKeyEncoderDelay, delay);
2711 int32_t delay, padding; local
2713 " %*x %x %x %*x", &delay, &padding) == 2) {
2717 mLastTrack->meta->setInt32(kKeyEncoderDelay, delay);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.cpp429 extern Bool SetProfile_BufferSize(VideoEncData *video, float delay, Int bInitialized);
628 // not necessary bound = 10; /* 1/17/02 -- For Low delay */
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java2667 // TODO delay the code below here for 100ms or until there is an answer
3021 long delay = r.duration == Toast.LENGTH_LONG ? LONG_DELAY : SHORT_DELAY;
3022 mHandler.sendMessageDelayed(m, delay);
3237 long delay = recon.getDelay(TimeUnit.MILLISECONDS);
3238 sendMessageDelayed(m, delay);
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp3541 nsecs_t delay = mPolicy->interceptKeyBeforeDispatching(commandEntry->inputWindowHandle, local
3546 if (delay < 0) {
3548 } else if (!delay) {
3552 entry->interceptKeyWakeupTime = now() + delay;
H A DEventHub.cpp647 effect.replay.delay = 0;
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java1846 long delay = 1000 * 60; // one minute, in milliseconds
1848 System.currentTimeMillis() + delay, mRunInitIntent);
3392 long delay;
3394 delay = mTransport.requestBackupTime();
3397 delay = 0; // use the scheduler's default
3399 KeyValueBackupJob.schedule(mContext, delay);
9075 long delay = transport.requestBackupTime();
9076 Slog.w(TAG, "Init failed on " + transportName + " resched in " + delay);
9078 System.currentTimeMillis() + delay, mRunInitIntent);
/frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
H A DGridWidgetTest.java83 private void humanDelay(int delay) throws InterruptedException { argument
84 if (HUMAN_DELAY) Thread.sleep(delay);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java5026 // to 2 ticks per second, then there may be up to half a second delay between the next
5362 long delay = (long)(mConfigTickDistance / mFlingVelocity * 1000);
5363 postAtTime(mFlingRunnable, time + delay);
5366 + mFlingVelocity + ", delay=" + delay
H A DView.java11164 // For views inside a scrolling container, delay the pressed feedback for
13292 * animation to fade the scrollbars out after a default delay. If a subclass
13293 * provides animated scrolling, the start delay should equal the duration
13340 * animation to fade the scrollbars out after a fixed delay. If a subclass
13341 * provides animated scrolling, the start delay should equal the duration of
13359 * @param startDelay the delay, in milliseconds, after which the animation
13360 * should start; when the delay is 0, the animation starts
13378 * animation to fade the scrollbars out after a fixed delay. If a subclass
13379 * provides animated scrolling, the start delay should equal the duration of
13398 * @param startDelay the delay, i
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java1407 int delay = ViewConfiguration.getDoubleTapTimeout();
1408 mTextView.postDelayed(mShowFloatingToolbar, delay);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 663 milliseconds

12345