Home | History | Annotate | Download | only in testrunner

Lines Matching refs:path

37     the absolute file path of the Android build root.
58 the absolute file path of the Android host output directory.
77 the absolute file path of the Android build output directory.
81 root_path = os.path.join(GetTop(), "out")
94 The absolute file path of the Android host binary directory.
99 path = os.path.join(GetHostOutDir(), "bin")
100 if not os.path.exists(path):
101 logger.Log("Error: Host bin path could not be found %s" % path)
103 return path
115 The absolute file path of the Android product directory.
120 path = os.getenv("ANDROID_PRODUCT_OUT")
121 if path is None:
125 return path
135 The absolute file path of the Android target native test directory.
140 path = os.path.join(GetProductOut(), "data", "nativetest")
141 if not os.path.exists(path):
142 logger.Log("Error: Target native test path could not be found")
144 return path
156 The absolute file path of the Android target system bin directory.
161 path = os.path.join(GetProductOut(), "system", "bin")
162 if not os.path.exists(path):
163 logger.Log("Error: Target system bin path could not be found")
165 return path
176 The absolute file path of the Android host java library directory.
181 path = os.path.join(GetHostOutDir(), "framework")
182 if not os.path.exists(path):
183 logger.Log("Error: Host library path could not be found %s" % path)
185 return path
196 The absolute file path of the Android test app build directory.
198 return os.path.join(GetProductOut(), "data", "app")