Searched refs:clock (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/av/media/common_time/
H A DAndroid.mk4 # (binder marshalers for ICommonClock as well as common clock and local clock
/frameworks/base/libs/hwui/
H A DIContextFactory.h30 virtual AnimationContext* createAnimationContext(renderthread::TimeLord& clock) = 0;
H A DAnimationContext.cpp25 AnimationContext::AnimationContext(renderthread::TimeLord& clock) argument
26 : mClock(clock)
H A DAnimationContext.h78 ANDROID_API AnimationContext(renderthread::TimeLord& clock);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScannerImpl.java38 WifiScannerImpl create(Context context, Looper looper, Clock clock); argument
46 public WifiScannerImpl create(Context context, Looper looper, Clock clock) {
49 return new HalWifiScannerImpl(context, wifiNative, looper, clock);
51 return new SupplicantWifiScannerImpl(context, wifiNative, looper, clock);
H A DHalWifiScannerImpl.java43 public HalWifiScannerImpl(Context context, WifiNative wifiNative, Looper looper, Clock clock) { argument
47 new SupplicantWifiScannerImpl(context, wifiNative, mChannelHelper, looper, clock);
/frameworks/base/location/java/android/location/
H A DGnssMeasurementsEvent.java96 public GnssMeasurementsEvent(GnssClock clock, GnssMeasurement[] measurements) { argument
97 if (clock == null) {
98 throw new InvalidParameterException("Parameter 'clock' must not be null.");
105 mClock = clock;
111 * Gets the GNSS receiver clock information associated with the measurements for the current
133 GnssClock clock = in.readParcelable(classLoader);
139 return new GnssMeasurementsEvent(clock, measurementsArray);
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 DGnssClock.java24 * A class containing a GPS clock timestamp.
26 * <p>It represents a measurement of the GPS receiver's clock.
66 public void set(GnssClock clock) { argument
67 mFlags = clock.mFlags;
68 mLeapSecond = clock.mLeapSecond;
69 mTimeNanos = clock.mTimeNanos;
70 mTimeUncertaintyNanos = clock.mTimeUncertaintyNanos;
71 mFullBiasNanos = clock.mFullBiasNanos;
72 mBiasNanos = clock.mBiasNanos;
73 mBiasUncertaintyNanos = clock
[all...]
H A DGpsClock.java24 * A class containing a GPS clock timestamp.
25 * It represents a measurement of the GPS receiver's clock.
79 public void set(GpsClock clock) { argument
80 mFlags = clock.mFlags;
81 mLeapSecond = clock.mLeapSecond;
82 mType = clock.mType;
83 mTimeInNs = clock.mTimeInNs;
84 mTimeUncertaintyInNs = clock.mTimeUncertaintyInNs;
85 mFullBiasInNs = clock.mFullBiasInNs;
86 mBiasInNs = clock
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DANQPData.java43 public ANQPData(Clock clock, NetworkDetail network, argument
46 mClock = clock;
62 public ANQPData(Clock clock, NetworkDetail network, ANQPData existing) { argument
63 mClock = clock;
H A DAnqpCache.java25 public AnqpCache(Clock clock) { argument
26 mClock = clock;
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp1140 static jobject translate_gps_clock(JNIEnv* env, GpsClock* clock) { argument
1143 GpsClockFlags flags = clock->flags;
1147 static_cast<int32_t>(clock->leap_second));
1152 // the GPS time information is handled as an always discontinuous HW clock,
1157 switch (clock->type) {
1160 ALOGE("Unknown clock type provided.");
1168 clock->full_bias_ns = clock->time_ns;
1169 clock->time_ns = 0;
1175 SET(TimeNanos, clock
1196 translate_gnss_clock(JNIEnv* env, GnssClock* clock) argument
1360 set_measurement_data(JNIEnv *env, jobject clock, jobjectArray measurementArray) argument
1396 jobject clock; local
1420 jobject clock; local
[all...]
/frameworks/rs/api/
H A Drs_time.spec20 The functions below can be used to tell the current clock time and the current
92 Returns the current system clock (uptime) in milliseconds.
100 Returns the current system clock (uptime) in nanoseconds.
/frameworks/base/libs/hwui/tests/macrobench/
H A DTestSceneRunner.cpp36 virtual AnimationContext* createAnimationContext(renderthread::TimeLord& clock) override {
37 return new AnimationContext(clock);
/frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
H A DAAC_E_SAMPLES.c231 t1 = clock();
257 t2 = clock();
/frameworks/av/media/libstagefright/codecs/amrnb/enc/test/
H A Damrnb_enc_test.cpp118 start = clock();
132 finish = clock();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DFrameworkFacade.java163 FrameworkFacade frameworkFacade, Clock clock, UserManager userManager,
165 return new WifiConfigManager(context, wifiNative, frameworkFacade, clock, userManager,
162 makeWifiConfigManager(Context context, WifiNative wifiNative, FrameworkFacade frameworkFacade, Clock clock, UserManager userManager, KeyStore keyStore) argument
/frameworks/base/core/java/android/hardware/radio/
H A DRadioMetadata.java99 * The clock.
164 * The clock is defined by the seconds since epoch at the UTC + 0 timezone
277 Clock clock = null;
279 clock = mBundle.getParcelable(key);
281 // ignore, value was not a clock.
284 return clock;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java50 mClock = mView.findViewById(R.id.clock);
/frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
H A DAMRWB_E_SAMPLE.c204 start = clock();
233 finish = clock();
/frameworks/base/libs/hwui/utils/
H A DTestWindowContext.cpp40 (android::uirenderer::renderthread::TimeLord& clock) override {
41 return new android::uirenderer::AnimationContext(clock);
/frameworks/rs/
H A DrsCppUtils.h156 SYSTEM_TIME_REALTIME = 0, // system-wide realtime clock
158 SYSTEM_TIME_PROCESS = 2, // high-resolution per-process clock
159 SYSTEM_TIME_THREAD = 3, // high-resolution per-thread clock
162 static inline nsecs_t systemTime(int clock) argument
173 clock_gettime(clocks[clock], &t);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardDisplayManager.java167 mClock = findViewById(R.id.clock);
/frameworks/native/opengl/tools/glgen2/registry/
H A Dgenheaders.py85 startTime = time.clock()
88 endTime = time.clock()

Completed in 8681 milliseconds

12