OSDN Git Service

Implement simpleperf list subcommand.
authorYabin Cui <yabinc@google.com>
Thu, 16 Apr 2015 22:26:31 +0000 (15:26 -0700)
committerYabin Cui <yabinc@google.com>
Sat, 18 Apr 2015 20:58:37 +0000 (13:58 -0700)
commit67d3abd7b26a741347b33402ad32f5c6735ca0bd
tree6221972e801ab3aa949308aa012f52390c8dbebe
parent81c39be5ecdc37c32439c9b7d078be182505a34e
Implement simpleperf list subcommand.

simpleperf is used to replace linux/tools/perf. And This CL implements
the list subcommand of it.

Change-Id: I3e6fe854e19cc370070d0fd8416d0aa6fa8f8e90
17 files changed:
simpleperf/Android.mk [new file with mode: 0644]
simpleperf/cmd_help.cpp [new file with mode: 0644]
simpleperf/cmd_list.cpp [new file with mode: 0644]
simpleperf/command.cpp [new file with mode: 0644]
simpleperf/command.h [new file with mode: 0644]
simpleperf/event_attr.cpp [new file with mode: 0644]
simpleperf/event_attr.h [new file with mode: 0644]
simpleperf/event_fd.cpp [new file with mode: 0644]
simpleperf/event_fd.h [new file with mode: 0644]
simpleperf/event_type.cpp [new file with mode: 0644]
simpleperf/event_type.h [new file with mode: 0644]
simpleperf/event_type_table.h [new file with mode: 0644]
simpleperf/generate_event_type_table.py [new file with mode: 0755]
simpleperf/main.cpp [new file with mode: 0644]
simpleperf/perf_event.h [new file with mode: 0644]
simpleperf/utils.cpp [new file with mode: 0644]
simpleperf/utils.h [new file with mode: 0644]