Searched refs:sampleType_ (Results 1 – 3 of 3) sorted by relevance
| /developtools/hiperf/src/ |
| D | perf_event_record.cpp | 202 if (sampleType_ & PERF_SAMPLE_REGS_USER) { in ReplaceWithCallStack() 207 if (sampleType_ & PERF_SAMPLE_STACK_USER) { in ReplaceWithCallStack() 217 if (sampleType_ & PERF_SAMPLE_CALLCHAIN) { in ReplaceWithCallStack() 243 sampleType_ = attr.sample_type; in PerfRecordSample() 248 PopFromBinary(sampleType_ & PERF_SAMPLE_IDENTIFIER, p, data_.sample_id); in PerfRecordSample() 249 PopFromBinary(sampleType_ & PERF_SAMPLE_IP, p, data_.ip); in PerfRecordSample() 250 PopFromBinary2(sampleType_ & PERF_SAMPLE_TID, p, data_.pid, data_.tid); in PerfRecordSample() 251 PopFromBinary(sampleType_ & PERF_SAMPLE_TIME, p, data_.time); in PerfRecordSample() 252 PopFromBinary(sampleType_ & PERF_SAMPLE_ADDR, p, data_.addr); in PerfRecordSample() 253 PopFromBinary(sampleType_ & PERF_SAMPLE_ID, p, data_.id); in PerfRecordSample() [all …]
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | perf_event_record_test.cpp | 443 record.sampleType_ |= PERF_SAMPLE_REGS_USER; 444 record.sampleType_ |= PERF_SAMPLE_STACK_USER; 445 record.sampleType_ |= PERF_SAMPLE_CALLCHAIN; 476 record.sampleType_ |= PERF_SAMPLE_CALLCHAIN; 502 record.sampleType_ |= PERF_SAMPLE_CALLCHAIN; 531 record.sampleType_ |= PERF_SAMPLE_CALLCHAIN;
|
| /developtools/hiperf/include/ |
| D | perf_event_record.h | 233 uint64_t sampleType_ = SAMPLE_TYPE; variable
|