Lines Matching refs:binary
128 is no binary corresponding to the source file. We need to filter
139 binary = os.path.basename(f)
140 binary = os.path.splitext(binary)[0]
141 found = self._FindFileRecursively(path, binary)
143 binary = os.path.relpath(os.path.abspath(found),
145 binaries.append(binary)
149 """Finds the first executable binary in a given path that matches the name.
153 binary: Which binary to search for.
167 def _RunHostCommand(self, binary, valgrind=False):
170 Runs the host binary and returns the exit code.
177 binary: basename of the file to be run. It is expected to be under
184 full_path = os.path.join(android_build.GetHostBin(), binary)