Lines Matching refs:copy_function
451 def _copytree(entries, src, dst, symlinks, ignore, copy_function, argument
460 use_srcentry = copy_function is copy2 or copy_function is copy
491 copy_function, dirs_exist_ok=dirs_exist_ok)
493 copy_function(srcobj, dstname)
495 copytree(srcobj, dstname, symlinks, ignore, copy_function,
499 copy_function(srcobj, dstname)
516 def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, argument
558 ignore=ignore, copy_function=copy_function,
764 def move(src, dst, copy_function=copy2): argument
816 copytree(src, real_dst, copy_function=copy_function,
820 copy_function(src, real_dst)