Lines Matching defs:pAddress

274  * @param   pAddress        The address of the breakpoint.
282 static DECLCALLBACK(int) dbgfR3BpSetInt3(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t *piHitTrigger,
290 if (!DBGFR3AddrIsValid(pUVM, pAddress))
301 PDBGFBP pBp = dbgfR3BpGetByAddr(pVM, DBGFBPTYPE_INT3, pAddress->FlatPtr);
322 pBp->GCPtr = pAddress->FlatPtr;
348 * @param pAddress The address of the breakpoint.
356 VMMR3DECL(int) DBGFR3BpSet(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, uint32_t *piBp)
363 pUVM, pAddress, &iHitTrigger, &iHitDisable, piBp);
431 * @param pAddress The address of the breakpoint.
443 static DECLCALLBACK(int) dbgfR3BpSetReg(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t *piHitTrigger, uint64_t *piHitDisable,
451 if (!DBGFR3AddrIsValid(pUVM, pAddress))
487 PDBGFBP pBp = dbgfR3BpGetByAddr(pVM, DBGFBPTYPE_REG, pAddress->FlatPtr);
510 pBp->GCPtr = pAddress->FlatPtr;
539 * @param pAddress The address of the breakpoint.
550 VMMR3DECL(int) DBGFR3BpSetReg(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable,
557 pUVM, pAddress, &iHitTrigger, &iHitDisable, fType, cb, piBp);
607 * @param pAddress The address of the breakpoint.
616 static DECLCALLBACK(int) dbgfR3BpSetREM(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t *piHitTrigger,
624 if (!DBGFR3AddrIsValid(pUVM, pAddress))
636 PDBGFBP pBp = dbgfR3BpGetByAddr(pVM, DBGFBPTYPE_REM, pAddress->FlatPtr);
661 pBp->GCPtr = pAddress->FlatPtr;
670 int rc = REMR3BreakpointSet(pVM, pAddress->FlatPtr);
672 int rc = IEMBreakpointSet(pVM, pAddress->FlatPtr);
691 * @param pAddress The address of the breakpoint.
699 VMMR3DECL(int) DBGFR3BpSetREM(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, uint32_t *piBp)
705 pUVM, pAddress, &iHitTrigger, &iHitDisable, piBp);