Searched refs:Dict (Results 1 – 10 of 10) sorted by relevance
/system/extras/simpleperf/scripts/ |
D | report_html.py | 28 from typing import Any, Callable, Dict, Iterator, List, Optional, Set, Tuple, Union 47 def open_tag(self, tag: str, **attrs: Dict[str, str]) -> HtmlWriter: 85 self.processes: Dict[int, ProcessScope] = {} # map from pid to ProcessScope 95 def get_sample_info(self, gen_addr_hit_map: bool) -> Dict[str, Any]: 124 self.threads: Dict[int, ThreadScope] = {} # map from tid to ThreadScope 135 def get_sample_info(self, gen_addr_hit_map: bool) -> Dict[str, Any]: 148 new_threads: Dict[str, ThreadScope] = {} # map from thread name to ThreadScope 167 self.libs: Dict[int, LibScope] = {} # map from lib_id to LibScope 224 def get_sample_info(self, gen_addr_hit_map: bool) -> Dict[str, Any]: 253 self.functions: Dict[int, FunctionScope] = {} # map from func_id to FunctionScope. [all …]
|
D | simpleperf_utils.py | 32 from typing import Dict, Iterator, List, Optional, Set, Union 463 def _load_build_id_map(self) -> Dict[str, Path]: 464 build_id_map: Dict[str, Path] = {} 538 self.addrs: Dict[int, Addr2Nearestline.Addr] = {} 558 self.dso_map: Dict[str, Addr2Nearestline.Dso] = {} # map from dso_path to Dso. 563 self.file_name_to_id: Dict[str, int] = {} 565 self.func_name_to_id: Dict[str, int] = {} 634 addr_map: Dict[int, List[Tuple[int]]] = {} 759 self.filename_to_rparents: Dict[str, List[str]] = {} 801 self.objdump_paths: Dict[str, str] = {}
|
D | simpleperf_report_lib.py | 27 from typing import Any, Dict, List, Optional, Union 273 self.meta_info: Optional[Dict[str, str]] = None 360 def GetTracingDataOfCurrentSample(self) -> Optional[Dict[str, Any]]: 420 def MetaInfo(self) -> Dict[str, str]:
|
D | debug_unwind_reporter.py | 42 from typing import Dict, Iterator, List 200 self.symbol_counters: Dict[int, Counter] = defaultdict(Counter)
|
/system/extras/perf2cfg/perf2cfg/ |
D | analyze.py | 28 from typing import DefaultDict, Dict, Iterable, Iterator, Optional 87 self.instructions: Dict[int, Instruction] = {} 142 self.methods: Dict[str, Method] = {}
|
/system/extras/simpleperf/scripts/test/ |
D | inferno_test.py | 19 from typing import Any, Dict, List
|
D | purgatorio_test.py | 20 from typing import Any, Dict, List
|
D | report_html_test.py | 19 from typing import Any, Dict, List 84 def get_record_data(self, options: List[str]) -> Dict[str, Any]:
|
D | do_test.py | 214 self.test_results: Dict[str, TestResult] = {} 296 self.test_process_bars: Dict[str, tqdm] = {} 327 self.results: Dict[Tuple[str, str], bool] = {}
|
/system/sepolicy/tests/ |
D | policy.py | 384 def __GenfsDictAdd(self, Dict, buf): argument 387 if not fs in Dict: 388 Dict[fs] = {Type} 390 Dict[fs].add(Type)
|