/external/chromium_org/tools/gyp/test/mac/rebuild/ |
delay-touch.sh | 5 sleep 1 # mtime resolution is 1 sec on unix.
|
/packages/apps/Email/tests/src/com/android/email/ |
MockClock.java | 24 public long mTime = DEFAULT_TIME; 28 return mTime; 32 mTime++; 36 mTime += milliseconds;
|
/frameworks/av/include/media/ |
AudioTimestamp.h | 25 mTime.tv_sec = 0; 26 mTime.tv_nsec = 0; 30 struct timespec mTime; // corresponding CLOCK_MONOTONIC when frame is expected to present
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
dircache.py | 28 mtime = os.stat(path).st_mtime 29 if mtime != cached_mtime: 32 cache[path] = mtime, list
|
linecache.py | 56 size, mtime, lines, fullname = cache[filename] 57 if mtime is None: 64 if size != stat.st_size or mtime != stat.st_mtime: 133 size, mtime = stat.st_size, stat.st_mtime 134 cache[filename] = size, mtime, lines, fullname
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
dircache.py | 28 mtime = os.stat(path).st_mtime 29 if mtime != cached_mtime: 32 cache[path] = mtime, list
|
linecache.py | 56 size, mtime, lines, fullname = cache[filename] 57 if mtime is None: 64 if size != stat.st_size or mtime != stat.st_mtime: 133 size, mtime = stat.st_size, stat.st_mtime 134 cache[filename] = size, mtime, lines, fullname
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
WaveTriggerFilter.java | 33 private float mTime = 0f; 64 mTime = 0.5f; 70 value = -Math.abs(mTime - 1f) + 1f; 71 mTime += 0.2f; 72 if (mTime >= 2f) {
|
/ndk/sources/host-tools/make-3.81/ |
remake.c | 88 #define MTIME(file) (rebuilding_makefiles ? file_mtime_no_search (file) \ 184 FILE_TIMESTAMP mtime = MTIME (file); 188 mtime != file->mtime_before_update) 476 FILE_TIMESTAMP mtime; 482 mtime = file_mtime (d->file); 543 d->changed = ((file_mtime (d->file) != mtime) 544 /* || (mtime == NONEXISTENT_MTIME) */); 560 FILE_TIMESTAMP mtime = file_mtime (d->file); 598 || file_mtime (d->file) != mtime); 183 FILE_TIMESTAMP mtime = MTIME (file); local 473 FILE_TIMESTAMP mtime; local 557 FILE_TIMESTAMP mtime = file_mtime (d->file); local 946 FILE_TIMESTAMP mtime; local 957 FILE_TIMESTAMP mtime; local 1146 FILE_TIMESTAMP mtime; local 1357 FILE_TIMESTAMP mtime; local 1472 FILE_TIMESTAMP mtime; local [all...] |
/external/e2fsprogs/tests/f_dup_resize/ |
script | 13 set_inode_field debugfs mtime 200504110000
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/ |
AttribFlags.java | 36 * Indicates that the 'atime' and 'mtime' field are present 52 * Indicates that the 'mtime' field is present. 68 * 'mtime' and 'ctime' fields (if present), there is also 69 * 'atime-nseconds', 'createtime-nseconds', 'mtime-nseconds'
|
/external/lzma/CPP/7zip/Common/ |
FileStreams.h | 118 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime)
120 return File.SetTime(cTime, aTime, mTime);
122 bool SetMTime(const FILETIME *mTime) { return File.SetMTime(mTime); }
|
/external/oprofile/libop/ |
op_sample_file.h | 31 time_t mtime; member in struct:opd_header
|
/external/oprofile/libpp/ |
op_header.cpp | 45 if (h1.mtime != h2.mtime) { 48 << h1.mtime << ", " << h2.mtime << ") for " 92 if (newmtime == header.mtime) 100 // Files we couldn't get mtime of have zero mtime 101 if (!header.mtime) { 102 // FIXME: header.mtime for JIT sample files is 0. The problem could be that
|
op_header.h | 25 * check that the h1 and h2 are coherent (same size, same mtime etc.) 34 * check mtime of samples file header against file
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_compileall.py | 30 mtime = int(os.stat(self.source_path).st_mtime) 31 compare = struct.pack('<4sl', imp.get_magic(), mtime) 51 # Test a change in mtime leads to a new .pyc. 55 # Test a change in mtime leads to a new .pyc.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_compileall.py | 30 mtime = int(os.stat(self.source_path).st_mtime) 31 compare = struct.pack('<4sl', imp.get_magic(), mtime) 51 # Test a change in mtime leads to a new .pyc. 55 # Test a change in mtime leads to a new .pyc.
|
/cts/tests/tests/view/src/android/view/cts/ |
VelocityTrackerTest.java | 38 private long mTime; 48 mTime = 1000; 148 mTime += step; 158 mTime += duration; 162 if (mTime >= mLastTime) { 163 MotionEvent ev = MotionEvent.obtain(0L, mTime, MotionEvent.ACTION_MOVE, mPx, mPy, 0); 166 mLastTime = mTime; 174 mTime, mPx, mPy, mVx, mVy, mAx, mAy,
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-copies.py | 39 mtime = os.path.getmtime(dep_bundle) variable 42 os.utime(dep_bundle, (atime + i * 1000, mtime + i * 1000))
|
/external/lzma/CPP/7zip/UI/Common/ |
DirItem.h | 15 FILETIME MTime;
57 FILETIME MTime;
|
/system/extras/ext4_utils/ |
contents.h | 31 u32 mtime; member in struct:dentry 40 int inode_set_permissions(u32 inode_num, u16 mode, u16 uid, u16 gid, u32 mtime);
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaFragment.java | 60 private final Time mTime; 85 mTime.switchTimezone(mTimeZone); 98 mTime = new Time(); 102 mTime.setToNow(); 104 mTime.set(mInitialTimeMillis); 106 mLastHandledEventTime.set(mTime); 114 mTime.switchTimezone(mTimeZone); 133 mTime.set(prevTime); 135 Log.d(TAG, "Restoring time to " + mTime.toString()); 215 Log.v(TAG, "OnResume to " + mTime.toString()) [all...] |
/system/extras/tests/sdcard/ |
stopwatch.cpp | 81 clock_gettime(CLOCK_MONOTONIC, &mData[mDataLen].mTime); 85 mStart = mData[mDataLen].mTime; // mDataLen should be 0 95 clock_gettime(CLOCK_MONOTONIC, &mData[mDataLen].mTime); 136 long second = mData[i * 2].mTime.tv_sec - mStart.tv_sec; 137 long nano = mData[i * 2].mTime.tv_nsec - mStart.tv_nsec; 172 long second = mData[i + 1].mTime.tv_sec - mData[i].mTime.tv_sec; 173 long nano = mData[i + 1].mTime.tv_nsec - mData[i].mTime.tv_nsec;
|
/external/lzma/CPP/Windows/ |
FileIO.h | 19 FILETIME MTime;
126 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
127 bool SetMTime(const FILETIME *mTime);
|
/external/elfutils/libdw/ |
dwarf_filesrc.c | 59 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, 65 if (mtime != NULL) 66 *mtime = file->info[idx].mtime;
|