/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | archive_util.py | 51 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 …]
|
D | dir_util.py | 19 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 …]
|
D | spawn.py | 17 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:
|
D | cmd.py | 349 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,
|
D | util.py | 383 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:
|
D | ccompiler.py | 143 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)
|
D | file_util.py | 72 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:
|
D | cygwinccompiler.py | 92 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)
|
D | emxccompiler.py | 44 dry_run=0, argument 47 UnixCCompiler.__init__ (self, verbose, dry_run, force)
|
D | bcppcompiler.py | 55 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/ |
D | clean.py | 55 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:
|
D | install_egg_info.py | 35 dir_util.remove_tree(target, dry_run=self.dry_run) 42 if not self.dry_run:
|
D | install_lib.py | 138 dry_run=self.dry_run) 142 verbose=self.verbose, dry_run=self.dry_run)
|
D | build_scripts.py | 78 if not self.dry_run: 95 if not self.dry_run: 119 if self.dry_run:
|
D | bdist_dumb.py | 132 remove_tree(self.bdist_dir, dry_run=self.dry_run)
|
D | sdist.py | 401 dir_util.create_tree(base_dir, files, dry_run=self.dry_run) 458 dir_util.remove_tree(base_dir, dry_run=self.dry_run)
|
D | build_py.py | 390 force=self.force, prefix=prefix, dry_run=self.dry_run) 393 force=self.force, prefix=prefix, dry_run=self.dry_run)
|
D | build_clib.py | 102 dry_run=self.dry_run,
|
D | install_scripts.py | 51 if self.dry_run:
|
D | upload.py | 78 dry_run=self.dry_run)
|
D | config.py | 102 dry_run=self.dry_run, force=1)
|
D | bdist_wininst.py | 197 remove_tree(self.bdist_dir, dry_run=self.dry_run)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | shutil.py | 338 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/ |
D | shutil.py | 334 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/ |
D | setuptools_build_ext.py | 69 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:
|