Lines Matching defs:piBp

279  * @param   piBp            Where to store the breakpoint id. (optional)
283 uint64_t *piHitDisable, uint32_t *piBp)
294 AssertMsgReturn(!piBp || VALID_PTR(piBp), ("piBp=%p\n", piBp), VERR_INVALID_POINTER);
295 if (piBp)
296 *piBp = ~0;
310 if (piBp)
311 *piBp = pBp->iBp;
333 if (piBp)
334 *piBp = pBp->iBp;
353 * @param piBp Where to store the breakpoint id. (optional)
356 VMMR3DECL(int) DBGFR3BpSet(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, uint32_t *piBp)
363 pUVM, pAddress, &iHitTrigger, &iHitDisable, piBp);
439 * @param piBp Where to store the breakpoint id. (optional)
444 uint8_t fType, uint8_t cb, uint32_t *piBp)
455 AssertMsgReturn(!piBp || VALID_PTR(piBp), ("piBp=%p\n", piBp), VERR_INVALID_POINTER);
456 if (piBp)
457 *piBp = ~0;
498 if (piBp)
499 *piBp = pBp->iBp;
524 if (piBp)
525 *piBp = pBp->iBp;
547 * @param piBp Where to store the breakpoint id. (optional)
551 uint8_t fType, uint8_t cb, uint32_t *piBp)
557 pUVM, pAddress, &iHitTrigger, &iHitDisable, fType, cb, piBp);
612 * @param piBp Where to store the breakpoint id. (optional)
617 uint64_t *piHitDisable, uint32_t *piBp)
628 AssertMsgReturn(!piBp || VALID_PTR(piBp), ("piBp=%p\n", piBp), VERR_INVALID_POINTER);
629 if (piBp)
630 *piBp = ~0;
649 if (piBp)
650 *piBp = pBp->iBp;
676 if (piBp)
677 *piBp = pBp->iBp;
696 * @param piBp Where to store the breakpoint id. (optional)
699 VMMR3DECL(int) DBGFR3BpSetREM(PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, uint32_t *piBp)
705 pUVM, pAddress, &iHitTrigger, &iHitDisable, piBp);