Home
last modified time | relevance | path

Searched refs:dry_run (Results 1 – 25 of 34) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Darchive_util.py51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, argument
81 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
100 if not dry_run:
116 spawn(cmd, dry_run=dry_run)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0): argument
136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
148 dry_run=dry_run)
161 if not dry_run:
194 dry_run=0, owner=None, group=None): argument
215 if not dry_run:
[all …]
Ddir_util.py19 def mkpath(name, mode=0777, verbose=1, dry_run=0): argument
70 if not dry_run:
82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0): argument
101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
104 preserve_symlinks=0, update=0, verbose=1, dry_run=0): argument
126 if not dry_run and not os.path.isdir(src):
132 if dry_run:
138 if not dry_run:
151 if not dry_run:
159 verbose=verbose, dry_run=dry_run))
[all …]
Dspawn.py17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): argument
34 _spawn_posix(cmd, search_path, dry_run=dry_run)
36 _spawn_nt(cmd, search_path, dry_run=dry_run)
38 _spawn_os2(cmd, search_path, dry_run=dry_run)
59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): argument
66 if not dry_run:
79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0): argument
85 if not dry_run:
100 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0): argument
102 if dry_run:
Dcmd.py349 util.execute(func, args, msg, dry_run=self.dry_run)
352 dir_util.mkpath(name, mode, dry_run=self.dry_run)
365 dry_run=self.dry_run)
377 dry_run=self.dry_run)
381 return file_util.move_file(src, dst, dry_run = self.dry_run)
386 spawn(cmd, search_path, dry_run= self.dry_run)
391 base_dir, dry_run=self.dry_run,
Dutil.py383 def execute (func, args, msg=None, verbose=0, dry_run=0): argument
398 if not dry_run:
421 verbose=1, dry_run=0, argument
478 if not dry_run:
518 spawn(cmd, dry_run=dry_run)
520 dry_run=dry_run)
553 if not dry_run:
Dccompiler.py143 def __init__ (self, verbose=0, dry_run=0, force=0): argument
144 self.dry_run = dry_run
518 if self.dry_run:
922 execute(func, args, msg, self.dry_run)
925 spawn(cmd, dry_run=self.dry_run)
928 return move_file(src, dst, dry_run=self.dry_run)
931 mkpath(name, mode, dry_run=self.dry_run)
1012 def new_compiler(plat=None, compiler=None, verbose=0, dry_run=0, force=0): argument
1054 return klass(None, dry_run, force)
Dfile_util.py72 link=None, verbose=1, dry_run=0): argument
133 if dry_run:
162 def move_file (src, dst, verbose=1, dry_run=0): argument
178 if dry_run:
Dcygwinccompiler.py92 def __init__ (self, verbose=0, dry_run=0, force=0): argument
94 UnixCCompiler.__init__ (self, verbose, dry_run, force)
303 dry_run=0, argument
306 CygwinCCompiler.__init__ (self, verbose, dry_run, force)
Demxccompiler.py44 dry_run=0, argument
47 UnixCCompiler.__init__ (self, verbose, dry_run, force)
Dbcppcompiler.py55 dry_run=0, argument
58 CCompiler.__init__ (self, verbose, dry_run, force)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dclean.py55 remove_tree(self.build_temp, dry_run=self.dry_run)
66 remove_tree(directory, dry_run=self.dry_run)
73 if not self.dry_run:
Dinstall_egg_info.py35 dir_util.remove_tree(target, dry_run=self.dry_run)
42 if not self.dry_run:
Dinstall_lib.py138 dry_run=self.dry_run)
142 verbose=self.verbose, dry_run=self.dry_run)
Dbuild_scripts.py78 if not self.dry_run:
95 if not self.dry_run:
119 if self.dry_run:
Dbdist_dumb.py132 remove_tree(self.bdist_dir, dry_run=self.dry_run)
Dsdist.py401 dir_util.create_tree(base_dir, files, dry_run=self.dry_run)
458 dir_util.remove_tree(base_dir, dry_run=self.dry_run)
Dbuild_py.py390 force=self.force, prefix=prefix, dry_run=self.dry_run)
393 force=self.force, prefix=prefix, dry_run=self.dry_run)
Dbuild_clib.py102 dry_run=self.dry_run,
Dinstall_scripts.py51 if self.dry_run:
Dupload.py78 dry_run=self.dry_run)
Dconfig.py102 dry_run=self.dry_run, force=1)
Dbdist_wininst.py197 remove_tree(self.bdist_dir, dry_run=self.dry_run)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dshutil.py338 def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, argument
368 if not dry_run:
390 if not dry_run:
399 def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): argument
408 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
417 def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): argument
432 if not dry_run:
443 _call_external_zip(base_dir, zip_filename, verbose, dry_run)
449 if not dry_run:
504 dry_run=0, owner=None, group=None, logger=None): argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dshutil.py334 def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, argument
363 if not dry_run:
385 if not dry_run:
394 def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): argument
403 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
412 def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): argument
427 if not dry_run:
438 _call_external_zip(base_dir, zip_filename, verbose, dry_run)
444 if not dry_run:
501 dry_run=0, owner=None, group=None, logger=None): argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dsetuptools_build_ext.py69 dry_run=self.dry_run
128 compiler=self.compiler, dry_run=self.dry_run, force=self.force
213 if not self.dry_run:
240 force=True, dry_run=self.dry_run)
244 force=True, dry_run=self.dry_run)
245 if os.path.exists(stub_file) and not self.dry_run:

12