Home
last modified time | relevance | path

Searched refs:clockId (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/oboe/src/common/
DAudioClock.h29 static int64_t getNanoseconds(clockid_t clockId = CLOCK_MONOTONIC) {
31 int result = clock_gettime(clockId, &time);
46 static int sleepUntilNanoTime(int64_t nanoTime, clockid_t clockId = CLOCK_MONOTONIC) {
50 return 0 - clock_nanosleep(clockId, TIMER_ABSTIME, &time, NULL);
62 static int sleepForNanos(int64_t nanoseconds, clockid_t clockId = CLOCK_REALTIME) {
67 return 0 - clock_nanosleep(clockId, 0, &time, NULL);
DFilterAudioStream.h167 Result getTimestamp(clockid_t clockId, in getTimestamp() argument
171 Result result = mChildStream->getTimestamp(clockId, &childPosition, timeNanoseconds); in getTimestamp()
DAudioStream.cpp189 ResultWithValue<FrameTimestamp> AudioStream::getTimestamp(clockid_t clockId) { in getTimestamp() argument
191 Result result = getTimestamp(clockId, &frame.position, &frame.timestamp); in getTimestamp()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/
DOboeStreamCallbackProxy.cpp45 int64_t OboeStreamCallbackProxy::getNanoseconds(clockid_t clockId) { in getNanoseconds() argument
47 int result = clock_gettime(clockId, &time); in getNanoseconds()
DOboeStreamCallbackProxy.h78 static int64_t getNanoseconds(clockid_t clockId = CLOCK_MONOTONIC);
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAudioStreamAAudio.h80 Result getTimestamp(clockid_t clockId,
DAudioStreamAAudio.cpp596 Result AudioStreamAAudio::getTimestamp(clockid_t clockId, in getTimestamp() argument
604 return static_cast<Result>(mLibLoader->stream_getTimestamp(stream, clockId, in getTimestamp()
/third_party/flutter/engine/flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/
Dsystem.dart160 static int clockGet(int clockId) native 'System_ClockGet';
/third_party/rust/crates/libc/src/vxworks/
Dmod.rs1393 clockId: ::clockid_t, in pthread_condattr_setclock()