Searched refs:copystat (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Doc/library/ |
D | shutil.rst | 102 platform; please see :func:`copystat` for more information. If 111 .. function:: copystat(src, dst, *, follow_symlinks=True) 114 flags from *src* to *dst*. On Linux, :func:`copystat` also copies the 120 refer to symbolic links, :func:`copystat` will operate on 133 ``True``, :func:`copystat` can modify the permission 137 ``True``, :func:`copystat` can modify the last access 141 ``True``, :func:`copystat` can modify the flags of 147 :func:`copystat` will copy everything it can. 148 :func:`copystat` never returns failure. 153 .. audit-event:: shutil.copystat src,dst shutil.copystat [all …]
|
/third_party/littlefs/scripts/ |
D | prefix.py | 50 shutil.copystat(newname, newname+'~')
|
/third_party/python/Lib/ |
D | shutil.py | 337 def copystat(src, dst, *, follow_symlinks=True): function 435 copystat(src, dst, follow_symlinks=follow_symlinks) 482 copystat(srcobj, dstname, follow_symlinks=not symlinks) 506 copystat(src, dst)
|
/third_party/python/Lib/test/ |
D | test_shutil.py | 895 shutil.copystat(src_link, dst_link, follow_symlinks=True) 898 shutil.copystat(src_link, dst_link, follow_symlinks=False) 910 shutil.copystat(src_link, dst, follow_symlinks=False) 936 shutil.copystat(file1, file2) 939 self.assertRaises(OSError, shutil.copystat, file1, file2) 1004 shutil.copystat(src, dst) 1005 shutil.copystat(srcro, dstro)
|
D | test_embed.py | 1216 shutil.copystat(self.test_exe, exec_copy)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0b1.rst | 875 :func:`shutil.copystat` now ignores :const:`errno.EINVAL` on 1069 In `shutil.copystat()`, first copy extended file attributes and then file
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | decNumber.cpp | 1468 uInt copystat=0; /* clean status */ in uprv_decNumberLog10() local 1472 decCopyFit(w, rhs, &aset, &residue, ©stat); /* copy & shorten */ in uprv_decNumberLog10() 1474 if (!(copystat&DEC_Inexact) && w->lsu[0]==1) { in uprv_decNumberLog10()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | decNumber.cpp | 1468 uInt copystat=0; /* clean status */ in uprv_decNumberLog10() local 1472 decCopyFit(w, rhs, &aset, &residue, ©stat); /* copy & shorten */ in uprv_decNumberLog10() 1474 if (!(copystat&DEC_Inexact) && w->lsu[0]==1) { in uprv_decNumberLog10()
|
/third_party/icu/icu4c/source/i18n/ |
D | decNumber.cpp | 1468 uInt copystat=0; /* clean status */ in uprv_decNumberLog10() local 1472 decCopyFit(w, rhs, &aset, &residue, ©stat); /* copy & shorten */ in uprv_decNumberLog10() 1474 if (!(copystat&DEC_Inexact) && w->lsu[0]==1) { in uprv_decNumberLog10()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | decNumber.cpp | 1468 uInt copystat=0; /* clean status */ in uprv_decNumberLog10() local 1472 decCopyFit(w, rhs, &aset, &residue, ©stat); /* copy & shorten */ in uprv_decNumberLog10() 1474 if (!(copystat&DEC_Inexact) && w->lsu[0]==1) { in uprv_decNumberLog10()
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1799 * :func:`~shutil.copy2` and :func:`~shutil.copystat` now preserve file
|
/third_party/python/Misc/ |
D | HISTORY | 6923 - Issue #15238: `shutil.copystat()` now copies Linux "extended attributes". 7670 - Issue #14127 and #10148: shutil.copystat now preserves exact mtime and atime 8890 (copyfile, copymode, copystat, copy, copy2). When that parameter is 13643 - Issue #7512: shutil.copystat() could raise an OSError when the filesystem
|