Searched defs:clock (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/libs/hwui/tests/
H A Dmain.cpp36 virtual AnimationContext* createAnimationContext(renderthread::TimeLord& clock) { argument
37 return new AnimationContext(clock);
/frameworks/base/location/java/android/location/
H A DGpsMeasurementsEvent.java79 public GpsMeasurementsEvent(GpsClock clock, GpsMeasurement[] measurements) { argument
80 if (clock == null) {
81 throw new InvalidParameterException("Parameter 'clock' must not be null.");
88 mClock = clock;
112 GpsClock clock = in.readParcelable(classLoader);
118 return new GpsMeasurementsEvent(clock, measurementsArray);
H A DGpsClock.java25 * A class containing a GPS clock timestamp.
26 * It represents a measurement of the GPS receiver's clock.
81 public void set(GpsClock clock) { argument
82 mFlags = clock.mFlags;
83 mLeapSecond = clock.mLeapSecond;
84 mType = clock.mType;
85 mTimeInNs = clock.mTimeInNs;
86 mTimeUncertaintyInNs = clock.mTimeUncertaintyInNs;
87 mFullBiasInNs = clock.mFullBiasInNs;
88 mBiasInNs = clock
[all...]
/frameworks/base/libs/hwui/
H A DAnimationContext.cpp25 AnimationContext::AnimationContext(renderthread::TimeLord& clock) argument
26 : mClock(clock)
/frameworks/rs/
H A DrsCppUtils.h150 SYSTEM_TIME_REALTIME = 0, // system-wide realtime clock
152 SYSTEM_TIME_PROCESS = 2, // high-resolution per-process clock
153 SYSTEM_TIME_THREAD = 3, // high-resolution per-thread clock
156 static inline nsecs_t systemTime(int clock) argument
167 clock_gettime(clocks[clock], &t);
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp382 virtual AnimationContext* createAnimationContext(renderthread::TimeLord& clock) { argument
383 return new AnimationContext(clock);
H A Dandroid_view_ThreadedRenderer.cpp153 AnimationContextBridge(renderthread::TimeLord& clock, RootRenderNode* rootNode) argument
154 : AnimationContext(clock), mRootNode(rootNode) {
201 virtual AnimationContext* createAnimationContext(renderthread::TimeLord& clock) { argument
202 return new AnimationContextBridge(clock, mRootNode);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetPager.java154 // Disable the status bar clock if we're showing the default status widget
922 private static int getClockFlags(TextClock clock) { argument
925 final String timeZone = clock.getTimeZone();
931 final CharSequence format = clock.getFormat();
932 final char hour = clock.is24HourModeEnabled() ? DateFormat.HOUR_OF_DAY
/frameworks/native/cmds/atrace/
H A Datrace.cpp381 // Enable or disable the kernel's use of the global clock. Disabling the global
382 // clock will result in the kernel using a per-CPU local clock.
387 const char *clock = enable ? "global" : "local"; local
389 if (isTraceClock(clock)) {
393 return writeStr(k_traceClockPath, clock);
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp896 static jobject translate_gps_clock(JNIEnv* env, GpsClock* clock) { argument
904 GpsClockFlags flags = clock->flags;
908 env->CallVoidMethod(gpsClockObject, setterMethod, clock->leap_second);
912 env->CallVoidMethod(gpsClockObject, typeSetterMethod, clock->type);
915 env->CallVoidMethod(gpsClockObject, setterMethod, clock->time_ns);
920 env->CallVoidMethod(gpsClockObject, setterMethod, clock->time_uncertainty_ns);
925 env->CallVoidMethod(gpsClockObject, setterMethod, clock->full_bias_ns);
930 env->CallVoidMethod(gpsClockObject, setterMethod, clock->bias_ns);
936 env->CallVoidMethod(gpsClockObject, setterMethod, clock->bias_uncertainty_ns);
942 env->CallVoidMethod(gpsClockObject, setterMethod, clock
[all...]

Completed in 259 milliseconds