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

  /system/extras/perfprofd/
perf_data_converter.cc 11 typedef std::vector<DSOAndOffset> callchain; typedef in namespace:wireless_android_logging_awp
14 bool operator()(const callchain *c1, const callchain *c2) const {
54 map<const callchain *, uint64, callchain_lt> callchain_count_map;
70 // that once the parser is destroyed, callchain pointers in
94 // We expect to see either all callchain events, all branch stack
99 if (!event.callchain.empty()) {
100 CHECK(!seen_branch_stack && "examining callchain");
102 const callchain *cc = &event.callchain;
    [all...]
  /system/extras/perfprofd/quipper/
perf_parser.h 88 // DSO+offset info for callchain.
89 std::vector<DSOAndOffset> callchain; member in struct:quipper::ParsedEvent
211 // Calls MapIPAndPidAndGetNameAndOffset() on the callchain of a sample event.
215 struct ip_callchain* callchain,
perf_reader.cc 275 // Make sure there is no existing allocated memory in |sample->callchain|.
276 CHECK_EQ(static_cast<void*>(NULL), sample->callchain);
283 struct ip_callchain* callchain = local
285 callchain->nr = callchain_size;
287 callchain->ips[i] = *array++;
289 ByteSwap(&callchain->ips[i]);
291 sample->callchain = callchain;
608 if (!sample.callchain) {
609 LOG(ERROR) << "Expecting callchain data, but none was found."
    [all...]
  /system/extras/simpleperf/
cmd_report_sample.cpp 73 "--show-callchain Print callchain samples.\n"
220 } else if (args[i] == "--show-callchain") {
280 FprintIndented(report_fp_, 1, "callchain:\n");
282 const proto::Sample_CallChainEntry& callchain = sample.callchain(i); local
284 callchain.vaddr_in_file());
285 FprintIndented(report_fp_, 2, "file_id: %u\n", callchain.file_id());
286 int32_t symbol_id = callchain.symbol_id();
293 max_symbol_id_map[callchain.file_id()]
369 proto::Sample_CallChainEntry* callchain = sample->add_callchain(); local
    [all...]
sample_tree.h 20 #include "callchain.h"
122 std::vector<EntryT*> callchain; local
123 callchain.push_back(sample);
136 LOG(DEBUG) << "Unexpected perf_context in callchain: " << ip;
147 CreateCallChainSample(sample, ip, in_kernel, callchain, acc_info);
151 callchain.push_back(callchain_sample);
158 std::reverse(callchain.begin(), callchain.end());
160 while (callchain.size() >= 2) {
161 EntryT* sample = callchain[0]
    [all...]
cmd_kmem.cpp 24 #include "callchain.h"
43 CallChainRoot<SlabSample> callchain; // a callchain tree representing all member in struct:__anon106978::SlabSample
155 // callchain, but we can still do a normal report.
216 const std::vector<SlabSample*>& callchain,
226 callchain);
232 // Decide the percentage of callchain by the sample_count, so use 1 as the
286 "--children Print the accumulated allocation info appeared in the callchain.\n"
293 " the hit count of the callchain.\n"
cmd_report.cpp 64 // accumuated when appearing in other sample's callchain
73 // a callchain tree representing all callchains in the sample
74 CallChainRoot<SampleEntry> callchain; member in struct:__anon106980::SampleEntry
89 // The data member 'callchain' can only move, not copy.
177 const std::vector<SampleEntry*>& callchain,
186 return InsertCallChainSample(std::move(callchain_sample), callchain);
303 "--children Print the overhead accumulated by appearing in the callchain.\n"
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
event.h 130 struct ip_callchain * callchain; member in struct:perf_sample
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
event.h 118 struct ip_callchain *callchain; member in struct:perf_sample

Completed in 370 milliseconds