Home | History | Annotate | Download | only in sanitizer_common

Lines Matching refs:info

49       AddressInfo &info = addr_frames[j];
52 if (info.function) {
53 frame_desc.append(" in %s", info.function);
55 if (!info.file && info.function_offset != AddressInfo::kUnknown)
56 frame_desc.append("+0x%zx", info.function_offset);
58 if (info.file) {
60 PrintSourceLocation(&frame_desc, info.file, info.line, info.column);
61 } else if (info.module) {
63 PrintModuleAndOffset(&frame_desc, info.module, info.module_offset);
67 info.Clear();