HomeSort by relevance Sort by last modified time
    Searched refs:clock (Results 51 - 75 of 677) sorted by null

1 23 4 5 6 7 8 91011>>

  /hardware/qcom/gps/msm8996/utils/platform_lib_abstractions/
elapsed_millis_since_boot.cpp 33 int64_t systemTime(int clock)
  /hardware/qcom/gps/msmcobalt/utils/platform_lib_abstractions/
elapsed_millis_since_boot.cpp 33 int64_t systemTime(int clock)
  /hardware/qcom/gps/msmcobalt/utils/platform_lib_abstractions/loc_stub/src/
loc_stub_time.cpp 33 int64_t systemTime(int clock)
  /hardware/qcom/gps/platform_lib_abstractions/
elapsed_millis_since_boot.cpp 33 int64_t systemTime(int clock)
  /system/update_engine/update_manager/
real_time_provider.cc 37 CurrDateVariable(const string& name, ClockInterface* clock)
38 : Variable<Time>(name, TimeDelta::FromHours(1)), clock_(clock) {}
60 CurrHourVariable(const string& name, ClockInterface* clock)
61 : Variable<int>(name, TimeDelta::FromMinutes(5)), clock_(clock) {}
state_factory.cc 42 chromeos_update_engine::ClockInterface* const clock = system_state->clock(); member in class:chromeos_update_manager::chromeos_update_engine
49 new RealShillProvider(shill_proxy, clock));
53 unique_ptr<RealTimeProvider> time_provider(new RealTimeProvider(clock));
  /bionic/libc/bionic/
bionic_time_conversions.cpp 55 void absolute_timespec_from_timespec(timespec& abs_ts, const timespec& ts, clockid_t clock) {
56 clock_gettime(clock, &abs_ts);
  /bionic/libstdc++/include/
ctime 50 using ::clock;
  /ndk/sources/cxx-stl/gabi++/include/
ctime 50 using ::clock;
  /ndk/sources/cxx-stl/system/include/
ctime 50 using ::clock;
  /packages/apps/TV/src/com/android/tv/dvr/
ScheduledProgramReaper.java 22 import com.android.tv.util.Clock;
35 private final Clock mClock;
37 ScheduledProgramReaper(WritableDvrDataManager dvrDataManager, Clock clock) {
39 mClock = clock;
  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
ctime 50 using ::clock;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
ctime 50 using ::clock;
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
ctime 50 using ::clock;
  /system/core/libutils/
Timers.cpp 27 nsecs_t systemTime(int clock)
38 clock_gettime(clocks[clock], &t);
42 nsecs_t systemTime(int /*clock*/)
44 // Clock support varies widely across hosts. Mac OS doesn't support
  /toolchain/binutils/binutils-2.25/libiberty/
getruntime.c 108 /* Fall back on clock and hope it's correctly implemented. */
111 return clock () * (1000000 / clocks_per_sec);
113 return clock () / clocks_per_sec;
  /external/opencv3/samples/python2/
video_threaded.py 25 from common import clock, draw_str, StatValue namespace
63 last_frame_time = clock()
67 latency.update(clock() - t0)
74 t = clock()
  /external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module.cc 17 #include "webrtc/system_wrappers/include/clock.h"
26 config.clock = Clock::GetRealTimeClock();
30 AudioCodingModule* AudioCodingModule::Create(int id, Clock* clock) {
33 config.clock = clock;
  /external/webrtc/webrtc/modules/rtp_rtcp/include/
remote_ntp_time_estimator.h 19 class Clock;
28 explicit RemoteNtpTimeEstimator(Clock* clock);
42 Clock* clock_;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
WifiScannerImpl.java 24 import com.android.server.wifi.Clock;
38 WifiScannerImpl create(Context context, Looper looper, Clock clock);
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);
  /system/core/include/utils/
StopWatch.h 33 int clock = SYSTEM_TIME_MONOTONIC,
  /external/webrtc/webrtc/test/
fake_encoder.h 17 #include "webrtc/system_wrappers/include/clock.h"
25 explicit FakeEncoder(Clock* clock);
47 Clock* const clock_;
58 explicit FakeH264Encoder(Clock* clock);
75 DelayedEncoder(Clock* clock, int delay_ms);
  /external/tpm2/
Time.c 92 // This function updates the Time and Clock in the global TPMS_TIME_INFO structure.
93 // In this implementation, Time and Clock are updated at the beginning of each command and the values
95 // Because Clock updates may require a write to NV memory, Time and Clock are not allowed to advance if
96 // NV is not available. When clock is not advancing, any function that uses Clock will fail and return
98 // This implementations does not do rate limiting. If the implementation does do rate limiting, then the Clock
112 // Save the old clock value
113 oldClock = go.clock;
116 go.clock += elapsed
    [all...]
  /frameworks/base/location/java/android/location/
GnssMeasurementsEvent.java 96 public GnssMeasurementsEvent(GnssClock clock, GnssMeasurement[] measurements) {
97 if (clock == null) {
98 throw new InvalidParameterException("Parameter 'clock' must not be null.");
107 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);
GpsMeasurementsEvent.java 79 public GpsMeasurementsEvent(GpsClock clock, GpsMeasurement[] measurements) {
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);

Completed in 2348 milliseconds

1 23 4 5 6 7 8 91011>>