Lines Matching full:path
37 the absolute file path of the Android build root.
83 The absolute file path of the Android host binary directory.
89 path = os.path.join(GetTop(), "out", "host", os_arch, "bin")
90 if not os.path.exists(path):
91 logger.Log("Error: Host bin path could not be found %s" % path)
93 return path
105 The absolute file path of the Android product directory.
110 path = os.getenv("ANDROID_PRODUCT_OUT")
111 if path is None:
114 return path
126 The absolute file path of the Android target system bin directory.
131 path = os.path.join(GetProductOut(), "system", "bin")
132 if not os.path.exists(path):
133 logger.Log("Error: Target system bin path could not be found")
135 return path
146 The absolute file path of the Android host java library directory.
152 path = os.path.join(GetTop(), "out", "host", os_arch, "framework")
153 if not os.path.exists(path):
154 logger.Log("Error: Host library path could not be found %s" % path)
156 return path
167 The absolute file path of the Android test app build directory.
169 return os.path.join(GetProductOut(), "data", "app")