• Home
  • Raw
  • Download

Lines Matching refs:py

7 After using `simpleperf record` or `app_profiler.py`, we get a profile data file. The file contains
25 We can use `pprof_proto_generator.py` to convert profiles into pprof.profile protobufs for use in
30 ./pprof_proto_generator.py
33 ./pprof_proto_generator.py --proguard-mapping-file proguard.map
36 ./pprof_proto_generator.py --comm com.example.android.displayingbitmaps
67 We can use `gecko_profile_generator.py` to convert raw perf.data files into a Firefox Profile, with
72 ./gecko_profile_generator.py | gzip > gecko_profile.json.gz
75 ./gecko_profile_generator.py --proguard-mapping-file proguard.map | gzip > gecko_profile.json.gz
129 python3 run.py
135 format with `report_sample.py`, and place it in Flamescope's examples directory:
139 report_sample.py | gzip > ~/flamescope/examples/my_simpleperf_profile.gz
142 report_sample.py \
153 report_sample.py \
165 Use Simpleperf's `stackcollapse.py` to convert perf.data to Folded Stacks format for the FlameGraph
175 ./stackcollapse.py --kernel --jit -i perf_before.data \
179 ./stackcollapse.py --kernel --jit -i perf_after.data \
252 ./report_html.py
255 ./report_html.py --proguard-mapping-file proguard.map
261 See also [report_html.py's README](scripts_reference.md#report_htmlpy) and `report_html.py -h`.
322 You can call `simpleperf report` directly or call it via `report.py`.
326 $ ./report.py --children
333 `report.py -h`.
338 If the above View UIs can't fulfill your need, you can use `simpleperf_report_lib.py` to parse
341 See [simpleperf_report_lib.py's README](scripts_reference.md#simpleperf_report_libpy) for more