/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 78 void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType, bool DumpEH) { in dump() argument 79 if (DumpType == DIDT_All || DumpType == DIDT_Abbrev) { in dump() 84 if (DumpType == DIDT_All || DumpType == DIDT_AbbrevDwo) in dump() 90 if (DumpType == DIDT_All || DumpType == DIDT_Info) { in dump() 96 if ((DumpType == DIDT_All || DumpType == DIDT_InfoDwo) && in dump() 103 if ((DumpType == DIDT_All || DumpType == DIDT_Types) && getNumTypeUnits()) { in dump() 110 if ((DumpType == DIDT_All || DumpType == DIDT_TypesDwo) && in dump() 118 if (DumpType == DIDT_All || DumpType == DIDT_Loc) { in dump() 123 if (DumpType == DIDT_All || DumpType == DIDT_LocDwo) { in dump() 128 if (DumpType == DIDT_All || DumpType == DIDT_Frames) { in dump() [all …]
|
/external/llvm-project/llvm/tools/llvm-dwarfdump/ |
D | llvm-dwarfdump.cpp | 136 static unsigned DumpType = DIDT_Null; variable 269 DumpOpts.DumpType = DumpType; in getDumpOpts() 452 if (!(DumpType & DIDT_UUID) || DumpType == DIDT_All) in dumpObjectFile() 642 DumpType |= DIDT_##ENUM_NAME; \ in main() 651 DumpType |= DIDT_UUID; in main() 653 DumpType = DIDT_All; in main() 654 if (DumpType == DIDT_Null) { in main() 656 DumpType = DIDT_All; in main() 658 DumpType = DIDT_DebugInfo; in main()
|
/external/llvm-project/flang/lib/Semantics/ |
D | symbol.cpp | 48 static void DumpType(llvm::raw_ostream &os, const Symbol &symbol) { in DumpType() function 53 static void DumpType(llvm::raw_ostream &os, const DeclTypeSpec *type) { in DumpType() function 89 DumpType(os << " result:", x.result()); in operator <<() 107 DumpType(os, *arg); in operator <<() 362 DumpType(os, x.interface_.type()); in operator <<() 544 DumpType(os, symbol.GetType()); in DumpForUnparse()
|
/external/llvm-project/llvm/lib/Support/Windows/ |
D | Signals.inc | 675 /// "DumpType" for a given Windows Registry key. 679 /// valid values for DumpType are: 691 DWORD DumpType; 692 DWORD TypeSize = sizeof(DumpType); 693 if (ERROR_SUCCESS != ::RegGetValueW(Key, NULL, L"DumpType", RRF_RT_REG_DWORD, 694 NULL, &DumpType, 698 switch (DumpType) { 763 // is NULL or if there is no valid DumpType value at its location). 764 MINIDUMP_TYPE DumpType; 765 if (!GetDumpType(AppSpecificKey, DumpType)) [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Signals.inc | 671 /// "DumpType" for a given Windows Registry key. 675 /// valid values for DumpType are: 687 DWORD DumpType; 688 DWORD TypeSize = sizeof(DumpType); 689 if (ERROR_SUCCESS != ::RegGetValueW(Key, NULL, L"DumpType", RRF_RT_REG_DWORD, 690 NULL, &DumpType, 694 switch (DumpType) { 759 // is NULL or if there is no valid DumpType value at its location). 760 MINIDUMP_TYPE DumpType; 761 if (!GetDumpType(AppSpecificKey, DumpType)) [all …]
|
/external/llvm/lib/Support/Windows/ |
D | Signals.inc | 641 /// "DumpType" for a given Windows Registry key. 645 /// valid values for DumpType are: 657 DWORD DumpType; 658 DWORD TypeSize = sizeof(DumpType); 659 if (ERROR_SUCCESS != ::RegGetValueW(Key, NULL, L"DumpType", RRF_RT_REG_DWORD, 660 NULL, &DumpType, 664 switch (DumpType) { 729 // is NULL or if there is no valid DumpType value at its location). 730 MINIDUMP_TYPE DumpType; 731 if (!GetDumpType(AppSpecificKey, DumpType)) [all …]
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Signals.inc | 644 /// "DumpType" for a given Windows Registry key. 648 /// valid values for DumpType are: 660 DWORD DumpType; 661 DWORD TypeSize = sizeof(DumpType); 662 if (ERROR_SUCCESS != ::RegGetValueW(Key, NULL, L"DumpType", RRF_RT_REG_DWORD, 663 NULL, &DumpType, 667 switch (DumpType) { 732 // is NULL or if there is no valid DumpType value at its location). 733 MINIDUMP_TYPE DumpType; 734 if (!GetDumpType(AppSpecificKey, DumpType)) [all …]
|
/external/llvm/tools/llvm-dwarfdump/ |
D | llvm-dwarfdump.cpp | 42 static cl::opt<DIDumpType> DumpType( 89 DICtx->dump(outs(), DumpType); in DumpObjectFile()
|
/external/llvm-project/llvm/tools/llvm-dwarfdump/fuzzer/ |
D | llvm-dwarfdump-fuzzer.cpp | 37 opts.DumpType = DIDT_All; in LLVMFuzzerTestOneInput()
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBContext.h | 42 void dump(raw_ostream &OS, DIDumpType DumpType = DIDT_All,
|
/external/google-breakpad/src/client/windows/crash_generation/ |
D | minidump_generator.h | 105 MINIDUMP_TYPE DumpType,
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 326 uint64_t DumpType = DumpOpts.DumpType; in dump() local 333 if (DumpType & DIDT_UUID) in dump() 339 bool Explicit = DumpType != DIDT_All && !IsDWO; in dump() 344 bool Should = (DumpType & Mask) && (Explicit || !Section.empty()); in dump() 369 if ((DumpType & DIDT_DebugInfo)) { in dump() 385 if ((DumpType & DIDT_DebugTypes)) { in dump() 441 if (DumpType & DIDT_DebugMacro) { in dump() 689 if (DumpOpts.DumpType & DIDT_DebugInfo) in verify() 691 if (DumpOpts.DumpType & DIDT_DebugLine) in verify()
|
/external/llvm/lib/DebugInfo/PDB/ |
D | PDBContext.cpp | 32 void PDBContext::dump(raw_ostream &OS, DIDumpType DumpType, in dump() argument
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 349 uint64_t DumpType = DumpOpts.DumpType; in dump() local 356 if (DumpType & DIDT_UUID) in dump() 362 bool Explicit = DumpType != DIDT_All && !IsDWO; in dump() 367 bool Should = (DumpType & Mask) && (Explicit || !Section.empty()); in dump() 392 if ((DumpType & DIDT_DebugInfo)) { in dump() 408 if ((DumpType & DIDT_DebugTypes)) { in dump() 738 if (DumpOpts.DumpType & DIDT_DebugInfo) in verify() 740 if (DumpOpts.DumpType & DIDT_DebugLine) in verify()
|
/external/openscreen/tools/cddl/ |
D | sema.cc | 835 void DumpType(CddlType* type, int indent_level) { in DumpType() function 844 DumpType(option, indent_level + 1); in DumpType() 877 DumpType(type->tagged_type.type, indent_level + 1); in DumpType() 901 DumpType(entry->type.value, indent_level + 1); in DumpGroup() 918 DumpType(entry.second); in DumpSymbolTable()
|
D | sema.h | 370 void DumpType(CddlType* type, int indent_level = 0);
|
/external/llvm/include/llvm/DebugInfo/ |
D | DIContext.h | 141 virtual void dump(raw_ostream &OS, DIDumpType DumpType = DIDT_All,
|
/external/google-breakpad/src/client/windows/handler/ |
D | exception_handler.h | 306 MINIDUMP_TYPE DumpType,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/ |
D | DIContext.h | 172 unsigned DumpType = DIDT_All; member
|
/external/llvm-project/llvm/include/llvm/DebugInfo/ |
D | DIContext.h | 188 unsigned DumpType = DIDT_All; member
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFContext.h | 84 void dump(raw_ostream &OS, DIDumpType DumpType = DIDT_All,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | dbghelp.h | 1257 …BOOL WINAPI MiniDumpWriteDump(HANDLE hProcess,DWORD ProcessId,HANDLE hFile,MINIDUMP_TYPE DumpType,…
|
/external/llvm-project/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 2850 DumpOpts.DumpType = DwarfDumpType; in dumpObject()
|
D | MachODump.cpp | 2015 DumpOpts.DumpType = DwarfDumpType; in ProcessMachO()
|