Old question, but someone else might stumble upon the same problem (as I did 5 minutes ago) ...
To run traceview from the command line, you must pass the .trace file for processing (it does not work, like most other graphics programs in which you run the application, and then File-> Open input files), as described here:
http://developer.android.com/tools/debugging/debugging-tracing.html#runningtraceview
This will create a GUI with profiling data for your application.
Instructions on how to create trace files are also described in the previous link.
You can also start tracing directly from DDMS (or the Eclipse DDMS perspective) by starting and stopping the method trace:

in this case, you are probably better off setting some breakpoints, since only methods called between start and stop will be tracked (which will make application initialization tracing difficult ...)
Hope this helps
source share