Home
last modified time | relevance | path

Searched refs:user_ips (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/extras/simpleperf/
H A Dsample_tree.h111 std::vector<uint64_t> user_ips; in ProcessSampleRecord() local
114 r.GetValidStackSize(), &user_ips, &sps)) { in ProcessSampleRecord()
116 ips.insert(ips.end(), user_ips.begin(), user_ips.end()); in ProcessSampleRecord()
H A Drecord.cpp642 void SampleRecord::UpdateUserCallChain(const std::vector<uint64_t>& user_ips) { in UpdateUserCallChain() argument
650 if (kernel_ip_count + 1 + user_ips.size() <= callchain_data.ip_nr) { in UpdateUserCallChain()
655 size() + (kernel_ip_count + 1 + user_ips.size() - callchain_data.ip_nr) * sizeof(uint64_t); in UpdateUserCallChain()
657 BuildBinaryWithNewCallChain(new_size, user_ips); in UpdateUserCallChain()
H A Drecord.h402 void UpdateUserCallChain(const std::vector<uint64_t>& user_ips);