Home | History | Annotate | Download | only in ndk

Lines Matching refs:src_file

232     src_file = os.path.join(src_dir, file_name)
235 print('Copying {} to {}...'.format(src_file, dst_file))
236 if os.path.isdir(src_file):
237 _install_dir(src_file, dst_file)
238 elif os.path.islink(src_file):
239 _install_symlink(src_file, dst_file)
241 _install_file(src_file, dst_file)
251 def _install_symlink(src_file, dst_file):
255 link_target = os.readlink(src_file)
259 def _install_file(src_file, dst_file):
264 shutil.copy2(src_file, dst_file)