Lines Matching defs:iBp

476     uint32_t iBp;
477 rc = DBGFR3BpSetReg(pUVM, &Address, iHitTrigger, iHitDisable, fType, cb, &iBp);
481 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
483 return DBGCCmdHlpPrintf(pCmdHlp, "Set access breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
486 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
488 return DBGCCmdHlpPrintf(pCmdHlp, "Updated access breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
490 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
514 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
515 if (iBp == paArgs[iArg].u.u64Number)
517 int rc2 = DBGFR3BpClear(pUVM, iBp);
519 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpClear(,%#x)", iBp);
521 dbgcBpDelete(pDbgc, iBp);
532 uint32_t iBp = pBp->iBp;
535 int rc2 = DBGFR3BpClear(pUVM, iBp);
537 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpClear(,%#x)", iBp);
539 dbgcBpDelete(pDbgc, iBp);
563 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
564 if (iBp == paArgs[iArg].u.u64Number)
566 rc = DBGFR3BpDisable(pUVM, iBp);
568 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpDisable failed for breakpoint %#x", iBp);
579 int rc2 = DBGFR3BpDisable(pUVM, pBp->iBp);
581 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpDisable failed for breakpoint %#x", pBp->iBp);
607 uint32_t iBp = (uint32_t)paArgs[iArg].u.u64Number;
608 if (iBp == paArgs[iArg].u.u64Number)
610 rc = DBGFR3BpEnable(pUVM, iBp);
612 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc, "DBGFR3BpEnable failed for breakpoint %#x", iBp);
623 int rc2 = DBGFR3BpEnable(pUVM, pBp->iBp);
625 rc = DBGCCmdHlpFailRc(pCmdHlp, pCmd, rc2, "DBGFR3BpEnable failed for breakpoint %#x", pBp->iBp);
646 PDBGCBP pDbgcBp = dbgcBpGet(pDbgc, pBp->iBp);
679 pBp->iBp, pBp->fEnabled ? 'e' : 'd', (int)cb, chType,
780 uint32_t iBp;
781 rc = DBGFR3BpSet(pUVM, &Address, iHitTrigger, iHitDisable, &iBp);
785 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
787 return DBGCCmdHlpPrintf(pCmdHlp, "Set breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
790 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
792 return DBGCCmdHlpPrintf(pCmdHlp, "Updated breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
794 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);
840 uint32_t iBp;
841 rc = DBGFR3BpSetREM(pUVM, &Address, iHitTrigger, iHitDisable, &iBp);
845 rc = dbgcBpAdd(pDbgc, iBp, pszCmds);
847 return DBGCCmdHlpPrintf(pCmdHlp, "Set REM breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
850 rc = dbgcBpUpdate(pDbgc, iBp, pszCmds);
852 return DBGCCmdHlpPrintf(pCmdHlp, "Updated REM breakpoint %u at %RGv\n", iBp, Address.FlatPtr);
854 int rc2 = DBGFR3BpClear(pDbgc->pUVM, iBp);