Searched defs:times (Results 1 - 8 of 8) sorted by relevance

/system/core/logd/
H A DFlushCommand.cpp52 LastLogTimes& times = mReader.logbuf().mTimes; local
55 LastLogTimes::iterator it = times.begin();
56 while (it != times.end()) {
84 if (it == times.end()) {
92 times.push_front(entry);
H A DLogTimes.cpp91 LastLogTimes& times = reader.logbuf().mTimes; local
93 LastLogTimes::iterator it = times.begin();
94 while (it != times.end()) {
96 times.erase(it);
H A DLogReader.cpp207 LastLogTimes& times = mLogbuf.mTimes; local
209 LastLogTimes::iterator it = times.begin();
210 while (it != times.end()) {
213 times.erase(it);
H A Dmain.cpp462 // Serves the purpose of managing the last logs times read on a
466 LastLogTimes* times = new LastLogTimes(); local
471 logBuf = new LogBuffer(times);
H A DLogBuffer.cpp100 LastLogTimes::iterator times = mTimes.begin(); local
101 while (times != mTimes.end()) {
102 LogTimeEntry* entry = (*times);
106 times++;
112 LogBuffer::LogBuffer(LastLogTimes* times) argument
113 : monotonic(android_log_clockid() == CLOCK_MONOTONIC), mTimes(*times) {
394 LastLogTimes::iterator times = mTimes.begin(); local
395 while (times != mTimes.end()) {
396 LogTimeEntry* entry = (*times);
408 times
668 LastLogTimes::iterator times = mTimes.begin(); local
1034 LastLogTimes::iterator times = mTimes.begin(); local
[all...]
/system/core/bootstat/
H A Dboot_event_record_store.cpp84 struct utimbuf times = {/* actime */ file_stat.st_atime, /* modtime */ value}; local
85 if (utime(record_path.c_str(), &times) == -1) {
H A Dboot_event_record_store_test.cpp52 const struct timeval times[] = {atime, mtime}; local
53 if (utimes(record_path.c_str(), times) != 0) {
/system/core/sdcard/
H A Dfuse.cpp662 struct timespec times[2]; local
694 times[0].tv_nsec = UTIME_OMIT;
695 times[1].tv_nsec = UTIME_OMIT;
698 times[0].tv_nsec = UTIME_NOW;
700 times[0].tv_sec = req->atime;
701 times[0].tv_nsec = req->atimensec;
706 times[1].tv_nsec = UTIME_NOW;
708 times[1].tv_sec = req->mtime;
709 times[1].tv_nsec = req->mtimensec;
713 << " with atime " << times[
[all...]

Completed in 81 milliseconds