Searched refs:dir_name (Results 1 – 2 of 2) sorted by relevance
/pdk/build/ |
D | pdk_utils.py | 22 def copy_dir(src_top, dest_top, dir_name, cp_option = ""): argument 24 src_full_path = src_top + "/" + dir_name 26 [mid_path, leaf_path] = dir_name.rsplit("/", 1) 34 def copy_dir_only_file(src_top, dest_top, dir_name): argument 36 src_full_path = src_top + "/" + dir_name 37 dest_full_path = dest_top + "/" + dir_name 91 def list_files(dir_name, dir_exclusion_filter = ""): argument 96 if dir_exclusion_filter != "" and dir_name.endswith(dir_exclusion_filter): 98 for item in os.listdir(dir_name): 99 item_full_path = dir_name + "/" + item
|
D | prepare_pdk_tree.py | 77 def create_symbolic_link(src_top, dest_top, dir_name): argument 78 src_full = src_top + "/" + dir_name 79 dest_full = dest_top + "/" + dir_name
|