MCPcopy Index your code
hub / github.com/nodejs/node / PrintModuleDetails

Function PrintModuleDetails

deps/v8/tools/grokdump.py:4146–4158  ·  view source on GitHub ↗
(reader, module)

Source from the content-addressed store, hash-verified

4144
4145
4146def PrintModuleDetails(reader, module):
4147 print("%s" % GetModuleName(reader, module))
4148 file_version = GetVersionString(module.version_info.dwFileVersionMS,
4149 module.version_info.dwFileVersionLS);
4150 product_version = GetVersionString(module.version_info.dwProductVersionMS,
4151 module.version_info.dwProductVersionLS)
4152 print(" base: %s" % reader.FormatIntPtr(module.base_of_image))
4153 print(" end: %s" % reader.FormatIntPtr(module.base_of_image +
4154 module.size_of_image))
4155 print(" file version: %s" % file_version)
4156 print(" product version: %s" % product_version)
4157 time_date_stamp = datetime.datetime.fromtimestamp(module.time_date_stamp)
4158 print(" timestamp: %s" % time_date_stamp)
4159
4160
4161def AnalyzeMinidump(options, minidump_name):

Callers 1

do_list_modulesMethod · 0.85

Calls 4

GetModuleNameFunction · 0.85
GetVersionStringFunction · 0.85
printFunction · 0.70
FormatIntPtrMethod · 0.45

Tested by

no test coverage detected