HomeSort by relevance Sort by last modified time
    Searched refs:timeNanos (Results 1 - 10 of 10) sorted by null

  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
ProfileBase.java 134 private double getTotalMillis(long timeNanos) {
135 return nanoToMillis(timeNanos - mStartNanos);
138 private double getTimeFromLastMillis(long timeNanos) {
139 return nanoToMillis(timeNanos - mLastMark);
142 private double nanoToMillis(long timeNanos) {
143 return (double)(timeNanos) / 1000000.0;
  /device/google/contexthub/firmware/os/inc/
syscallDo.h 160 uint64_t timeNanos;
161 syscallDo1P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_SENSOR, SYSCALL_OS_MAIN_SENSOR_GET_TIME), &timeNanos);
162 return timeNanos;
167 uint64_t timeNanos;
168 syscallDo1P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_TIME, SYSCALL_OS_MAIN_TIME_GET_TIME), &timeNanos);
169 return timeNanos;
217 uint64_t timeNanos;
218 syscallDo1P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_HOST, SYSCALL_OS_MAIN_HOST_GET_TIME), &timeNanos);
219 return timeNanos;
224 uint64_t timeNanos;
    [all...]
  /frameworks/av/services/oboeservice/
AAudioServiceStreamShared.h 98 aaudio_result_t getFreeRunningPosition(int64_t *positionFrames, int64_t *timeNanos) override;
AAudioServiceStreamBase.h 121 virtual aaudio_result_t getFreeRunningPosition(int64_t *positionFrames, int64_t *timeNanos) = 0;
AAudioServiceStreamShared.cpp 235 int64_t *timeNanos) {
238 *timeNanos = mMarkedTime;
AAudioServiceStreamMMAP.h 98 aaudio_result_t getFreeRunningPosition(int64_t *positionFrames, int64_t *timeNanos) override;
AAudioServiceStreamMMAP.cpp 244 int64_t *timeNanos) {
258 *timeNanos = position.time_nanoseconds;
  /device/google/contexthub/firmware/os/core/
osApi.c 190 uint64_t *timeNanos = va_arg(args, uint64_t *);
191 *timeNanos = sensorGetTime();
196 uint64_t *timeNanos = va_arg(args, uint64_t *);
197 *timeNanos = timGetTime();
268 uint64_t *timeNanos = va_arg(args, uint64_t *);
269 *timeNanos = hostGetTime();
274 uint64_t *timeNanos = va_arg(args, uint64_t *);
275 *timeNanos = rtcGetTime();
nanohub_chre.c 88 uint64_t *timeNanos = va_arg(args, uint64_t *);
89 if (timeNanos)
90 *timeNanos = timGetTime();
  /frameworks/base/location/java/android/location/
GnssClock.java 100 * UtcTimeNanos = TimeNanos - (FullBiasNanos + BiasNanos) - LeapSecond * 1,000,000,000</pre>
148 public void setTimeNanos(long timeNanos) {
149 mTimeNanos = timeNanos;
216 * local estimate of GPS time = TimeNanos - (FullBiasNanos + BiasNanos)</pre>
407 * can be safely assumed that the {@code TimeNanos} value has been derived from a clock that has
415 * {@code (FullBiasNanos + BiasNanos)} offset, and a smoothly growing {@code (TimeNanos)}
485 "TimeNanos",

Completed in 267 milliseconds