reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
200 s->Indent(" Module: file = \""); 201 module_sp->GetFileSpec().Dump(s); 202 *s << '"'; 204 s->Printf(", arch = \"%s\"", 206 s->EOL(); 210 s->Indent("CompileUnit: "); 211 comp_unit->GetDescription(s, level); 212 s->EOL(); 216 s->Indent(" Function: "); 217 function->GetDescription(s, level, target); 218 s->EOL(); 222 s->Indent(" FuncType: "); 223 func_type->GetDescription(s, level, false); 224 s->EOL(); 242 s->Indent(" Blocks: "); 244 s->Indent(" "); 245 (*pos)->GetDescription(s, function, level, target); 246 s->EOL(); 251 s->Indent(" LineEntry: "); 252 line_entry.GetDescription(s, level, comp_unit, target, false); 253 s->EOL(); 257 s->Indent(" Symbol: "); 258 symbol->GetDescription(s, level, target); 259 s->EOL(); 263 s->Indent(" Variable: "); 265 s->Printf("id = {0x%8.8" PRIx64 "}, ", variable->GetID()); 269 s->PutCString("kind = global, "); 273 s->PutCString("kind = static, "); 277 s->PutCString("kind = argument, "); 281 s->PutCString("kind = local, "); 285 s->PutCString("kind = thread local, "); 292 s->Printf("name = \"%s\"\n", variable->GetName().GetCString());