Searched refs:ST_MTIME (Results 1 - 25 of 27) sorted by relevance

12

/external/python/cpython3/Lib/distutils/
H A Ddep_util.py23 from stat import ST_MTIME namespace
24 mtime1 = os.stat(source)[ST_MTIME]
25 mtime2 = os.stat(target)[ST_MTIME]
75 from stat import ST_MTIME namespace
76 target_mtime = os.stat(target)[ST_MTIME]
86 source_mtime = os.stat(source)[ST_MTIME]
H A Dfile_util.py101 from stat import ST_ATIME, ST_MTIME, ST_MODE, S_IMODE namespace
158 os.utime(dst, (st[ST_ATIME], st[ST_MTIME]))
/external/python/cpython2/Lib/distutils/
H A Ddep_util.py10 from stat import ST_MTIME namespace
31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME]
75 target_mtime = os.stat(target)[ST_MTIME]
86 if os.stat(source)[ST_MTIME] > target_mtime:
H A Dfile_util.py106 from stat import ST_ATIME, ST_MTIME, ST_MODE, S_IMODE namespace
163 os.utime(dst, (st[ST_ATIME], st[ST_MTIME]))
/external/python/cpython2/Tools/scripts/
H A Dcopytime.py7 from stat import ST_ATIME, ST_MTIME # Really constants 7 and 8 namespace
20 os.utime(file2, (stat1[ST_ATIME], stat1[ST_MTIME]))
H A Dbyteyears.py22 itime = ST_MTIME
31 itime = ST_MTIME
H A Dcheckpyc.py7 from stat import ST_MTIME namespace
56 elif mtime <> st[ST_MTIME]:
H A Dcvsfiles.py69 return st[stat.ST_MTIME]
H A Dxxci.py37 return st[ST_MTIME]
H A Dtreesync.py167 return st[stat.ST_MTIME]
/external/python/cpython3/Tools/scripts/
H A Dcopytime.py7 from stat import ST_ATIME, ST_MTIME # Really constants 7 and 8 namespace
20 os.utime(file2, (stat1[ST_ATIME], stat1[ST_MTIME]))
H A Dbyteyears.py22 itime = ST_MTIME
31 itime = ST_MTIME
H A Dcheckpyc.py7 from stat import ST_MTIME namespace
57 elif mtime != st[ST_MTIME]:
H A Dtreesync.py167 return st[stat.ST_MTIME]
/external/python/cpython2/Lib/
H A Dstat.py16 ST_MTIME = 8 variable
/external/autotest/client/site_tests/login_ChromeProfileSanitary/
H A Dlogin_ChromeProfileSanitary.py39 return cookies_info[stat.ST_MTIME]
/external/python/cpython2/Demo/pdist/
H A DFSProxy.py159 return time.localtime(os.stat(name)[ST_MTIME])
164 mtime = time.localtime(os.stat(name)[ST_MTIME])
170 mtime = time.localtime(os.stat(name)[ST_MTIME])
/external/python/cpython2/Demo/scripts/
H A Dmboxconvert.py93 t = os.fstat(f.fileno())[stat.ST_MTIME]
/external/python/cpython3/Lib/
H A Dstat.py16 ST_MTIME = 8 variable
/external/python/cpython2/Lib/plat-irix5/
H A Dflp.py112 from stat import ST_MTIME namespace
114 return os.stat(filename)[ST_MTIME]
/external/python/cpython2/Lib/plat-irix6/
H A Dflp.py111 from stat import ST_MTIME namespace
113 return os.stat(filename)[ST_MTIME]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dlookup.py329 template_stat[stat.ST_MTIME]:
H A Dtemplate.py369 filemtime = os.stat(filename)[stat.ST_MTIME]
371 os.stat(path)[stat.ST_MTIME] < filemtime:
/external/python/cpython2/Lib/plat-riscos/
H A Driscospath.py198 return st[stat.ST_MTIME]
/external/python/cpython2/Lib/logging/
H A Dhandlers.py27 from stat import ST_DEV, ST_INO, ST_MTIME namespace
218 t = os.stat(filename)[ST_MTIME]

Completed in 2586 milliseconds

12