VirtualBox

Changeset 61681 in vbox for trunk/src/VBox/Debugger/testcase


Ignore:
Timestamp:
Jun 13, 2016 3:06:29 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
108038
Message:

Debugger/CodeView: Start on two new commands. 'dti' prints information about a registered type just like WinDbgs 'dt [mod!]Name', 'dtv' dumps a given guest memory buffer formatted as the given type (like WinDbg 'dt [mod!]Name Addr'). Work in progress.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp

    r59229 r61681  
    342342{
    343343}
     344VMMR3DECL(int) DBGFR3TypeRegister(  PUVM pUVM, uint32_t cTypes, PCDBGFTYPEREG paTypes)
     345{
     346    return VERR_INTERNAL_ERROR;
     347}
     348VMMR3DECL(int) DBGFR3TypeDeregister(PUVM pUVM, const char *pszType)
     349{
     350    return VERR_INTERNAL_ERROR;
     351}
     352VMMR3DECL(int) DBGFR3TypeQueryReg(  PUVM pUVM, const char *pszType, PCDBGFTYPEREG *ppTypeReg)
     353{
     354    return VERR_INTERNAL_ERROR;
     355}
     356VMMR3DECL(int) DBGFR3TypeQuerySize( PUVM pUVM, const char *pszType, size_t *pcbType)
     357{
     358    return VERR_INTERNAL_ERROR;
     359}
     360VMMR3DECL(int) DBGFR3TypeSetSize(   PUVM pUVM, const char *pszType, size_t cbType)
     361{
     362    return VERR_INTERNAL_ERROR;
     363}
     364VMMR3DECL(int) DBGFR3TypeDumpEx(    PUVM pUVM, const char *pszType, uint32_t fFlags,
     365                                    uint32_t cLvlMax, PFNDBGFR3TYPEDUMP pfnDump, void *pvUser)
     366{
     367    return VERR_INTERNAL_ERROR;
     368}
     369VMMR3DECL(int) DBGFR3TypeQueryValByType(PUVM pUVM, PCDBGFADDRESS pAddress, const char *pszType,
     370                                        PDBGFTYPEVAL *ppVal)
     371{
     372    return VERR_INTERNAL_ERROR;
     373}
     374VMMR3DECL(void) DBGFR3TypeValFree(PDBGFTYPEVAL pVal)
     375{
     376}
     377VMMR3DECL(int)  DBGFR3TypeValDumpEx(PUVM pUVM, PCDBGFADDRESS pAddress, const char *pszType, uint32_t fFlags,
     378                                    uint32_t cLvlMax, FNDBGFR3TYPEVALDUMP pfnDump, void *pvUser)
     379{
     380    return VERR_INTERNAL_ERROR;
     381}
    344382
    345383#include <VBox/vmm/cfgm.h>
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette