Searched refs:ST_MODE (Results 1 – 25 of 33) sorted by relevance
12
/external/python/cpython3/Lib/distutils/command/ |
D | install_scripts.py | 11 from stat import ST_MODE 52 mode = ((os.stat(file)[ST_MODE]) | 0o555) & 0o7777
|
D | build_scripts.py | 6 from stat import ST_MODE 145 oldmode = os.stat(file)[ST_MODE] & 0o7777
|
/external/python/cpython2/Lib/distutils/command/ |
D | install_scripts.py | 13 from stat import ST_MODE 54 mode = ((os.stat(file)[ST_MODE]) | 0555) & 07777
|
D | build_scripts.py | 8 from stat import ST_MODE 122 oldmode = os.stat(file)[ST_MODE] & 07777
|
/external/python/cpython2/Demo/threads/ |
D | find.py | 127 return (stat[ST_MODE] & 0002) != 0 and not S_ISLNK(stat[ST_MODE]) 148 if S_ISDIR(stat[ST_MODE]):
|
/external/python/cpython2/Tools/scripts/ |
D | which.py | 34 if not S_ISREG(st[ST_MODE]): 37 mode = S_IMODE(st[ST_MODE])
|
D | mkreal.py | 19 mode = S_IMODE(st[ST_MODE]) 33 mode = S_IMODE(st[ST_MODE])
|
D | xxci.py | 68 if not S_ISREG(st[ST_MODE]): return 1
|
D | pathfix.py | 124 os.chmod(tempname, statbuf[ST_MODE] & 07777)
|
D | methfix.py | 143 os.chmod(tempname, statbuf[ST_MODE] & 07777)
|
D | classfix.py | 132 os.chmod(tempname, statbuf[ST_MODE] & 07777)
|
D | fixcid.py | 178 os.chmod(tempname, statbuf[ST_MODE] & 07777)
|
/external/python/cpython3/Tools/scripts/ |
D | which.py | 34 if not S_ISREG(st[ST_MODE]): 37 mode = S_IMODE(st[ST_MODE])
|
D | mkreal.py | 19 mode = S_IMODE(st[ST_MODE]) 32 mode = S_IMODE(st[ST_MODE])
|
D | pathfix.py | 157 os.chmod(tempname, statbuf[ST_MODE] & 0o7777)
|
D | fixcid.py | 178 os.chmod(tempname, statbuf[ST_MODE] & 0o7777)
|
/external/python/cpython2/Lib/distutils/ |
D | file_util.py | 106 from stat import ST_ATIME, ST_MTIME, ST_MODE, S_IMODE 165 os.chmod(dst, S_IMODE(st[ST_MODE]))
|
D | filelist.py | 260 from stat import ST_MODE, S_ISREG, S_ISDIR, S_ISLNK 279 mode = stat[ST_MODE]
|
/external/python/cpython3/Lib/distutils/ |
D | file_util.py | 101 from stat import ST_ATIME, ST_MTIME, ST_MODE, S_IMODE 160 os.chmod(dst, S_IMODE(st[ST_MODE]))
|
/external/python/cpython2/Demo/comparisons/ |
D | systemtest.py | 52 mode = os.lstat(name)[ST_MODE]
|
/external/python/cpython2/Lib/ |
D | stat.py | 8 ST_MODE = 0 variable
|
/external/python/cpython3/Lib/ |
D | stat.py | 8 ST_MODE = 0 variable
|
/external/python/cpython2/Demo/scripts/ |
D | eqfix.py | 146 os.chmod(tempname, statbuf[ST_MODE] & 07777)
|
/external/python/cpython2/Doc/library/ |
D | stat.rst | 110 .. data:: ST_MODE 170 The variables below define the flags used in the :data:`ST_MODE` field.
|
/external/python/cpython3/Doc/library/ |
D | stat.rst | 147 .. data:: ST_MODE 207 The variables below define the flags used in the :data:`ST_MODE` field.
|
12