/frameworks/base/media/java/android/drm/mobile1/ |
H A D | DrmConstraintInfo.java | 41 * 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 D | AlarmManager.java | 155 * 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 D | Timers.cpp | 60 * 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 D | CPUGauge.cpp | 42 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 D | Constraint.cpp | 162 void Constraint::setInterval(int interval) argument 164 mInterval = interval;
|
/frameworks/base/include/pim/ |
H A D | EventRecurrence.h | 57 int interval; member in struct:android::EventRecurrence
|
/frameworks/base/core/java/android/pim/ |
H A D | EventRecurrence.java | 72 public int interval; field in class:EventRecurrence 293 if (this.interval != 0) { 295 s.append(this.interval);
|
/frameworks/base/media/libmediaplayerservice/ |
H A D | MediaPlayerService.h | 42 static const int interval; member in class:android::Antagonizer
|
H A D | MediaPlayerService.cpp | 795 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 D | VerticalTextSpinner.java | 148 public void setScrollInterval(long interval) { argument 149 mScrollInterval = interval;
|
/frameworks/base/services/java/com/android/server/ |
H A D | AlarmManagerService.java | 82 // 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 D | drm1_jni.c | 385 * 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 D | egl.cpp | 1514 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) argument
|
/frameworks/base/opengl/libs/EGL/ |
H A D | egl.cpp | 1327 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) argument 1337 if (cnx->hooks->egl.eglSwapInterval(dp->dpys[i], interval) == EGL_FALSE) {
|