Changeset 64556 in vbox
- Timestamp:
- Nov 4, 2016 10:52:46 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp
r64501 r64556 398 398 return VERR_INTERNAL_ERROR; 399 399 } 400 VMMR3DECL(int) DBGFR3CfgQueryBbByAddress(DBGFCFG hCfg, PDBGFADDRESS pAddr, PDBGFCFGBB phCfgBb) 401 { 402 return VERR_INTERNAL_ERROR; 403 } 404 VMMR3DECL(uint32_t) DBGFR3CfgGetBbCount(DBGFCFG hCfg) 405 { 406 return 0; 407 } 400 408 VMMR3DECL(int) DBGFR3CfgDump(DBGFCFG hCfg, PFNDBGFR3CFGDUMP pfnDump, void *pvUser) 401 409 { … … 418 426 return NULL; 419 427 } 428 VMMR3DECL(PDBGFADDRESS) DBGFR3CfgBbGetBranchAddress(DBGFCFGBB hCfgBb, PDBGFADDRESS pAddrTarget) 429 { 430 return NULL; 431 } 432 VMMR3DECL(PDBGFADDRESS) DBGFR3CfgBbGetFollowingAddress(DBGFCFGBB hCfgBb, PDBGFADDRESS pAddrFollow) 433 { 434 return NULL; 435 } 420 436 VMMR3DECL(DBGFCFGBBENDTYPE) DBGFR3CfgBbGetType(DBGFCFGBB hCfgBb) 421 437 { … … 430 446 return 0; 431 447 } 448 VMMR3DECL(int) DBGFR3CfgBbQueryError(DBGFCFGBB hCfgBb, const char **ppszErr) 449 { 450 return VERR_INTERNAL_ERROR; 451 } 432 452 VMMR3DECL(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 } 457 VMMR3DECL(int) DBGFR3CfgBbQuerySuccessors(DBGFCFGBB hCfgBb, PDBGFCFGBB phCfgBbFollow, 458 PDBGFCFGBB phCfgBbTarget) 438 459 { 439 460 return VERR_INTERNAL_ERROR; … … 444 465 } 445 466 VMMR3DECL(int) DBGFR3CfgBbGetRefBb(DBGFCFGBB hCfgBb, PDBGFCFGBB pahCfgBbRef, uint32_t cRef) 467 { 468 return VERR_INTERNAL_ERROR; 469 } 470 VMMR3DECL(int) DBGFR3CfgItCreate(DBGFCFG hCfg, DBGFCFGITORDER enmOrder, PDBGFCFGIT phCfgIt) 471 { 472 return VERR_INTERNAL_ERROR; 473 } 474 VMMR3DECL(void) DBGFR3CfgItDestroy(DBGFCFGIT hCfgIt) 475 { 476 } 477 VMMR3DECL(DBGFCFGBB) DBGFR3CfgItNext(DBGFCFGIT hCfgIt) 478 { 479 return NULL; 480 } 481 VMMR3DECL(int) DBGFR3CfgItReset(DBGFCFGIT hCfgIt) 446 482 { 447 483 return VERR_INTERNAL_ERROR;
Note:
See TracChangeset
for help on using the changeset viewer.