HomeSort by relevance Sort by last modified time
    Searched refs:pc_entry (Results 1 - 2 of 2) sorted by null

  /bionic/libc/malloc_debug/
MapData.cpp 147 MapEntry pc_entry(pc);
151 auto it = entries_.find(&pc_entry);
155 it = entries_.find(&pc_entry);
  /external/v8/src/profiler/
profile-generator.cc 600 CodeEntry* pc_entry = code_map_.FindEntry(sample.pc); local
601 // If there is no pc_entry we're likely in native code.
604 if (!pc_entry && (sample.top_frame_type == StackFrame::JAVA_SCRIPT ||
606 pc_entry = code_map_.FindEntry(sample.tos);
612 if (pc_entry) {
614 static_cast<int>(sample.pc - pc_entry->instruction_start());
615 src_line = pc_entry->GetSourceLine(pc_offset);
617 src_line = pc_entry->line_number();
620 *entry++ = pc_entry;
622 if (pc_entry->builtin_id() == Builtins::kFunctionPrototypeApply |
    [all...]

Completed in 318 milliseconds