Lines Matching refs:root
28 def get_gdbserver_path(root, arch): argument
31 return path.format(root, arch, "64", "64")
33 return path.format(root, arch, "", "")
61 def dump_var(root, variable): argument
63 "BUILD_SYSTEM={}/build/core".format(root),
65 "{}/build/core/config.mk".format(root),
71 os.environ['PWD'] = root
72 make_output = subprocess.check_output(make_args, cwd=root)
77 def verify_device(root, props): argument
79 target_device = dump_var(root, "TARGET_DEVICE")
157 root = os.environ["ANDROID_BUILD_TOP"]
170 gdb_commands += "directory '{}'\n".format(root)
174 dalvik_gdb_script = os.path.join(root, "development", "scripts", "gdb",
219 root = os.environ["ANDROID_BUILD_TOP"]
220 sysroot = dump_var(root, "abs-TARGET_OUT_UNSTRIPPED")
223 verify_device(root, props)
240 gdbserver_local_path = get_gdbserver_path(root, arch)
260 gdb_path = os.path.join(root, "prebuilts", "gdb", platform_name, "bin",