OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fromTrack
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/services/audioflinger/
TrackBase.h
131
* This may be called without the thread lock, but latencyMs and
fromTrack
138
* \param
fromTrack
on success is set to true if latency was computed directly
141
*
fromTrack
may be nullptr or omitted if not required.
145
status_t getServerLatencyMs(double *latencyMs, bool *
fromTrack
= nullptr) const {
157
if (
fromTrack
!= nullptr) {
158
*
fromTrack
= mServerLatencyFromTrack.load();
168
* This may be called without the thread lock, but latencyMs and
fromTrack
175
* \param
fromTrack
on success is set to true if latency was computed directly
178
*
fromTrack
may be nullptr or omitted if not required.
182
status_t getTrackLatencyMs(double *latencyMs, bool *
fromTrack
= nullptr) const
[
all
...]
Tracks.cpp
770
bool
fromTrack
;
771
if (getTrackLatencyMs(&latencyMs, &
fromTrack
) == OK) {
774
result.appendFormat(" %7.2lf %c", latencyMs,
fromTrack
? 't' : 'k');
[
all
...]
Completed in 157 milliseconds