Searched refs:rel_path (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/kernel/tools/ |
D | update_all.py | 45 rel_path = src_file[src_dir_len:] 47 if os.path.exists(os.path.join(mod_src_dir, rel_path)): 48 src_file = os.path.join(mod_src_dir, rel_path) 49 src_str = os.path.join("<modified>", src_rel_dir, rel_path) 51 src_str = os.path.join("<original>", src_rel_dir, rel_path) 52 dst_file = os.path.join(update_dir, rel_path) 53 new_data = clean_header.cleanupFile(dst_file, src_file, rel_path) 64 update_path = os.path.join(update_rel_dir, rel_path)
|
D | clean_header.py | 82 def cleanupFile(dst_file, src_file, rel_path, no_update = True): argument 98 m = re.search(r"(^|/)asm-([\w\d_\+\.\-]+)/.*", rel_path)
|
/bionic/tools/versioner/src/ |
D | Preprocessor.cpp | 458 std::string rel_path = path.substr(src_dir.length() + 1); in preprocessHeaders() local 459 std::string dst_path = dst_dir + "/" + rel_path; in preprocessHeaders() 496 llvm::StringRef rel_path = file_path.substr(src_dir.size(), file_path.size() - src_dir.size()); in preprocessHeaders() local 497 std::string output_path = (llvm::Twine(dst_dir) + rel_path).str(); in preprocessHeaders()
|
/bionic/libc/tools/ |
D | gensyscalls.py | 621 rel_path = os.path.join(arch_dir, "syscalls") 622 for file in os.listdir(os.path.join(bionic_libc_root, rel_path)): 624 self.old_stubs.append(os.path.join(rel_path, file))
|