• Home
  • Raw
  • Download

Lines Matching refs:path

36 NDK_PATH = os.path.normpath(os.path.join(os.path.dirname(__file__), '../..'))
37 sys.path.append(os.path.join(NDK_PATH, "python-packages"))
185 path = os.path.join(NDK_PATH, "host-tools", "bin")
186 if not os.path.exists(path):
187 error("Failed to find ndk binary path, should be at '{}'".format(path))
189 return path
198 for path in paths:
199 if os.path.isdir(path):
201 full = path + os.sep + program + ext
202 if os.path.isfile(full):
238 args.project = os.path.realpath(args.project)
239 if not os.path.exists(os.path.join(args.project, manifest_name)):
245 while not os.path.exists(os.path.join(current_dir, manifest_name)):
246 parent_dir = os.path.dirname(current_dir)
255 args.manifest_path = os.path.join(args.project, manifest_name)
309 def cd(path): argument
311 os.chdir(path)
312 os.environ["PWD"] = path
322 os.path.join(NDK_PATH, "build/core/build-local.mk"),
466 local_path = os.path.realpath(out_dir + required_file)
467 local_dirname = os.path.dirname(local_path)
468 if not os.path.isdir(local_dirname):
557 path = os.path.join("libstdcxx", "gcc-4.9")
560 path = os.path.join("stlport", "stlport")
562 pp_path = os.path.join(
563 NDK_PATH, "host-tools", "share", "pretty-printers", path)
592 out_dir = os.path.join(project, (dump_var(args, "TARGET_OUT", abi)))
593 out_dir = os.path.realpath(out_dir)
642 zygote_path = os.path.join(out_dir, "system", "bin", "app_process64")
644 zygote_path = os.path.join(out_dir, "system", "bin", "app_process")
647 debug_socket = os.path.join(app_data_dir, "debug_socket")
654 gdb_path = os.path.join(ndk_bin_path(), "gdb")