Home | History | Annotate | Download | only in tools

Lines Matching full:join

29 bionic_libc_root = os.path.join(os.environ["ANDROID_BUILD_TOP"], "bionic/libc")
45 full_path = os.path.join(bionic_temp, relpath)
418 return_type = string.join(return_type[:-1],' ')
456 params = string.join(syscall_params,',')
565 self.scan_linux_unistd_h(glibc_fp, os.path.join(bionic_libc_root, "kernel/uapi/asm-generic/unistd.h"))
567 self.scan_linux_unistd_h(glibc_fp, os.path.join(bionic_libc_root, "kernel/uapi/asm-arm/asm/unistd.h"))
569 self.scan_linux_unistd_h(glibc_fp, os.path.join(bionic_libc_root, "kernel/uapi/asm-mips/asm/unistd.h"))
571 self.scan_linux_unistd_h(glibc_fp, os.path.join(bionic_libc_root, "kernel/uapi/asm-x86/asm/unistd_32.h"))
573 self.scan_linux_unistd_h(glibc_fp, os.path.join(bionic_libc_root, "kernel/uapi/asm-x86/asm/unistd_64.h"))
599 logging.info("scanning " + os.path.join(bionic_libc_root, arch_dir))
600 rel_path = os.path.join(arch_dir, "syscalls")
601 for file in os.listdir(os.path.join(bionic_libc_root, rel_path)):
603 self.old_stubs.append(os.path.join(rel_path, file))
621 tmp_file = os.path.join(bionic_temp, stub)
622 libc_file = os.path.join(bionic_libc_root, stub)
637 deletes.append(os.path.join(bionic_libc_root, stub))
641 commands.getoutput("git add " + " ".join(adds))
643 commands.getoutput("git rm " + " ".join(deletes))
646 shutil.copyfile(os.path.join(bionic_temp, file),
647 os.path.join(bionic_libc_root, file))
648 commands.getoutput("git add " + " ".join((os.path.join(bionic_libc_root, file)) for file in edits))
650 commands.getoutput("git add %s" % (os.path.join(bionic_libc_root, "SYSCALLS.TXT")))
660 state.process_file(os.path.join(bionic_libc_root, "SYSCALLS.TXT"))