Home
last modified time | relevance | path

Searched refs:dumpType (Results 1 – 25 of 26) sorted by relevance

12

/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dfile_io_type_dump.cpp56 if ((dumpType == PLDM_FILE_TYPE_RESOURCE_DUMP) || in findDumpObjPath()
57 (dumpType == PLDM_FILE_TYPE_RESOURCE_DUMP_PARMS)) in findDumpObjPath()
117 if (dumpType == PLDM_FILE_TYPE_RESOURCE_DUMP) in newFileAvailable()
215 if (dumpType == PLDM_FILE_TYPE_RESOURCE_DUMP_PARMS) in fileAck()
254 if (dumpType == PLDM_FILE_TYPE_DUMP) in fileAck()
295 if (dumpType == PLDM_FILE_TYPE_DUMP || in fileAck()
296 dumpType == PLDM_FILE_TYPE_RESOURCE_DUMP) in fileAck()
329 if (dumpType != PLDM_FILE_TYPE_RESOURCE_DUMP_PARMS) in readIntoMemory()
339 if (dumpType != PLDM_FILE_TYPE_RESOURCE_DUMP_PARMS) in read()
H A Dfile_io_type_dump.hpp22 FileHandler(fileHandle), dumpType(fileType) in DumpHandler()
52 uint16_t dumpType; //!< type of the dump member in pldm::responder::DumpHandler
/openbmc/phosphor-debug-collector/
H A Ddump_types.mako.cpp54 std::optional<std::string> dumpTypeToString(const DumpTypes& dumpType) in dumpTypeToString() argument
56 auto it = dumpTypeToStringMap.find(dumpType); in dumpTypeToString()
85 DumpTypes dumpType = DumpTypes::USER; in validateDumpType() local
88 return dumpType; in validateDumpType()
99 dumpType = it->second.first; in validateDumpType()
107 return dumpType; in validateDumpType()
H A Ddump_manager_bmc.cpp51 DumpTypes dumpType = DumpTypes::USER; in createDump() local
56 dumpType = validateDumpType(type, BMC_DUMP); in createDump()
59 if (dumpType == DumpTypes::ELOG) in createDump()
61 dumpType = getErrorDumpType(params); in createDump()
66 if ((Manager::fUserDumpInProgress == true) && (dumpType == DumpTypes::USER)) in createDump()
73 dumpTypeToString(dumpType).value(), "PATH", path); in createDump()
75 auto id = captureDump(dumpType, path); in createDump()
101 if (dumpType == DumpTypes::USER) in createDump()
H A Ddump_types.mako.hpp63 std::optional<std::string> dumpTypeToString(const DumpTypes& dumpType);
/openbmc/bmcweb/redfish-core/lib/
H A Dlog_services.hpp318 if (dumpType == "BMC") in getDumpEntriesPath()
324 else if (dumpType == "FaultLog") in getDumpEntriesPath()
330 else if (dumpType == "System") in getDumpEntriesPath()
339 dumpType); in getDumpEntriesPath()
682 if (dumpType != "BMC") in downloadDumpEntry()
707 const std::string& dumpType) in downloadEventLogEntry() argument
951 if (dumpType == "System") in createDump()
972 else if (dumpType == "BMC") in createDump()
2098 if (dumpType == "BMC") in getDumpServiceInfo()
2112 else if (dumpType == "System") in getDumpServiceInfo()
[all …]
/openbmc/openpower-hw-diags/attn/
H A Dattn_dump.cpp132 if (DumpType::Hostboot == i_dumpParameters.dumpType || in requestDump()
133 DumpType::Hardware == i_dumpParameters.dumpType) in requestDump()
143 if (DumpType::Hostboot == i_dumpParameters.dumpType) in requestDump()
148 else if (DumpType::Hardware == i_dumpParameters.dumpType) in requestDump()
156 else if (DumpType::SBE == i_dumpParameters.dumpType) in requestDump()
H A Dattn_dump.hpp20 DumpType dumpType; member in attn::DumpParameters
/openbmc/phosphor-debug-collector/host-transport-extensions/pldm/oem/ibm/
H A Dpldm_oem_cmds.cpp50 void requestDelete(uint32_t id, uint32_t dumpType) in requestDelete() argument
52 pldm::requestDelete(id, dumpType); in requestDelete()
144 void requestDelete(uint32_t dumpId, uint32_t dumpType) in requestDelete() argument
147 switch (dumpType) in requestDelete()
H A Dpldm_oem_cmds.hpp27 void requestDelete(uint32_t id, uint32_t dumpType);
64 void requestDelete(uint32_t id, uint32_t dumpType);
/openbmc/openpower-debug-collector/watchdog/
H A Dwatchdog_handler.cpp135 if (DumpType::Hostboot == dumpParameters.dumpType) in requestDump()
141 else if (DumpType::SBE == dumpParameters.dumpType) in requestDump()
H A Dwatchdog_handler.hpp29 DumpType dumpType; member
H A Dwatchdog_logging.cpp36 dumpParameters.dumpType = DumpType::Hostboot; in event()
H A Dwatchdog_main.cpp186 dumpParameters.dumpType = DumpType::SBE; in handleSbeBootError()
/openbmc/openpower-proc-control/extensions/phal/
H A Ddump_utils.hpp22 DumpType dumpType; member
H A Ddump_utils.cpp127 if (DumpType::SBE == dumpParameters.dumpType) in requestDump()
/openbmc/webui-vue/src/views/Logs/Dumps/
H A DDumps.vue217 key: 'dumpType',
218 label: this.$t('pageDumps.table.dumpType'),
246 key: 'dumpType',
247 label: this.$t('pageDumps.table.dumpType'),
400 let filename = row.item.dumpType + '_' + row.item.id + '.tar.xz';
/openbmc/openpower-debug-collector/dump/
H A Dsbe_type.hpp18 std::string dumpType; member
H A Ddump_monitor.cpp30 int dumpType = getDumpTypeFromId(dumpId); in executeCollectionScript() local
36 args.push_back(std::to_string(dumpType)); in executeCollectionScript()
H A Ddump_utils.cpp69 auto dumpRequestType = sbeTypeAttributes.at(sbeType).dumpType; in requestSBEDump()
/openbmc/webui-vue/src/store/modules/Logs/
H A DDumpsStore.js17 dumpType: dump.Name, property in AnonymousClassa525301a0101
/openbmc/pldm/oem/ibm/test/
H A Dlibpldmresponder_fileio_test.cpp868 auto dumpType = dynamic_cast<DumpHandler*>(handler.get()); in TEST() local
869 ASSERT_TRUE(dumpType != nullptr); in TEST()
872 dumpType = dynamic_cast<DumpHandler*>(handler.get()); in TEST()
873 ASSERT_TRUE(dumpType != nullptr); in TEST()
876 dumpType = dynamic_cast<DumpHandler*>(handler.get()); in TEST()
877 ASSERT_TRUE(dumpType != nullptr); in TEST()
/openbmc/openpower-hw-diags/analyzer/
H A Danalyzer_main.cpp214 o_dump.dumpType = attn::DumpType::Hardware; in analyzeHardware()
/openbmc/phosphor-logging/test/openpower-pels/
H A Dsrc_test.cpp1329 std::vector<std::string> dumpType{"bmc/entry", "resource/entry", in TEST_F() local
1333 EXPECT_CALL(dataIface, checkDumpStatus(dumpType)) in TEST_F()
1344 EXPECT_CALL(dataIface, checkDumpStatus(dumpType)) in TEST_F()
1355 EXPECT_CALL(dataIface, checkDumpStatus(dumpType)) in TEST_F()
1366 EXPECT_CALL(dataIface, checkDumpStatus(dumpType)) in TEST_F()
/openbmc/openbmc-tools/openbmctool/
H A Dopenbmctool.py1520 dumpType = args.dumpType
1521 if (args.dumpType=="SystemDump"):
1523 elif(args.dumpType=="bmc"):
1536 if (args.dumpType=="SystemDump"):
1538 elif(args.dumpType=="bmc"):
1551 if (args.dumpType=="SystemDump"):
1553 elif(args.dumpType=="bmc"):
1566 if (args.dumpType=="SystemDump"):
1568 elif(args.dumpType=="bmc"):
1581 if (args.dumpType=="SystemDump"):
[all …]

12