Lines Matching defs:pc
39 uintptr_t pc; // The absolute pc.
42 backtrace_map_t map; // The map associated with the given pc.
43 std::string func_name; // The function name associated with this pc, NULL if not found.
44 uintptr_t func_offset; // pc relative to the start of the function, only valid if func_name is not NULL.
74 // Get the function name and offset into the function given the pc.
76 virtual std::string GetFunctionName(uintptr_t pc, uintptr_t* offset);
78 // Fill in the map data associated with the given pc.
79 virtual void FillInMap(uintptr_t pc, backtrace_map_t* map);
121 virtual std::string GetFunctionNameRaw(uintptr_t pc, uintptr_t* offset) = 0;