Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/distutils/tests/
Dtest_file_util.py7 from distutils.file_util import move_file, copy_file
42 move_file(self.source, self.target, verbose=0)
47 move_file(self.target, self.source, verbose=0)
49 move_file(self.source, self.target, verbose=1)
54 move_file(self.target, self.source, verbose=0)
59 move_file(self.source, self.target_dir, verbose=1)
69 move_file(self.source, self.target, verbose=0)
78 move_file(self.source, self.target, verbose=0)
/external/python/cpython2/Lib/distutils/tests/
Dtest_file_util.py6 from distutils.file_util import move_file, write_file, copy_file
45 move_file(self.source, self.target, verbose=0)
50 move_file(self.target, self.source, verbose=0)
52 move_file(self.source, self.target, verbose=1)
57 move_file(self.target, self.source, verbose=0)
62 move_file(self.source, self.target_dir, verbose=1)
/external/selinux/secilc/docs/
Dcil_container_statements.md236 This example will instantiate the optional block `ext_gateway.move_file` into policy providing all …
240 (optional move_file
241 (typetransition process msg_filter.move_file.in_queue file msg_filter.move_file.in_file)
242 (allow process msg_filter.move_file.in_queue (dir (read getattr write search add_name)))
243 (allow process msg_filter.move_file.in_file (file (write create getattr)))
244 (allow msg_filter.move_file.in_file unconfined.object (filesystem (associate)))
245 (typetransition msg_filter.int_gateway.process msg_filter.move_file.out_queue file
246 msg_filter.move_file.out_file)
247 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_queue (dir (read write search)))
248 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_file (file (read getattr unlink)))
/external/libffi/
Dgenerate-darwin-source-and-headers.py100 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): function
127 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
/external/python/cpython2/Modules/_ctypes/libffi/
Dgenerate-darwin-source-and-headers.py100 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): function
127 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
/external/python/cpython3/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
911 def move_file(self, src, dst): member in CCompiler
912 return move_file(src, dst, dry_run=self.dry_run)
Dfile_util.py166 def move_file (src, dst, function
/external/python/cpython2/Lib/distutils/
Dcmd.py379 def move_file (self, src, dst, level=1): member in Command
381 return file_util.move_file(src, dst, dry_run = self.dry_run)
Dccompiler.py15 from distutils.file_util import move_file
878 def move_file(self, src, dst): member in CCompiler
879 return move_file(src, dst, dry_run=self.dry_run)
Dfile_util.py170 def move_file (src, dst, verbose=1, dry_run=0): function
/external/python/cpython3/Lib/distutils/command/
Dbdist_rpm.py377 self.move_file(srpm, self.dist_dir)
386 self.move_file(rpm, self.dist_dir)
/external/python/cpython2/Lib/distutils/command/
Dbdist_rpm.py391 self.move_file(srpm, self.dist_dir)
400 self.move_file(rpm, self.dist_dir)
/external/autotest/client/site_tests/platform_PrinterPpds/
Dplatform_PrinterPpds.py460 self._archivers[doc_name].move_file(ppd_name, ".err%d" % i,
462 self._archivers[doc_name].move_file(ppd_name, ".out%d.gz" % i,
Darchiver.py153 def move_file(self, prefix, name, path_file, apply_gzip=False): member in Archiver
/external/squashfs-tools/squashfs-tools/
Daction.c1870 static void move_file(struct move_ent *move_ent) in move_file() function
1969 move_file(move_list); in do_move_actions()
/external/python/cpython2/Doc/distutils/
Dapiref.rst749 .. method:: CCompiler.move_file(src, dst)
751 Invokes :meth:`distutils.file_util.move_file`. Renames *src* to *dst*.
1055 .. function:: move_file(src, dst[, verbose, dry_run])
/external/python/cpython3/Doc/distutils/
Dapiref.rst759 .. method:: CCompiler.move_file(src, dst)
761 Invokes :meth:`distutils.file_util.move_file`. Renames *src* to *dst*.
1061 .. function:: move_file(src, dst[, verbose, dry_run])
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst2508 Use e.args to unpack exceptions correctly in distutils.file_util.move_file.
/external/python/cpython3/Misc/
DHISTORY1482 distutils.file_util.move_file. Patch by Claudiu Popa.