| /developtools/hiperf/include/ |
| D | perf_record_format.h | 31 u32 pid; 32 u32 tid; /* if PERF_SAMPLE_TID set */ 36 u32 cpu, res; /* if PERF_SAMPLE_CPU set */ 62 u32 pid, tid; 96 u32 pid; 97 u32 tid; 101 u32 maj; 102 u32 min; 105 u32 prot; 106 u32 flags; [all …]
|
| D | perf_event_record.h | 174 PerfRecordMmap(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, 188 PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, u32 maj, u32 min, 189 u64 ino, u32 prot, u32 flags, const std::string &filename); 191 PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, const MemMapItem &item); 223 PerfRecordComm(bool inKernel, u32 pid, u32 tid, const std::string &comm); 252 PerfRecordSample(bool inKernel, u32 pid, u32 tid, u64 period = 0, u64 time = 0, u64 id = 0)
|
| D | perf_file_format.h | 148 bool Write(uint32_t u32);
|
| D | utilities.h | 56 using u32 = __u32; variable
|
| /developtools/profiler/hiebpf/include/ |
| D | vmlinux.h | 38 typedef __u32 u32; typedef 77 typedef u32 __kernel_dev_t; 103 typedef u32 uint32_t; 440 u32 *uaddr; 441 u32 val; 442 u32 flags; 443 u32 bitset; 445 u32 *uaddr2; 472 u32 count; 473 u32 need_resched; [all …]
|
| D | bpf_log_writer.h | 23 u32 bpf_log_level_index = BPF_LOG_LEVEL_INDEX; \ 24 u32* bpf_log_level_ptr = bpf_map_lookup_elem(&config_var_map, &bpf_log_level_index); \ 26 u32 bpf_log_level = BPF_LOG_NONE; \ 27 bpf_probe_read_kernel(&bpf_log_level, sizeof(u32), bpf_log_level_ptr); \
|
| D | fstrace_progs.h | 422 compat_ulong_t vlen, u32 pos_low, u32 pos_high) in BPF_KPROBE() 437 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags) in BPF_KPROBE()
|
| /developtools/profiler/hiebpf/src/ |
| D | hiebpf.bpf.c | 53 __uint(key_size, sizeof(u32)); 54 __uint(value_size, sizeof(u32)); 63 __uint(key_size, sizeof(u32)); 64 __uint(value_size, sizeof(u32)); 85 __uint(key_size, sizeof(u32)); 102 u32 index = UNWIND_FLAG_INDEX; in unwind_stack() 103 const u32 *unwind_ptr = bpf_map_lookup_elem(&config_var_map, &index); in unwind_stack() 104 u32 unwind = 0; in unwind_stack() 105 int err = bpf_probe_read_kernel(&unwind, sizeof(u32), unwind_ptr); in unwind_stack() 142 cmplt_event->pid = (u32) pid_tgid; in emit_fstrace_event() [all …]
|
| /developtools/profiler/host/smartperf/trace_streamer/prebuilts/patch_perf_event/ |
| D | perf_event.h.patch | 335 - * u32 var1_dw; 343 - * u32 var1_dw; 367 - * u32 maj; 368 - * u32 min; 379 + * u32 maj; 380 + * u32 min; 383 * u32 prot, flags; 388 * u32 pid; 389 * u32 tid; 404 - * u32 len; [all …]
|
| /developtools/smartperf_host/trace_streamer/prebuilts/patch_perf_event/ |
| D | perf_event.h.patch | 335 - * u32 var1_dw; 343 - * u32 var1_dw; 367 - * u32 maj; 368 - * u32 min; 379 + * u32 maj; 380 + * u32 min; 383 * u32 prot, flags; 388 * u32 pid; 389 * u32 tid; 404 - * u32 len; [all …]
|
| /developtools/hiperf/src/ |
| D | perf_event_record.cpp | 426 PerfRecordMmap::PerfRecordMmap(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, in PerfRecordMmap() 478 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, u64 addr, u64 len, u64 pgoff, in PerfRecordMmap2() 479 u32 maj, u32 min, u64 ino, u32 prot, u32 flags, in PerfRecordMmap2() 501 PerfRecordMmap2::PerfRecordMmap2(bool inKernel, u32 pid, u32 tid, const MemMapItem &item) in PerfRecordMmap2() 588 PerfRecordComm::PerfRecordComm(bool inKernel, u32 pid, u32 tid, const std::string &comm) in PerfRecordComm()
|
| D | perf_file_format.cpp | 55 bool PerfFileSection::Write(uint32_t u32) in Write() argument 57 uint32_t value = u32; in Write()
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | perf_event_record_test.cpp | 323 if (record.data_.raw_size != *(reinterpret_cast<const u32 *>(p))) { in CompareRecordSample50() 326 p += sizeof(u32); in CompareRecordSample50() 364 if (record.data_.pid != *(reinterpret_cast<const u32 *>(p))) { in CompareRecordSample() 367 p += sizeof(u32); in CompareRecordSample() 369 if (record.data_.tid != *(reinterpret_cast<const u32 *>(p))) { in CompareRecordSample() 372 p += sizeof(u32); in CompareRecordSample() 394 if (record.data_.cpu != *(reinterpret_cast<const u32 *>(p))) { in CompareRecordSample() 397 p += sizeof(u32); in CompareRecordSample() 399 if (record.data_.res != *(reinterpret_cast<const u32 *>(p))) { in CompareRecordSample() 402 p += sizeof(u32); in CompareRecordSample()
|
| D | report_test.cpp | 770 PerfRecordSampleMock(bool inKernel, u32 pid, u32 tid, u64 period) in PerfRecordSampleMock()
|
| /developtools/profiler/proto_encoder/test/unittest/ |
| D | varint_encode_unittest.cpp | 279 uint32_t u32 = std::numeric_limits<uint32_t>::min(); variable 280 EXPECT_EQ(EncodeVarint(buf, u32), (uint32_t)sizeof(ENCODE_BYTES_MIN_U32)); 282 u32 = std::numeric_limits<uint32_t>::max(); 283 EXPECT_EQ(EncodeVarint(buf, u32), (uint32_t)sizeof(ENCODE_BYTES_MAX_U32));
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | utilities.h | 57 using u32 = __u32; variable
|