HomeSort by relevance Sort by last modified time
    Searched refs:sample_type (Results 1 - 21 of 21) sorted by null

  /external/linux-tools-perf/python/
twatch.py 24 sample_type = perf.SAMPLE_PERIOD | perf.SAMPLE_TID | perf.SAMPLE_CPU | perf.SAMPLE_TID)
  /external/linux-tools-perf/
builtin-record.c 171 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
174 attr->sample_type |= PERF_SAMPLE_ID;
183 attr->sample_type |= PERF_SAMPLE_PERIOD;
198 attr->sample_type |= PERF_SAMPLE_ADDR;
203 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
206 attr->sample_type |= PERF_SAMPLE_CPU;
210 attr->sample_type |= PERF_SAMPLE_TIME;
213 attr->sample_type |= PERF_SAMPLE_TIME;
214 attr->sample_type |= PERF_SAMPLE_RAW;
215 attr->sample_type |= PERF_SAMPLE_CPU
    [all...]
builtin-test.c 468 .sample_type = PERF_SAMPLE_ID,
481 int sample_size = __perf_evsel__sample_size(attr.sample_type);
566 err = perf_event__parse_sample(event, attr.sample_type, sample_size,
builtin-script.c 124 u64 sample_type, const char *sample_msg,
130 if (attr->sample_type & sample_type)
166 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
builtin-top.c 886 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
889 attr->sample_type |= PERF_SAMPLE_PERIOD;
895 attr->sample_type |= PERF_SAMPLE_ID;
builtin-report.c 162 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
builtin-timechart.c 504 if (session->sample_type & PERF_SAMPLE_TIME) {
512 if (session->sample_type & PERF_SAMPLE_RAW && sample->raw_size > 0) {
builtin-sched.c     [all...]
  /external/linux-tools-perf/util/
evsel.h 160 int __perf_evsel__sample_size(u64 sample_type);
164 return __perf_evsel__sample_size(evsel->attr.sample_type);
session.h 52 u64 sample_type; member in struct:perf_session
170 return perf_event__parse_sample(event, session->sample_type,
session.c 68 pr_err("non matching sample_type");
89 u64 sample_type = session->sample_type; local
95 if (sample_type & PERF_SAMPLE_TID)
98 if (sample_type & PERF_SAMPLE_TIME)
101 if (sample_type & PERF_SAMPLE_ID)
104 if (sample_type & PERF_SAMPLE_STREAM_ID)
107 if (sample_type & PERF_SAMPLE_CPU)
115 self->sample_type = perf_evlist__sample_type(self->evlist);
116 self->sample_size = __perf_evsel__sample_size(self->sample_type);
    [all...]
evlist.c 472 if (first->attr.sample_type != pos->attr.sample_type)
484 return first->attr.sample_type;
evsel.c 18 int __perf_evsel__sample_size(u64 sample_type)
20 u64 mask = sample_type & PERF_SAMPLE_MASK;
parse-events.c 471 attr->sample_type |= PERF_SAMPLE_RAW;
472 attr->sample_type |= PERF_SAMPLE_TIME;
473 attr->sample_type |= PERF_SAMPLE_CPU;
python.c 391 .sample_type = PERF_SAMPLE_PERIOD | PERF_SAMPLE_TID,
398 "sample_type",
446 &sample_period, &attr.sample_type,
694 err = perf_event__parse_sample(event, first->attr.sample_type,
  /bionic/libc/kernel/common/linux/
perf_event.h 126 __u64 sample_type; member in struct:perf_event_attr
  /external/v8/tools/
ll_prof.py 534 ("sample_type", "u64"),
560 # perf_event_attr.sample_type bits control the set of
621 perf_event_attr.sample_type)
623 (perf_event_attr.sample_type & PERF_SAMPLE_CALLCHAIN) != 0
662 def _SampleEventBodyDesc(self, sample_type):
663 assert (sample_type & PERF_SAMPLE_READ) == 0, \
667 if (bit & sample_type) != 0]
  /external/chromium_org/v8/tools/
ll_prof.py 552 ("sample_type", "u64"),
580 # perf_event_attr.sample_type bits control the set of
642 perf_event_attr.sample_type)
644 (perf_event_attr.sample_type & PERF_SAMPLE_CALLCHAIN) != 0
683 def _SampleEventBodyDesc(self, sample_type):
684 assert (sample_type & PERF_SAMPLE_READ) == 0, \
688 if (bit & sample_type) != 0]
    [all...]
  /external/kernel-headers/original/linux/
perf_event.h 113 * Bits that can be set in attr.sample_type to request information
188 __u64 sample_type; member in struct:perf_event_attr
  /external/linux-tools-perf/util/include/linux/added/
perf_event.h 123 * Bits that can be set in attr.sample_type to request information
198 __u64 sample_type; member in struct:perf_event_attr
228 sample_id_all : 1, /* sample_type all events */
348 * have the sample_type selected fields related to where/when
  /external/valgrind/main/include/vki/
vki-linux.h 2739 __vki_u64 sample_type; member in struct:vki_perf_event_attr
    [all...]

Completed in 276 milliseconds