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

  /system/core/logd/
FlushCommand.cpp 35 // global LogTimeEntry::wrlock() is used to protect access,
37 // LogTimeEntry lifetime is managed when not protected.
39 LogTimeEntry* entry = NULL;
42 LogTimeEntry::wrlock();
48 LogTimeEntry::unlock();
53 LogTimeEntry::unlock();
61 LogTimeEntry::unlock();
67 LogTimeEntry::unlock();
77 // Create LogTimeEntry in notifyNewLog() ?
79 LogTimeEntry::unlock()
    [all...]
LogTimes.cpp 28 pthread_mutex_t LogTimeEntry::timesLock = PTHREAD_MUTEX_INITIALIZER;
30 LogTimeEntry::LogTimeEntry(LogReader& reader, SocketClient* client,
55 void LogTimeEntry::startReader_Locked(void) {
62 if (!pthread_create(&mThread, &attr, LogTimeEntry::threadStart,
77 void LogTimeEntry::threadStop(void* obj) {
78 LogTimeEntry* me = reinterpret_cast<LogTimeEntry*>(obj);
116 void* LogTimeEntry::threadStart(void* obj) {
119 LogTimeEntry* me = reinterpret_cast<LogTimeEntry*>(obj)
    [all...]
LogTimes.h 34 class LogTimeEntry {
55 LogTimeEntry(LogReader& reader, SocketClient* client, bool nonBlock,
90 // These called after LogTimeEntry removed from list, lock implicitly held
149 typedef std::list<LogTimeEntry*> LastLogTimes;
LogReader.cpp 114 LogTimeEntry::wrlock();
115 LogTimeEntry::unlock();
215 LogTimeEntry::wrlock();
218 LogTimeEntry* entry = (*it);
226 LogTimeEntry::unlock();
LogBuffer.cpp 104 LogTimeEntry::wrlock();
108 LogTimeEntry* entry = (*times);
115 LogTimeEntry::unlock();
408 LogTimeEntry::rdlock();
412 LogTimeEntry* entry = (*times);
441 LogTimeEntry::unlock();
641 void LogBuffer::kickMe(LogTimeEntry* me, log_id_t id, unsigned long pruneRows) {
704 LogTimeEntry* oldest = nullptr;
708 LogTimeEntry::rdlock();
713 LogTimeEntry* entry = (*times)
    [all...]
LogBuffer.h 188 void kickMe(LogTimeEntry* me, log_id_t id, unsigned long pruneRows);

Completed in 76 milliseconds