Lines Matching full:host
51 """Identify the host os and arch.
69 logger.Log("Error: Could not get host's OS and/or ARCH")
75 """Compute the full pathname to the host binary directory.
77 Typically $ANDROID_BUILD_TOP/out/host/linux-x86/bin.
83 The absolute file path of the Android host binary directory.
86 AbortError: if Android host binary directory could not be found.
89 path = os.path.join(GetTop(), "out", "host", os_arch, "bin")
91 logger.Log("Error: Host bin path could not be found %s" % path)
138 """Returns the full pathname to the host java library output directory.
140 Typically $ANDROID_BUILD_TOP/out/host/<host_os>/framework.
146 The absolute file path of the Android host java library directory.
149 AbortError: if Android host java library directory could not be found.
152 path = os.path.join(GetTop(), "out", "host", os_arch, "framework")
154 logger.Log("Error: Host library path could not be found %s" % path)