Searched refs:AssertMsgBreakStmt (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Runtime/common/misc/
H A Dreqpool.cpp725 AssertMsgBreakStmt(uValue > (uint64_t)RTTHREADTYPE_INVALID && uValue < (uint64_t)RTTHREADTYPE_END,
732 AssertMsgBreakStmt(uValue <= RTREQPOOL_MAX_THREADS, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
744 AssertMsgBreakStmt(uValue <= RTREQPOOL_MAX_THREADS && uValue >= 1, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
757 AssertMsgBreakStmt(uValue < UINT32_MAX || uValue == RT_INDEFINITE_WAIT, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
775 AssertMsgBreakStmt(uValue <= RT_INDEFINITE_WAIT, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
792 AssertMsgBreakStmt(uValue <= pPool->cMaxThreads, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
793 AssertMsgBreakStmt(uValue >= pPool->cMinThreads, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
802 AssertMsgBreakStmt(uValue <= RTREQPOOL_PUSH_BACK_MAX_MS, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
813 AssertMsgBreakStmt(uValue <= RTREQPOOL_PUSH_BACK_MAX_MS, ("%llu\n", uValue), rc = VERR_OUT_OF_RANGE);
829 AssertMsgBreakStmt(uValu
[all...]
/vbox/src/VBox/Storage/
H A DVD.cpp5970 AssertMsgBreakStmt(VALID_PTR(ppDisk),
6246 AssertMsgBreakStmt(VALID_PTR(pszBackend) && *pszBackend,
6249 AssertMsgBreakStmt(VALID_PTR(pszFilename) && *pszFilename,
6252 AssertMsgBreakStmt((uOpenFlags & ~VD_OPEN_FLAGS_MASK) == 0,
6255 AssertMsgBreakStmt( !(uOpenFlags & VD_OPEN_FLAGS_SKIP_CONSISTENCY_CHECKS)
6573 AssertMsgBreakStmt(VALID_PTR(pszBackend) && *pszBackend,
6576 AssertMsgBreakStmt(VALID_PTR(pszFilename) && *pszFilename,
6579 AssertMsgBreakStmt((uOpenFlags & ~VD_OPEN_FLAGS_MASK) == 0,
6744 AssertMsgBreakStmt(VALID_PTR(pszFilter) && *pszFilter,
6748 AssertMsgBreakStmt(!(fFlag
[all...]
H A DVDI.cpp2884 AssertMsgBreakStmt(!(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY),
2888 AssertMsgBreakStmt(cbDiscard,
/vbox/src/VBox/VMM/VMMR3/
H A DSSM.cpp3592 AssertMsgBreakStmt(pCur->cb == sizeof(RTGCPTR), ("%#x (%s)\n", pCur->cb, pCur->pszName), rc = VERR_SSM_FIELD_INVALID_SIZE);
3597 AssertMsgBreakStmt(pCur->cb == sizeof(RTGCPHYS), ("%#x (%s)\n", pCur->cb, pCur->pszName), rc = VERR_SSM_FIELD_INVALID_SIZE);
3602 AssertMsgBreakStmt(pCur->cb == sizeof(RTRCPTR), ("%#x (%s)\n", pCur->cb, pCur->pszName), rc = VERR_SSM_FIELD_INVALID_SIZE);
3609 AssertMsgBreakStmt(pCur->cb == cEntries * sizeof(RTRCPTR) && cEntries, ("%#x (%s)\n", pCur->cb, pCur->pszName),
3730 AssertMsgBreakStmt( cbField <= cbStruct
3735 AssertMsgBreakStmt( !(fFlags & SSMSTRUCT_FLAGS_FULL_STRUCT)
3749 AssertMsgBreakStmt(cbField == sizeof(RTGCPHYS), ("%#x (%s)\n", cbField, pCur->pszName),
3755 AssertMsgBreakStmt(cbField == sizeof(RTGCPTR), ("%#x (%s)\n", cbField, pCur->pszName),
3761 AssertMsgBreakStmt(cbField == sizeof(RTRCPTR), ("%#x (%s)\n", cbField, pCur->pszName),
3769 AssertMsgBreakStmt(cbFiel
[all...]
H A DPDMLdr.cpp1638 AssertMsgBreakStmt(offInterface <= cbInterface,
1663 AssertMsgBreakStmt(offInterface + sizeof(*pValue) <= cbInterface,
1680 AssertMsgBreakStmt(offInterface + sizeof(*pValue) <= cbInterface,
/vbox/include/iprt/
H A Dassert.h893 /** @def AssertMsgBreakStmt
902 # define AssertMsgBreakStmt(expr, a, stmt) \ macro
911 # define AssertMsgBreakStmt(expr, a, stmt) \
2125 if (1) { AssertMsgBreakStmt(RT_SUCCESS_NP(rc), msg, stmt); NOREF(rc); } else do {} while (0)
2169 #define AssertRCSuccessBreakStmt(rc, stmt) AssertMsgBreakStmt((rc) == VINF_SUCCESS, ("%Rra\n", (rc)), stmt)
2570 #define AssertPtrBreakStmt(pv, stmt) AssertMsgBreakStmt(VALID_PTR(pv), ("%p\n", (pv)), stmt)
2607 #define AssertPtrNullBreakStmt(pv, stmt) AssertMsgBreakStmt(VALID_PTR(pv) || (pv) == NULL, ("%p\n", (pv)), stmt)
/vbox/src/VBox/Runtime/common/zip/
H A Dgzipvfs.cpp331 AssertMsgBreakStmt(cbReadIn > 0 && cbReadIn <= sizeof(pThis->abBuffer), ("%zu %Rrc\n", cbReadIn, rc),

Completed in 403 milliseconds