Searched refs:oldest (Results 1 - 6 of 6) sorted by relevance

/system/core/logd/
H A DLogBuffer.cpp236 LogTimeEntry *oldest = NULL; local
245 && (!oldest || (oldest->mStart > entry->mStart))) {
246 oldest = entry;
257 if (oldest && (oldest->mStart <= e->getMonotonicTime())) {
309 if (oldest && (oldest->mStart <= e->getMonotonicTime())) {
350 if (oldest && (oldest
[all...]
H A DLogStatistics.h192 void format(char **strp, uid_t uid, unsigned int logMask, log_time oldest);
H A DLogStatistics.cpp529 uid_t uid, unsigned int logMask, log_time oldest) {
586 d = t.nsec() - oldest.nsec();
528 format(char **buf, uid_t uid, unsigned int logMask, log_time oldest) argument
/system/core/liblog/
H A Dlog_read_kern.c418 struct log_list *oldest = NULL; local
424 if (!oldest
425 || (entry->entry.entry.sec < oldest->entry.entry.sec)
426 || ((entry->entry.entry.sec == oldest->entry.entry.sec)
427 && (entry->entry.entry.nsec < oldest->entry.entry.nsec))) {
428 oldest = entry;
432 if (!oldest) {
440 || (oldest->entry.entry.sec < firstentry->entry.entry.sec)
441 || ((oldest->entry.entry.sec == firstentry->entry.entry.sec)
442 && (oldest
[all...]
/system/core/include/utils/
H A DLruCache.h238 Entry* oldest = mOldest; local
243 for (Entry* p = oldest; p != NULL; p = p->child) {
/system/core/debuggerd/
H A Dtombstone.cpp668 int oldest = -1; local
675 if (oldest < 0 || sb.st_mtime < oldest_sb.st_mtime) {
676 oldest = i;
692 if (oldest < 0) {
694 oldest = 0;
697 // we didn't find an available file, so we clobber the oldest one
698 snprintf(path, sizeof(path), TOMBSTONE_TEMPLATE, oldest);

Completed in 115 milliseconds