Lines Matching refs:of

18 displays the results of the trace analysis implemented in the given
24 You can avoid reading the rest of this document by running 'perf script
26 That will generate a starter script containing a handler for each of
34 attempts to exercise all of the main scripting features.
45 Most of the event's field values are passed as arguments to the
46 handler function; some of the less common ones aren't - those are
87 The $common_* arguments in the handler's argument list are the set of
88 arguments passed to all event handlers; some of the fields correspond
90 and some of the common_* fields aren't common enough to to be passed
93 Here's a brief description of each of the invariant event args:
95 $event_name the name of the event as text
98 $common_secs the secs portion of the event timestamp
99 $common_nsecs the nsecs portion of the event timestamp
100 $common_pid the pid of the current task
101 $common_comm the name of the current process
103 All of the remaining fields in the event's format file have
104 counterparts as handler function arguments of the same name, as can be
107 The above provides the basics needed to directly access every field of
108 every event in a trace, which covers 90% of what you need to know to
126 The rest of the script can contain handler functions and support
130 can implement a set of optional functions:
142 processed and gives scripts a chance to do end-of-script tasks, such
153 of common arguments are passed into it:
163 The remaining sections provide descriptions of each of the available
181 and values parsed from the 'print fmt' fields of the event format
184 …ng representation corresponding to $field_value for the flag field $field_name of event $event_name
185 …epresentation corresponding to $field_value for the symbolic field $field_name of event $event_name
190 Some of the 'common' fields in the event format file aren't all that
193 Perf::Trace::Context defines a set of functions that can be used to
194 access this data in the context of the current event. Each of these
212 avg($total, $n) - returns average given a sum and a total number of values