Added dynamic tables for preceding and following flows

Following/Preceding tables contain all entries of flow events table
that directly or indirectly connected to the starting slice.


FOLLOWING_FLOW(start_slice_id) - all entries of flow events table that
have flow.slice_out=start_slice_id or there is a chain of slice_ids:
start_slice_id -> slice_id_1 -> ... slice_id_n -> flow.slice_in
and each pair of neighbour slices in this chain has a flow between them

PRECEDING_FLOW(start_slice_id) - the same as FOLLOWING_FLOW but in
opposite direction.

CONNECTED_FLOW(start_slice_id) - union if following and preceding tables

Bug:153137035
Change-Id: I1c464ba35a360004b5d3c4dfd83cc31f27107ac4
11 files changed
tree: 4ac7b4dda70bc1ba0e4f656dcf40f949840535a7
  1. bazel/
  2. build_overrides/
  3. buildtools/
  4. debian/
  5. docs/
  6. examples/
  7. gn/
  8. include/
  9. infra/
  10. protos/
  11. src/
  12. test/
  13. tools/
  14. ui/
  15. .clang-format
  16. .clang-tidy
  17. .gitignore
  18. .gn
  19. .style.yapf
  20. Android.bp
  21. Android.bp.extras
  22. BUILD
  23. BUILD.extras
  24. BUILD.gn
  25. CHANGELOG
  26. codereview.settings
  27. heapprofd.rc
  28. LICENSE
  29. METADATA
  30. MODULE_LICENSE_APACHE2
  31. OWNERS
  32. perfetto.rc
  33. PRESUBMIT.py
  34. README.chromium
  35. README.md
  36. TEST_MAPPING
  37. traced_perf.rc
  38. WORKSPACE
README.md

Perfetto - System profiling, app tracing and trace analysis

Perfetto is a production-grade open-source stack for performance instrumentation and trace analysis. It offers services and libraries and for recording system-level and app-level traces, native + java heap profiling, a library for analyzing traces using SQL and a web-based UI to visualize and explore multi-GB traces.

See https://perfetto.dev/docs or the /docs/ directory for documentation.