Searched defs:interval (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/media/java/android/drm/mobile1/
H A DDrmConstraintInfo.java41 * The constraint of interval.
43 private long interval; field in class:DrmConstraintInfo
52 interval = -1;
91 * @return the interval or -1 if no limit.
94 return interval;
/frameworks/base/core/java/android/app/
H A DAlarmManager.java155 * to the repeat interval.
166 * order to guarantee that at least a certain time interval always elapses
174 * @param interval Interval between subsequent repeats of the alarm.
190 public void setRepeating(int type, long triggerAtTime, long interval, argument
193 mService.setRepeating(type, triggerAtTime, interval, operation);
217 * but it might not occur for almost a full interval after that time. In
229 * interval before the first invocation of the alarm.
230 * @param interval Interval between subsequent repeats of the alarm. If
256 public void setInexactRepeating(int type, long triggerAtTime, long interval, argument
259 mService.setInexactRepeating(type, triggerAtTime, interval, operatio
[all...]
/frameworks/base/libs/utils/
H A DTimers.cpp60 * Sleep long enough that we'll wake up "interval" milliseconds after
69 int sleepForInterval(long interval, struct timeval* pNextTick) argument
90 sleepTime = interval;
91 android::DurationTimer::addToTimeval(pNextTick, interval);
103 if (timeBeforeNext < -interval) {
112 } else if (timeBeforeNext <= interval) {
115 } else if (timeBeforeNext > interval && timeBeforeNext <= 2*interval) {
118 } else if (timeBeforeNext > interval) {
126 android::DurationTimer::addToTimeval(pNextTick, interval);
[all...]
/frameworks/base/libs/surfaceflinger/
H A DCPUGauge.cpp42 nsecs_t interval,
46 mInterval(interval), mClock(clock), mRefClock(refclock),
41 CPUGauge( const sp<ISurfaceComposer>& composer, nsecs_t interval, int clock, int refclock) argument
/frameworks/base/media/libdrm/mobile2/src/rights/
H A DConstraint.cpp162 void Constraint::setInterval(int interval) argument
164 mInterval = interval;
/frameworks/base/include/pim/
H A DEventRecurrence.h57 int interval; member in struct:android::EventRecurrence
/frameworks/base/core/java/android/pim/
H A DEventRecurrence.java72 public int interval; field in class:EventRecurrence
293 if (this.interval != 0) {
295 s.append(this.interval);
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.h42 static const int interval; member in class:android::Antagonizer
H A DMediaPlayerService.cpp795 const int Antagonizer::interval = 10000; // 10 msecs member in class:android::Antagonizer
820 usleep(interval);
/frameworks/base/core/java/com/android/internal/widget/
H A DVerticalTextSpinner.java148 public void setScrollInterval(long interval) { argument
149 mScrollInterval = interval;
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java82 // slots corresponding with the inexact-repeat interval buckets,
157 public void setRepeating(int type, long triggerAtTime, long interval, argument
167 alarm.repeatInterval = interval;
182 public void setInexactRepeating(int type, long triggerAtTime, long interval, argument
192 if (sInexactSlotIntervals[intervalSlot] == interval) {
200 setRepeating(type, triggerAtTime, interval, operation);
205 // the shortest-interval bucket already scheduled
219 // alignment, we slide the start time around by min{interval, slot interval}
220 long adjustment = (interval <
[all...]
/frameworks/base/media/libdrm/mobile1/src/jni/
H A Ddrm1_jni.c385 * already restricts the interval representation to be day-based,
386 * i.e. there will not be an interval with year or month any more in the
517 /* set interval field */
519 int64_t interval; local
521 interval = computeInterval(pConstraint->intervalDate, pConstraint->intervalTime);
523 if (JNI_DRM_FAILURE == setObjectLongField(env, constraint, "interval", interval))
/frameworks/base/opengl/libagl/
H A Degl.cpp1514 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) argument
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp1327 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) argument
1337 if (cnx->hooks->egl.eglSwapInterval(dp->dpys[i], interval) == EGL_FALSE) {

Completed in 396 milliseconds