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

  /external/perf_data_converter/src/quipper/
sample_info_reader_test.cc 21 uint64_t sample_type = // * == in sample_id_all local
35 attr.sample_type = sample_type;
86 uint64_t sample_type = // * == in sample_id_all local
97 attr.sample_type = sample_type;
143 uint64_t sample_type = // * == in sample_id_all local
154 attr.sample_type = sample_type;
214 attr.sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID | PERF_SAMPLE_READ
    [all...]
perf_reader_test.cc 477 __u64 sample_type; member in struct:quipper::old_perf_event_attr
505 .sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID |
567 const u64 sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID | PERF_SAMPLE_TIME | local
576 testing::ExamplePerfEventAttrEvent_Hardware(sample_type,
720 const u64 sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_READ | PERF_SAMPLE_ID; local
722 testing::ExamplePerfEventAttrEvent_Hardware(sample_type,
795 const u64 sample_type = // * == in sample_id_all local
812 testing::ExamplePerfEventAttrEvent_Hardware(sample_type,
    [all...]
perf_serializer.cc 67 S(sample_type);
119 S(sample_type);
350 uint64_t sample_type = 0; local
351 if (!ReadPerfSampleInfoAndType(event, &sample_info, &sample_type))
354 if (sample_type & PERF_SAMPLE_IP) sample->set_ip(sample_info.ip);
355 if (sample_type & PERF_SAMPLE_TID) {
359 if (sample_type & PERF_SAMPLE_TIME)
361 if (sample_type & PERF_SAMPLE_ADDR) sample->set_addr(sample_info.addr);
362 if ((sample_type & PERF_SAMPLE_ID) || (sample_type & PERF_SAMPLE_IDENTIFIER)
714 uint64_t sample_type = 0; local
1024 const u64 sample_type = attr.sample_type; local
    [all...]
  /external/strace/
perf_event_struct.h 14 uint64_t sample_type; member in struct:perf_event_attr
  /system/extras/simpleperf/
record.cpp 73 sample_type = attr.sample_type;
82 sample_type = attr.sample_type;
84 if (sample_type & PERF_SAMPLE_TID) {
87 if (sample_type & PERF_SAMPLE_TIME) {
90 if (sample_type & PERF_SAMPLE_ID) {
93 if (sample_type & PERF_SAMPLE_STREAM_ID) {
96 if (sample_type & PERF_SAMPLE_CPU) {
99 if (sample_type & PERF_SAMPLE_IDENTIFIER)
711 CHECK_EQ(p, new_binary + new_size) << "sample_type = " << std::hex << sample_type; local
    [all...]
event_selection_set.cpp 41 attr.sample_type |= PERF_SAMPLE_BRANCH_STACK;
52 attr.sample_type |=
267 uint64_t sample_type = 0; local
270 sample_type |= selection.event_attr.sample_type;
275 selection.event_attr.sample_type = sample_type;
348 attr.sample_type |= PERF_SAMPLE_BRANCH_STACK;
350 attr.sample_type &= ~PERF_SAMPLE_BRANCH_STACK;
361 selection.event_attr.sample_type |= PERF_SAMPLE_CALLCHAIN
    [all...]
record.h 176 // determined by sample_id_all and sample_type in perf_event_attr. To avoid the
178 // and sample_type inside the SampleId structure.
181 uint64_t sample_type; member in struct:SampleId
370 uint64_t sample_type; // sample_type is a bit mask determining which fields member in struct:SampleRecord
  /external/perf_data_converter/src/
perf_data_converter.cc 342 auto sample_type = profile->add_sample_type(); local
343 sample_type->set_type(UTF8StringId(event_name + "sample", builder));
344 sample_type->set_unit(builder->StringId("count"));
345 sample_type = profile->add_sample_type();
346 sample_type->set_type(UTF8StringId(event_name + "event", builder));
347 sample_type->set_unit(builder->StringId("count"));
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_code.cc 311 auto sample_type = profile_pb->mutable_sample_type()->Add(); local
312 sample_type->set_type(string_table_.GetIndex(sample_type_description));
313 sample_type->set_unit(string_table_.GetIndex("count"));
317 sample_type = profile_pb->mutable_sample_type()->Add();
318 sample_type->set_type(string_table_.GetIndex(sample_type_description));
320 sample_type->set_unit(string_table_.GetIndex("microseconds"));
332 sample_type->set_unit(string_table_.GetIndex("bytes"));
337 sample_type->set_unit(string_table_.GetIndex("bytes"));
341 sample_type->set_unit(string_table_.GetIndex("bytes"));
345 sample_type->set_unit(string_table_.GetIndex("bytes"))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
perf_event.h 116 * Bits that can be set in attr.sample_type to request information
191 __u64 sample_type; member in struct:perf_event_attr
221 sample_id_all : 1, /* sample_type all events */
344 * have the sample_type selected fields related to where/when
  /external/perf_data_converter/src/quipper/kernel/
perf_event.h 118 * Bits that can be set in attr.sample_type to request information
264 __u64 sample_type; member in struct:perf_event_attr
294 sample_id_all : 1, /* sample_type all events */
529 * have the sample_type selected fields related to where/when
  /bionic/libc/kernel/uapi/linux/
perf_event.h 198 __u64 sample_type; member in struct:perf_event_attr
  /external/kernel-headers/original/uapi/linux/
perf_event.h 120 * Bits that can be set in attr.sample_type to request information
330 __u64 sample_type; member in struct:perf_event_attr
360 sample_id_all : 1, /* sample_type all events */
660 * have the sample_type selected fields related to where/when
  /external/valgrind/include/vki/
vki-linux.h 2919 __vki_u64 sample_type; member in struct:vki_perf_event_attr
    [all...]

Completed in 507 milliseconds