Home | History | Annotate | Download | only in scripts

Lines Matching refs:binaries

18 """binary_cache_builder.py: read perf.data, collect binaries needed by
37 """Collect all binaries needed by perf.data in binary_cache."""
68 """read perf.data, collect all used binaries and their build id (if available)."""
70 binaries = dict()
86 if dso_name not in binaries:
87 binaries[dso_name] = lib.GetBuildIdForPath(dso_name)
88 self.binaries = binaries
100 # binaries if they have the same filename (like libsudo-game-jni.so)
105 for binary in self.binaries:
123 expected_build_id = self.binaries.get(binary)
147 """pull binaries needed in perf.data to binary_cache."""
148 for binary in self.binaries:
149 build_id = self.binaries[binary]
231 """Pull binaries needed by perf.data from device to binary_cache directory.""")