Changeset 73445 in vbox for trunk/src/VBox/Debugger/testcase
- Timestamp:
- Aug 2, 2018 10:54:16 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124072
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp
r73348 r73445 185 185 return VERR_INTERNAL_ERROR; 186 186 } 187 VMMR3DECL(PRTDBGSYMBOL) DBGFR3AsSymbolByAddrA(PUVM pUVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, uint32_t fFlags, 188 PRTGCINTPTR poffDisp, PRTDBGMOD phMod) 189 { 190 return NULL; 191 } 187 192 VMMR3DECL(int) DBGFR3AsSymbolByName(PUVM pUVM, RTDBGAS hDbgAs, const char *pszSymbol, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod) 188 193 { … … 228 233 return VERR_DBGF_REGISTER_NOT_FOUND; 229 234 } 235 VMMR3DECL(const char *) DBGFR3RegCpuName(PUVM pUVM, DBGFREG enmReg, DBGFREGVALTYPE enmType) 236 { 237 return NULL; 238 } 230 239 VMMR3DECL(int) DBGFR3RegCpuQueryU8( PUVM pUVM, VMCPUID idCpu, DBGFREG enmReg, uint8_t *pu8) 231 240 { … … 241 250 } 242 251 VMMR3DECL(int) DBGFR3RegCpuQueryU64( PUVM pUVM, VMCPUID idCpu, DBGFREG enmReg, uint64_t *pu64) 252 { 253 return VERR_INTERNAL_ERROR; 254 } 255 VMMR3DECL(int) DBGFR3RegCpuQueryXdtr(PUVM pUVM, VMCPUID idCpu, DBGFREG enmReg, uint64_t *pu64Base, uint16_t *pu16Limit) 243 256 { 244 257 return VERR_INTERNAL_ERROR;
Note:
See TracChangeset
for help on using the changeset viewer.