Searched defs:times (Results 1 - 9 of 9) sorted by last modified time

/system/core/adb/
H A Dfile_sync_client.c885 struct utimbuf times = { time, time }; local
886 int r1 = utime(lpath, &times);
/system/core/logd/
H A DFlushCommand.cpp50 LastLogTimes &times = mReader.logbuf().mTimes; local
53 LastLogTimes::iterator it = times.begin();
54 while(it != times.end()) {
68 if (it == times.end()) {
75 times.push_back(entry);
H A DLogBuffer.cpp95 LogBuffer::LogBuffer(LastLogTimes *times) argument
96 : mTimes(*times) {
H A DLogReader.cpp165 LastLogTimes &times = mLogbuf.mTimes; local
167 LastLogTimes::iterator it = times.begin();
168 while(it != times.end()) {
171 times.erase(it);
H A DLogTimes.cpp86 LastLogTimes &times = reader.logbuf().mTimes; local
88 LastLogTimes::iterator it = times.begin();
89 while(it != times.end()) {
91 times.erase(it);
H A Dmain.cpp141 // Serves the purpose of managing the last logs times read on a
145 LastLogTimes *times = new LastLogTimes(); local
150 LogBuffer *logBuf = new LogBuffer(times);
/system/core/logd/tests/
H A Dlogd_test.cpp241 unsigned long long *times = new unsigned long long [number_of_buckets]; local
242 ASSERT_TRUE(times != NULL);
244 memset(times, 0, sizeof(*times) * number_of_buckets);
282 times[number_of_values] = value;
302 total += times[launch];
304 && ((total / launch) >= (times[launch] / 8ULL)))
351 delete [] times;
/system/core/sdcard/
H A Dsdcard.c894 struct timespec times[2]; local
924 times[0].tv_nsec = UTIME_OMIT;
925 times[1].tv_nsec = UTIME_OMIT;
928 times[0].tv_nsec = UTIME_NOW;
930 times[0].tv_sec = req->atime;
931 times[0].tv_nsec = req->atimensec;
936 times[1].tv_nsec = UTIME_NOW;
938 times[1].tv_sec = req->mtime;
939 times[1].tv_nsec = req->mtimensec;
943 handler->token, path, times[
[all...]
/system/core/toolbox/
H A Dtouch.c45 struct timespec specified_time, times[2]; local
96 times[0] = specified_time;
98 times[0].tv_nsec = UTIME_OMIT;
101 times[1] = specified_time;
103 times[1].tv_nsec = UTIME_OMIT;
107 fprintf(stderr, "times[0].tv_sec = %ld, times[0].tv_nsec = %ld\n", times[0].tv_sec, times[0].tv_nsec);
108 fprintf(stderr, "times[
[all...]

Completed in 129 milliseconds