VirtualBox

Changeset 64556 in vbox


Ignore:
Timestamp:
Nov 4, 2016 10:52:46 AM (8 years ago)
Author:
vboxsync
Message:

tstDBGCStubs: Add missing stubs for DBGFR3Cfg*

File:
1 edited

Legend:

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

    r64501 r64556  
    398398    return VERR_INTERNAL_ERROR;
    399399}
     400VMMR3DECL(int) DBGFR3CfgQueryBbByAddress(DBGFCFG hCfg, PDBGFADDRESS pAddr, PDBGFCFGBB phCfgBb)
     401{
     402    return VERR_INTERNAL_ERROR;
     403}
     404VMMR3DECL(uint32_t) DBGFR3CfgGetBbCount(DBGFCFG hCfg)
     405{
     406    return 0;
     407}
    400408VMMR3DECL(int) DBGFR3CfgDump(DBGFCFG hCfg, PFNDBGFR3CFGDUMP pfnDump, void *pvUser)
    401409{
     
    418426    return NULL;
    419427}
     428VMMR3DECL(PDBGFADDRESS) DBGFR3CfgBbGetBranchAddress(DBGFCFGBB hCfgBb, PDBGFADDRESS pAddrTarget)
     429{
     430    return NULL;
     431}
     432VMMR3DECL(PDBGFADDRESS) DBGFR3CfgBbGetFollowingAddress(DBGFCFGBB hCfgBb, PDBGFADDRESS pAddrFollow)
     433{
     434    return NULL;
     435}
    420436VMMR3DECL(DBGFCFGBBENDTYPE) DBGFR3CfgBbGetType(DBGFCFGBB hCfgBb)
    421437{
     
    430446    return 0;
    431447}
     448VMMR3DECL(int) DBGFR3CfgBbQueryError(DBGFCFGBB hCfgBb, const char **ppszErr)
     449{
     450    return VERR_INTERNAL_ERROR;
     451}
    432452VMMR3DECL(int) DBGFR3CfgBbQueryInstr(DBGFCFGBB hCfgBb, uint32_t idxInstr, PDBGFADDRESS pAddrInstr,
    433                                      uint32_t *pcbInstr, char *pszOutput, uint32_t cbOutput)
    434 {
    435     return VERR_INTERNAL_ERROR;
    436 }
    437 VMMR3DECL(int) DBGFR3CfgBbQuerySuccessors(DBGFCFGBB hCfgBb, PDBGFCFGBB pahCfgBbSucc, uint32_t cSucc)
     453                                     uint32_t *pcbInstr, const char **ppszInstr)
     454{
     455    return VERR_INTERNAL_ERROR;
     456}
     457VMMR3DECL(int) DBGFR3CfgBbQuerySuccessors(DBGFCFGBB hCfgBb, PDBGFCFGBB phCfgBbFollow,
     458                                          PDBGFCFGBB phCfgBbTarget)
    438459{
    439460    return VERR_INTERNAL_ERROR;
     
    444465}
    445466VMMR3DECL(int) DBGFR3CfgBbGetRefBb(DBGFCFGBB hCfgBb, PDBGFCFGBB pahCfgBbRef, uint32_t cRef)
     467{
     468    return VERR_INTERNAL_ERROR;
     469}
     470VMMR3DECL(int) DBGFR3CfgItCreate(DBGFCFG hCfg, DBGFCFGITORDER enmOrder, PDBGFCFGIT phCfgIt)
     471{
     472    return VERR_INTERNAL_ERROR;
     473}
     474VMMR3DECL(void) DBGFR3CfgItDestroy(DBGFCFGIT hCfgIt)
     475{
     476}
     477VMMR3DECL(DBGFCFGBB) DBGFR3CfgItNext(DBGFCFGIT hCfgIt)
     478{
     479    return NULL;
     480}
     481VMMR3DECL(int) DBGFR3CfgItReset(DBGFCFGIT hCfgIt)
    446482{
    447483    return VERR_INTERNAL_ERROR;
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