Searched refs:st_mtime (Results 1 – 25 of 42) sorted by relevance
12
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | dep_util.py | 30 return os.stat(source).st_mtime > os.stat(target).st_mtime 74 target_mtime = os.stat(target).st_mtime 85 if os.stat(source).st_mtime > target_mtime:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | diff.py | 32 fromdate = time.ctime(os.stat(fromfile).st_mtime) 33 todate = time.ctime(os.stat(tofile).st_mtime)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | linecache.py | 64 if size != stat.st_size or mtime != stat.st_mtime: 133 size, mtime = stat.st_size, stat.st_mtime
|
D | py_compile.py | 108 timestamp = long(os.fstat(f.fileno()).st_mtime) 110 timestamp = long(os.stat(file).st_mtime)
|
D | dircache.py | 28 mtime = os.stat(path).st_mtime
|
D | genericpath.py | 54 return os.stat(filename).st_mtime
|
D | compileall.py | 87 mtime = int(os.stat(fullname).st_mtime)
|
D | SimpleHTTPServer.py | 95 self.send_header("Last-Modified", self.date_time_string(fs.st_mtime))
|
D | zipfile.py | 1033 mtime = time.localtime(st.st_mtime) 1342 os.stat(file_pyo).st_mtime >= os.stat(file_py).st_mtime: 1345 os.stat(file_pyc).st_mtime < os.stat(file_py).st_mtime:
|
D | filecmp.py | 61 st.st_mtime)
|
D | imputil.py | 497 return long(s.st_mtime)
|
D | shutil.py | 97 os.utime(dst, (st.st_atime, st.st_mtime))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | linecache.py | 68 if size != stat.st_size or mtime != stat.st_mtime: 137 size, mtime = stat.st_size, stat.st_mtime
|
D | genericpath.py | 62 return os.stat(filename).st_mtime
|
D | compileall.py | 87 mtime = int(os.stat(fullname).st_mtime)
|
D | SimpleHTTPServer.py | 103 self.send_header("Last-Modified", self.date_time_string(fs.st_mtime))
|
D | zipfile.py | 1125 mtime = time.localtime(st.st_mtime) 1452 os.stat(file_pyo).st_mtime >= os.stat(file_py).st_mtime: 1455 os.stat(file_pyc).st_mtime < os.stat(file_py).st_mtime:
|
D | shutil.py | 98 os.utime(dst, (st.st_atime, st.st_mtime))
|
/device/google/dragon/crash_collector/ |
D | crash_collector.cc | 92 all_files.push_back(std::make_pair(attributes.st_mtime, filename)); in MakeRoomForNewReport() 94 dump_mtimes.push_back(attributes.st_mtime); in MakeRoomForNewReport()
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | stat.h | 60 dtime_t st_mtime; ///< time of last data modification member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_os.py | 304 os.utime(test_support.TESTFN, (st.st_atime, int(st.st_mtime-delta))) 306 self.assertEqual(st2.st_mtime, int(st.st_mtime-delta)) 323 self.assertEqual(os.stat(self.fname).st_mtime, t1) 328 self.assertEqual(os.stat(self.fname).st_mtime, t1)
|
D | test_compileall.py | 30 mtime = int(os.stat(self.source_path).st_mtime)
|
/device/linaro/bootloader/edk2/CryptoPkg/Include/ |
D | OpenSslSupport.h | 162 time_t st_mtime; /* time of last data modification */ member
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/UefiShell/ |
D | daShell.c | 347 statbuf->st_mtime = Efi2Time( &FileInfo->ModificationTime); in da_ShellStat()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
D | import.c | 882 time_t mtime = srcstat->st_mtime; in write_compiled_module() 987 if (st.st_mtime >> 32) { in load_source_module() 996 (fpc = check_compiled_module(pathname, st.st_mtime, cpathname))) { in load_source_module()
|
12