OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mLogTs
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/services/audioflinger/
AudioWatchdog.cpp
50
mLogTs
.tv_sec = MIN_TIME_BETWEEN_LOGS_SEC;
51
mLogTs
.tv_nsec = 0;
83
mLogTs
.tv_sec += sec;
84
if ((
mLogTs
.tv_nsec += nsec) >= 1000000000) {
85
mLogTs
.tv_sec++;
86
mLogTs
.tv_nsec -= 1000000000;
90
if (
mLogTs
.tv_sec >= MIN_TIME_BETWEEN_LOGS_SEC) {
95
mLogTs
.tv_sec = 0;
96
mLogTs
.tv_nsec = 0;
AudioWatchdog.h
47
//
mLogTs
initialized below
52
mLogTs
.tv_sec = MIN_TIME_BETWEEN_LOGS_SEC;
53
mLogTs
.tv_nsec = 0;
78
struct timespec
mLogTs
; // time since last log
Completed in 3170 milliseconds