Home
last modified time | relevance | path

Searched refs:move_file (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/distutils/tests/
Dtest_file_util.py7 from distutils.file_util import move_file, copy_file
44 move_file(self.source, self.target, verbose=0)
49 move_file(self.target, self.source, verbose=0)
51 move_file(self.source, self.target, verbose=1)
56 move_file(self.target, self.source, verbose=0)
61 move_file(self.source, self.target_dir, verbose=1)
71 move_file(self.source, self.target, verbose=0)
80 move_file(self.source, self.target, verbose=0)
/third_party/selinux/secilc/docs/
Dcil_container_statements.md260 This example will instantiate the optional block `ext_gateway.move_file` into policy providing all …
265 (optional move_file
266 (typetransition process msg_filter.move_file.in_queue file msg_filter.move_file.in_file)
267 (allow process msg_filter.move_file.in_queue (dir (read getattr write search add_name)))
268 (allow process msg_filter.move_file.in_file (file (write create getattr)))
269 (allow msg_filter.move_file.in_file unconfined.object (filesystem (associate)))
270 (typetransition msg_filter.int_gateway.process msg_filter.move_file.out_queue file
271 msg_filter.move_file.out_file)
272 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_queue (dir (read write search)))
273 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_file (file (read getattr unlink)))
/third_party/cef/tools/
Dfile_util.py66 move_file(name, name + '.' + time.strftime('%Y-%m-%d-%H-%M-%S'))
82 def move_file(src, dst, quiet=True): function
Dpatch_updater.py13 from file_util import copy_file, move_file, read_file, remove_file
268 move_file(backup_path_abs, patch_path_abs)
/third_party/libffi/
Dgenerate-darwin-source-and-headers.py98 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): function
128 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
/third_party/python/Lib/distutils/
Dcmd.py358 def move_file (self, src, dst, level=1): member in Command
360 return file_util.move_file(src, dst, dry_run=self.dry_run)
Dccompiler.py9 from distutils.file_util import move_file
912 def move_file(self, src, dst): member in CCompiler
913 return move_file(src, dst, dry_run=self.dry_run)
Dfile_util.py166 def move_file (src, dst, function
/third_party/python/Lib/distutils/command/
Dbdist_rpm.py373 self.move_file(srpm, self.dist_dir)
382 self.move_file(rpm, self.dist_dir)
/third_party/ntfs-3g/ntfsprogs/
Dntfsmove.c805 static s64 move_file(ntfs_volume *vol, ntfs_inode *ino, u64 loc, int flags) in move_file() function
898 count = move_file(vol, inode, opts.location, 0); in main()
/third_party/boost/boost/winapi/
Dfile_management.hpp524 BOOST_FORCEINLINE BOOL_ move_file(LPCSTR_ lpExistingFileName, LPCSTR_ lpNewFileName, DWORD_ dwFlags) in move_file() function
540 BOOST_FORCEINLINE BOOL_ move_file(LPCWSTR_ lpExistingFileName, LPCWSTR_ lpNewFileName, DWORD_ dwFla… in move_file() function
/third_party/boost/libs/log/src/
Dtext_file_backend.cpp82 inline void move_file(
884 move_file(src_path, info.m_Path);
1499 move_file(prev_file_name, new_file_name); in rotate_file()
/third_party/python/Doc/distutils/
Dapiref.rst774 .. method:: CCompiler.move_file(src, dst)
776 Invokes :meth:`distutils.file_util.move_file`. Renames *src* to *dst*.
1076 .. function:: move_file(src, dst[, verbose, dry_run])
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst2508 Use e.args to unpack exceptions correctly in distutils.file_util.move_file.
/third_party/python/Misc/
DHISTORY1482 distutils.file_util.move_file. Patch by Claudiu Popa.