Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 2 of 2) sorted by relevance

/bionic/benchmarks/linker_relocation/regen/
Ddump_relocs.py49 from pathlib import Path
56 g_path_to_soname_cache: Dict[Path, str] = {}
67 def get_elf_soname(path: Path) -> str: argument
81 def get_elf_needed(path: Path) -> List[str]: argument
105 def get_dyn_symbols(path: Path) -> DynSymbols: argument
152 def scan_relocations(path: Path, syms: DynSymbols) -> Relocations: argument
195 def load_elf_tree(search_path: List[Path], path: Path) -> LoadedLibrary: argument
211 def load(path: Path) -> LoadedLibrary: argument
239 search_path = [Path(p) for p in args.search_path]
241 with open(Path(args.output), 'w') as f:
[all …]
Dgen_bench.py47 from pathlib import Path
165 def make_asm_file(lib: LoadedLibrary, is_main: bool, out_filename: Path, map_out_filename: Path, argument
283 def make_ninja_benchmark(root: LoadedLibrary, defs: Definitions, cc: str, out: Path) -> None: argument
324 def make_soong_benchmark(root: LoadedLibrary, defs: Definitions, out: Path) -> None: argument
388 out = Path(args.out_dir)
389 with open(Path(args.input)) as f: