Searched defs:delay (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/cmds/dumpstate/
H A Dutils.c206 int delay = *pattern++; local
207 if (delay) {
208 delay += on_time;
210 tm.tv_sec = delay / 1000;
211 tm.tv_nsec = (delay % 1000) * 1000000;
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java31 * is used by {@link android.view.ViewGroup} to compute the delay by which each
32 * child's animation start must be offset. The delay is computed by using
35 * This standard implementation computes the delay by multiplying a fixed
39 * of computing the delay. For instance, a
41 * delay based on the column and row indices of the child in its parent view
44 * Information used to compute the animation delay of each child are stored
126 * Creates a new layout animation controller with a delay of 50%
136 * Creates a new layout animation controller with the specified delay
140 * @param delay the delay b
142 LayoutAnimationController(Animation animation, float delay) argument
281 setDelay(float delay) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DSensorService.java62 void addSensor(int sensor, int delay) { argument
64 if (mDelay > delay)
65 mDelay = delay;
H A DDeviceStorageMonitorService.java243 private void postCheckMemoryMsg(boolean clearCache, long delay) { argument
248 delay);
H A DHardwareService.java411 private void delay(long duration) { method in class:HardwareService.VibrateThread
445 delay(duration);
452 // duration is saved for delay() at top of loop
H A DWindowManagerService.java3540 // If we are preparing an app transition, then delay changing
6959 // to delay showing the surface until all windows in a token are ready
8988 // delay a bit so we don't interrupt the animation.
10427 void requestAnimationLocked(long delay) { argument
10430 mH.sendMessageDelayed(mH.obtainMessage(H.ANIMATE), delay);
/frameworks/base/cmds/stagefright/
H A Dstagefright.cpp194 int64_t delay = getNowUs() - startTime; local
195 printf("avg. %.2f fps\n", n * 1E6 / delay);
/frameworks/base/camera/libcameraservice/
H A DCameraHardwareStub.cpp168 int delay = (int)(1000000.0f / float(previewFrameRate)); local
188 usleep(delay);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp482 nsecs_t delay = frameDuration - (now - lastFrame); local
/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java161 /** Used to delay the zoom controller dismissal. */
165 * we delay the setVisible(true) call until it is not null.
233 * Sets the delay between zoom callbacks as the user holds a zoom button.
235 * @param speed The delay in milliseconds between zoom callbacks.
438 private void dismissControlsDelayed(int delay) { argument
441 mHandler.sendEmptyMessageDelayed(MSG_DISMISS_ZOOM_CONTROLS, delay);
/frameworks/base/tests/CoreTests/android/core/
H A DSSLSocketTest.java75 * @param delay The delay after each request (in seconds).
80 int delay, int timeout) throws IOException {
161 Thread.sleep(delay * 1000);
182 int delay, int timeout) throws IOException {
184 delay, timeout);
78 fetch(SSLSocketFactory socketFactory, String host, int port, boolean secure, String path, int outerLoop, int innerLoop, int delay, int timeout) argument
180 fetch(String host, int port, boolean secure, String path, int outerLoop, int innerLoop, int delay, int timeout) argument
/frameworks/base/media/java/android/media/
H A DAudioService.java74 /** How long to delay before persisting a change in volume/ringer mode. */
925 int existingMsgPolicy, int arg1, int arg2, Object obj, int delay) {
935 .sendMessageDelayed(handler.obtainMessage(msg, arg1, arg2, obj), delay);
1378 // and persist with no delay as there might be registered observers of the persisted
924 sendMsg(Handler handler, int baseMsg, int streamType, int existingMsgPolicy, int arg1, int arg2, Object obj, int delay) argument
/frameworks/base/core/java/android/content/
H A DSyncManager.java127 * When retrying a sync for the first time use this delay. After that
212 scheduleSync(null /* account */, null /* authority */, new Bundle(), 0 /* delay */,
255 scheduleSync(null, null, null, 0 /* no delay */, onlyThoseWithUnkownSyncableState);
351 scheduleSync(null, type.authority, null, 0 /* no delay */,
454 + ", delay is " + (relativeAlarmTime - SystemClock.elapsedRealtime()));
480 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "handleSyncPollAlarm: delay " + delayMs);
490 new Bundle(), 0 /* no delay */, false /* onlyThoseWithUnkownSyncableState */);
591 * @param delay how many milliseconds in the future to wait before performing this
595 Bundle extras, long delay, boolean onlyThoseWithUnkownSyncableState) {
621 delay
594 scheduleSync(Account requestedAccount, String requestedAuthority, Bundle extras, long delay, boolean onlyThoseWithUnkownSyncableState) argument
982 long delay; field in class:SyncManager.SyncOperation
985 SyncOperation(Account account, int source, String authority, Bundle extras, long delay) argument
1004 setDelay(long delay) argument
[all...]
/frameworks/base/libs/surfaceflinger/
H A DSurfaceFlinger.cpp466 void SurfaceFlinger::signalDelayedEvent(nsecs_t delay) argument
468 mEventQueue.postMessage( new MessageBase(MessageQueue::INVALIDATE), delay);
1108 uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags, nsecs_t delay) argument
1112 if (delay > 0) {
1113 signalDelayedEvent(delay);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateTracker.java122 * within the delay window, we immediately handle the pending
124 * The five second delay is chosen somewhat arbitrarily, but is
138 * to restart scanning. Wait this delay before asking it to start
139 * scanning (in case it forgot). 15 sec is the standard delay between
1039 * supplicant sent us a DISCONNECTED event, we delay
1320 * by a reconnect to the same access point. Therefore, we delay resetting
1619 * @param delay time in milliseconds after which the notification should be made
1622 public void setNotificationVisible(boolean visible, int numNetworks, boolean force, int delay) { argument
1675 mTarget.sendMessageDelayed(message, delay);
1738 * early because there is a delay befor
[all...]
/frameworks/base/core/java/android/view/
H A DViewRoot.java3167 handlerAction.delay = delayMillis;
3194 handler.postDelayed(handlerAction.action, handlerAction.delay);
3203 long delay; field in class:ViewRoot.RunQueue.HandlerAction
3218 result = 31 * result + (int) (delay ^ (delay >>> 32));
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java1305 private synchronized void sendMessageDelayed(Message msg, long delay) { argument
1309 mHandler.sendMessageDelayed(msg, delay);
1395 void sendMessageDelayed(int what, Object obj, long delay) { argument
1396 mEventHub.sendMessageDelayed(Message.obtain(null, what, obj), delay);
1508 * delay between {@link #didFirstLayout} and
H A DWebView.java1911 // Called by JNI to invalidate the View after a delay, given rectangle
1913 private void viewInvalidateDelayed(long delay, int l, int t, int r, int b) { argument
1916 postInvalidateDelayed(delay,
/frameworks/opt/com.google.android.googlelogin/
H A Dclient.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/googlelogin/ ...
/frameworks/opt/com.google.android/
H A Dframework.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/googlelogin/ ...

Completed in 528 milliseconds