Changeset 57006 in vbox for trunk/include
- Timestamp:
- Jul 19, 2015 1:36:21 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101721
- Location:
- trunk/include/VBox
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuestLib.h
r55422 r57006 541 541 VBGLR3DECL(int) VbglR3GuestPropWrite(uint32_t u32ClientId, const char *pszName, const char *pszValue, const char *pszFlags); 542 542 VBGLR3DECL(int) VbglR3GuestPropWriteValue(uint32_t u32ClientId, const char *pszName, const char *pszValue); 543 VBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, va_list va); 544 VBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...); 543 VBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, 544 const char *pszValueFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0); 545 VBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, 546 const char *pszValueFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4); 545 547 VBGLR3DECL(int) VbglR3GuestPropRead(uint32_t u32ClientId, const char *pszName, void *pvBuf, uint32_t cbBuf, char **ppszValue, uint64_t *pu64Timestamp, char **ppszFlags, uint32_t *pcbBufActual); 546 548 VBGLR3DECL(int) VbglR3GuestPropReadValue(uint32_t ClientId, const char *pszName, char *pszValue, uint32_t cchValue, uint32_t *pcchValueActual); -
trunk/include/VBox/dbg.h
r55881 r57006 414 414 * @param ... Arguments specified in the format string. 415 415 */ 416 DECLCALLBACKMEMBER(int, pfnPrintf)(PDBGCCMDHLP pCmdHlp, size_t *pcbWritten, const char *pszFormat, ...); 416 DECLCALLBACKMEMBER(int, pfnPrintf)(PDBGCCMDHLP pCmdHlp, size_t *pcbWritten, 417 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4); 417 418 418 419 /** … … 426 427 * @param args Arguments specified in the format string. 427 428 */ 428 DECLCALLBACKMEMBER(int, pfnPrintfV)(PDBGCCMDHLP pCmdHlp, size_t *pcbWritten, const char *pszFormat, va_list args); 429 DECLCALLBACKMEMBER(int, pfnPrintfV)(PDBGCCMDHLP pCmdHlp, size_t *pcbWritten, 430 const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(3, 0); 429 431 430 432 /** … … 439 441 * @param ... Arguments specified in the format string. 440 442 */ 441 DECLCALLBACKMEMBER(size_t, pfnStrPrintf)(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, const char *pszFormat, ...); 443 DECLCALLBACKMEMBER(size_t, pfnStrPrintf)(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, 444 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5); 442 445 443 446 /** … … 453 456 */ 454 457 DECLCALLBACKMEMBER(size_t, pfnStrPrintfV)(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, 455 const char *pszFormat, va_list va) ;458 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0); 456 459 457 460 /** … … 464 467 * @param ... Format arguments, optional. 465 468 */ 466 DECLCALLBACKMEMBER(int, pfnVBoxError)(PDBGCCMDHLP pCmdHlp, int rc, const char *pszFormat, ...) ;469 DECLCALLBACKMEMBER(int, pfnVBoxError)(PDBGCCMDHLP pCmdHlp, int rc, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4); 467 470 468 471 /** … … 476 479 * @param args Format arguments, optional. 477 480 */ 478 DECLCALLBACKMEMBER(int, pfnVBoxErrorV)(PDBGCCMDHLP pCmdHlp, int rc, const char *pszFormat, va_list args); 481 DECLCALLBACKMEMBER(int, pfnVBoxErrorV)(PDBGCCMDHLP pCmdHlp, int rc, 482 const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(3, 0); 479 483 480 484 /** … … 517 521 * @param ... Format arguments. 518 522 */ 519 DECLCALLBACKMEMBER(int, pfnExec)(PDBGCCMDHLP pCmdHlp, const char *pszExpr, ...) ;523 DECLCALLBACKMEMBER(int, pfnExec)(PDBGCCMDHLP pCmdHlp, const char *pszExpr, ...) RT_IPRT_FORMAT_ATTR(2, 3); 520 524 521 525 /** … … 529 533 * @param va Format arguments. 530 534 */ 531 DECLCALLBACKMEMBER(int, pfnEvalV)(PDBGCCMDHLP pCmdHlp, PDBGCVAR pResult, const char *pszExpr, va_list va); 535 DECLCALLBACKMEMBER(int, pfnEvalV)(PDBGCCMDHLP pCmdHlp, PDBGCVAR pResult, 536 const char *pszExpr, va_list va) RT_IPRT_FORMAT_ATTR(3, 0); 532 537 533 538 /** … … 541 546 * @param va Format arguments. 542 547 */ 543 DECLCALLBACKMEMBER(int, pfnFailV)(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, const char *pszFormat, va_list va); 548 DECLCALLBACKMEMBER(int, pfnFailV)(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, 549 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0); 544 550 545 551 /** … … 557 563 * @see DBGCCmdHlpFailRc 558 564 */ 559 DECLCALLBACKMEMBER(int, pfnFailRcV)(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int rc, const char *pszFormat, va_list va); 565 DECLCALLBACKMEMBER(int, pfnFailRcV)(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int rc, 566 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0); 560 567 561 568 /** … … 679 686 * @copydoc DBGCCMDHLP::pfnPrintf 680 687 */ 681 DECLINLINE(int) DBGCCmdHlpPrintf(PDBGCCMDHLP pCmdHlp, const char *pszFormat, ...)688 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(2, 3) DBGCCmdHlpPrintf(PDBGCCMDHLP pCmdHlp, const char *pszFormat, ...) 682 689 { 683 690 va_list va; … … 695 702 * @copydoc DBGCCMDHLP::pfnStrPrintf 696 703 */ 697 DECLINLINE(size_t) DBGCCmdHlpStrPrintf(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, const char *pszFormat, ...) 704 DECLINLINE(size_t) RT_IPRT_FORMAT_ATTR(4, 5) DBGCCmdHlpStrPrintf(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, 705 const char *pszFormat, ...) 698 706 { 699 707 va_list va; … … 710 718 * @copydoc FNDBGCHLPVBOXERROR 711 719 */ 712 DECLINLINE(int) DBGCCmdHlpVBoxError(PDBGCCMDHLP pCmdHlp, int rc, const char *pszFormat, ...)720 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(3, 4) DBGCCmdHlpVBoxError(PDBGCCMDHLP pCmdHlp, int rc, const char *pszFormat, ...) 713 721 { 714 722 va_list va; … … 739 747 * @param ... Format arguments. 740 748 */ 741 DECLINLINE(int) DBGCCmdHlpEval(PDBGCCMDHLP pCmdHlp, PDBGCVAR pResult, const char *pszExpr, ...)749 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(3, 4) DBGCCmdHlpEval(PDBGCCMDHLP pCmdHlp, PDBGCVAR pResult, const char *pszExpr, ...) 742 750 { 743 751 va_list va; … … 761 769 * @param ... Format arguments. 762 770 */ 763 DECLINLINE(int) DBGCCmdHlpFail(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, const char *pszFormat, ...)771 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(3, 4) DBGCCmdHlpFail(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, const char *pszFormat, ...) 764 772 { 765 773 va_list va; … … 792 800 * @param ... Format arguments. 793 801 */ 794 DECLINLINE(int) DBGCCmdHlpFailRc(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int rc, const char *pszFormat, ...) 802 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(4, 5) DBGCCmdHlpFailRc(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int rc, 803 const char *pszFormat, ...) 795 804 { 796 805 va_list va; -
trunk/include/VBox/sup.h
r56952 r57006 1034 1034 * @param va The message format arguments. 1035 1035 */ 1036 typedef DECLCALLBACK(void) FNSUPTRUSTEDERROR(const char *pszWhere, SUPINITOP enmWhat, int rc, const char *pszMsgFmt, va_list va); 1036 typedef DECLCALLBACK(void) FNSUPTRUSTEDERROR(const char *pszWhere, SUPINITOP enmWhat, int rc, 1037 const char *pszMsgFmt, va_list va) RT_IPRT_FORMAT_ATTR(4, 0); 1037 1038 /** Pointer to FNSUPTRUSTEDERROR. */ 1038 1039 typedef FNSUPTRUSTEDERROR *PFNSUPTRUSTEDERROR; … … 1837 1838 SUPR0DECL(int) SUPR0QueryVTCaps(PSUPDRVSESSION pSession, uint32_t *pfCaps); 1838 1839 SUPR0DECL(int) SUPR0GipUnmap(PSUPDRVSESSION pSession); 1839 SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...) ;1840 SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2); 1840 1841 SUPR0DECL(SUPPAGINGMODE) SUPR0GetPagingMode(void); 1841 1842 SUPR0DECL(uint32_t) SUPR0GetKernelFeatures(void); -
trunk/include/VBox/vd-ifs.h
r54591 r57006 244 244 * @param va Error message arguments. 245 245 */ 246 DECLR3CALLBACKMEMBER(void, pfnError, (void *pvUser, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 246 DECLR3CALLBACKMEMBER(void, pfnError, (void *pvUser, int rc, RT_SRC_POS_DECL, 247 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 247 248 248 249 /** … … 255 256 * @param va Message arguments. 256 257 */ 257 DECLR3CALLBACKMEMBER(int, pfnMessage, (void *pvUser, const char *pszFormat, va_list va) );258 DECLR3CALLBACKMEMBER(int, pfnMessage, (void *pvUser, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(2, 0)); 258 259 259 260 } VDINTERFACEERROR, *PVDINTERFACEERROR; … … 288 289 * @param ... Arguments to the format string. 289 290 */ 290 DECLINLINE(int) vdIfError(PVDINTERFACEERROR pIfError, int rc, RT_SRC_POS_DECL,291 const char *pszFormat, ...)291 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) vdIfError(PVDINTERFACEERROR pIfError, int rc, RT_SRC_POS_DECL, 292 const char *pszFormat, ...) 292 293 { 293 294 va_list va; … … 307 308 * @param ... Arguments to the format string. 308 309 */ 309 DECLINLINE(int) vdIfErrorMessage(PVDINTERFACEERROR pIfError, const char *pszFormat, ...)310 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(2, 3) vdIfErrorMessage(PVDINTERFACEERROR pIfError, const char *pszFormat, ...) 310 311 { 311 312 int rc = VINF_SUCCESS; -
trunk/include/VBox/vmm/cfgm.h
r53615 r57006 93 93 VMMR3DECL(int) CFGMR3InsertSubTree(PCFGMNODE pNode, const char *pszName, PCFGMNODE pSubTree, PCFGMNODE *ppChild); 94 94 VMMR3DECL(int) CFGMR3InsertNode(PCFGMNODE pNode, const char *pszName, PCFGMNODE *ppChild); 95 VMMR3DECL(int) CFGMR3InsertNodeF(PCFGMNODE pNode, PCFGMNODE *ppChild, const char *pszNameFormat, ...); 96 VMMR3DECL(int) CFGMR3InsertNodeFV(PCFGMNODE pNode, PCFGMNODE *ppChild, const char *pszNameFormat, va_list Args); 95 VMMR3DECL(int) CFGMR3InsertNodeF(PCFGMNODE pNode, PCFGMNODE *ppChild, 96 const char *pszNameFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4); 97 VMMR3DECL(int) CFGMR3InsertNodeFV(PCFGMNODE pNode, PCFGMNODE *ppChild, 98 const char *pszNameFormat, va_list Args) RT_IPRT_FORMAT_ATTR(3, 0); 97 99 VMMR3DECL(void) CFGMR3SetRestrictedRoot(PCFGMNODE pNode); 98 100 VMMR3DECL(void) CFGMR3RemoveNode(PCFGMNODE pNode); … … 100 102 VMMR3DECL(int) CFGMR3InsertString(PCFGMNODE pNode, const char *pszName, const char *pszString); 101 103 VMMR3DECL(int) CFGMR3InsertStringN(PCFGMNODE pNode, const char *pszName, const char *pszString, size_t cchString); 102 VMMR3DECL(int) CFGMR3InsertStringF(PCFGMNODE pNode, const char *pszName, const char *pszFormat, ...); 103 VMMR3DECL(int) CFGMR3InsertStringFV(PCFGMNODE pNode, const char *pszName, const char *pszFormat, va_list va); 104 VMMR3DECL(int) CFGMR3InsertStringF(PCFGMNODE pNode, const char *pszName, 105 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4); 106 VMMR3DECL(int) CFGMR3InsertStringFV(PCFGMNODE pNode, const char *pszName, 107 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0); 104 108 VMMR3DECL(int) CFGMR3InsertStringW(PCFGMNODE pNode, const char *pszName, PCRTUTF16 pwszValue); 105 109 VMMR3DECL(int) CFGMR3InsertBytes(PCFGMNODE pNode, const char *pszName, const void *pvBytes, size_t cbBytes); … … 191 195 VMMR3DECL(PCFGMNODE) CFGMR3GetParentEx(PVM pVM, PCFGMNODE pNode); 192 196 VMMR3DECL(PCFGMNODE) CFGMR3GetChild(PCFGMNODE pNode, const char *pszPath); 193 VMMR3DECL(PCFGMNODE) CFGMR3GetChildF(PCFGMNODE pNode, const char *pszPathFormat, ...) ;194 VMMR3DECL(PCFGMNODE) CFGMR3GetChildFV(PCFGMNODE pNode, const char *pszPathFormat, va_list Args) ;197 VMMR3DECL(PCFGMNODE) CFGMR3GetChildF(PCFGMNODE pNode, const char *pszPathFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3); 198 VMMR3DECL(PCFGMNODE) CFGMR3GetChildFV(PCFGMNODE pNode, const char *pszPathFormat, va_list Args) RT_IPRT_FORMAT_ATTR(3, 0); 195 199 VMMR3DECL(PCFGMNODE) CFGMR3GetFirstChild(PCFGMNODE pNode); 196 200 VMMR3DECL(PCFGMNODE) CFGMR3GetNextChild(PCFGMNODE pCur); -
trunk/include/VBox/vmm/dbgf.h
r56291 r57006 289 289 VMMR3DECL(int) DBGFR3Event(PVM pVM, DBGFEVENTTYPE enmEvent); 290 290 VMMR3DECL(int) DBGFR3EventSrc(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, 291 const char *pszFunction, const char *pszFormat, ...) ;291 const char *pszFunction, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR_MAYBE_NULL(6, 7); 292 292 VMMR3DECL(int) DBGFR3EventSrcV(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, 293 const char *pszFunction, const char *pszFormat, va_list args) ;293 const char *pszFunction, const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR_MAYBE_NULL(6, 0); 294 294 VMMR3_INT_DECL(int) DBGFR3EventAssertion(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszMsg1, const char *pszMsg2); 295 295 VMMR3_INT_DECL(int) DBGFR3EventBreakpoint(PVM pVM, DBGFEVENTTYPE enmEvent); … … 446 446 * @param ... Arguments. 447 447 */ 448 DECLCALLBACKMEMBER(void, pfnPrintf)(PCDBGFINFOHLP pHlp, const char *pszFormat, ...) ;448 DECLCALLBACKMEMBER(void, pfnPrintf)(PCDBGFINFOHLP pHlp, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3); 449 449 450 450 /** … … 455 455 * @param args Argument list. 456 456 */ 457 DECLCALLBACKMEMBER(void, pfnPrintfV)(PCDBGFINFOHLP pHlp, const char *pszFormat, va_list args) ;457 DECLCALLBACKMEMBER(void, pfnPrintfV)(PCDBGFINFOHLP pHlp, const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(2, 0); 458 458 } DBGFINFOHLP; 459 459 -
trunk/include/VBox/vmm/mm.h
r56291 r57006 321 321 VMMR3DECL(char *) MMR3HeapStrDup(PVM pVM, MMTAG enmTag, const char *psz); 322 322 VMMR3DECL(char *) MMR3HeapStrDupU(PUVM pUVM, MMTAG enmTag, const char *psz); 323 VMMR3DECL(char *) MMR3HeapAPrintf(PVM pVM, MMTAG enmTag, const char *pszFormat, ...) ;324 VMMR3DECL(char *) MMR3HeapAPrintfU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, ...) ;325 VMMR3DECL(char *) MMR3HeapAPrintfV(PVM pVM, MMTAG enmTag, const char *pszFormat, va_list va) ;326 VMMR3DECL(char *) MMR3HeapAPrintfVU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, va_list va) ;323 VMMR3DECL(char *) MMR3HeapAPrintf(PVM pVM, MMTAG enmTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4); 324 VMMR3DECL(char *) MMR3HeapAPrintfU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4); 325 VMMR3DECL(char *) MMR3HeapAPrintfV(PVM pVM, MMTAG enmTag, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0); 326 VMMR3DECL(char *) MMR3HeapAPrintfVU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0); 327 327 VMMR3DECL(void) MMR3HeapFree(void *pv); 328 328 /** @} */ -
trunk/include/VBox/vmm/pdmcritsect.h
r56402 r57006 59 59 VMMR3DECL(uint32_t) PDMR3CritSectCountOwned(PVM pVM, char *pszNames, size_t cbNames); 60 60 61 VMMR3DECL(int) PDMR3CritSectInit(PVM pVM, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...); 61 VMMR3DECL(int) PDMR3CritSectInit(PVM pVM, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, 62 const char *pszNameFmt, ...) RT_IPRT_FORMAT_ATTR(6, 7); 62 63 VMMR3DECL(int) PDMR3CritSectEnterEx(PPDMCRITSECT pCritSect, bool fCallRing3); 63 64 VMMR3DECL(bool) PDMR3CritSectYield(PPDMCRITSECT pCritSect); -
trunk/include/VBox/vmm/pdmcritsectrw.h
r56291 r57006 51 51 } PDMCRITSECTRW; 52 52 53 VMMR3DECL(int) PDMR3CritSectRwInit(PVM pVM, PPDMCRITSECTRW pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...); 53 VMMR3DECL(int) PDMR3CritSectRwInit(PVM pVM, PPDMCRITSECTRW pCritSect, RT_SRC_POS_DECL, 54 const char *pszNameFmt, ...) RT_IPRT_FORMAT_ATTR(6, 7); 54 55 VMMR3DECL(int) PDMR3CritSectRwDelete(PPDMCRITSECTRW pCritSect); 55 56 VMMR3DECL(const char *) PDMR3CritSectRwName(PCPDMCRITSECTRW pCritSect); -
trunk/include/VBox/vmm/pdmdev.h
r56291 r57006 2769 2769 * @param ... Error message arguments. 2770 2770 */ 2771 DECLR3CALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)); 2771 DECLR3CALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, 2772 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7)); 2772 2773 2773 2774 /** … … 2781 2782 * @param va Error message arguments. 2782 2783 */ 2783 DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 2784 DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, 2785 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 2784 2786 2785 2787 /** … … 2793 2795 * @param ... Error message arguments. 2794 2796 */ 2795 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)); 2797 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, 2798 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5)); 2796 2799 2797 2800 /** … … 2805 2808 * @param va Error message arguments. 2806 2809 */ 2807 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)); 2810 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, 2811 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0)); 2808 2812 2809 2813 /** … … 2821 2825 * @param args Message parameters. 2822 2826 */ 2823 DECLR3CALLBACKMEMBER(int, pfnDBGFStopV,(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction, const char *pszFormat, va_list args)); 2827 DECLR3CALLBACKMEMBER(int, pfnDBGFStopV,(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction, 2828 const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(5, 0)); 2824 2829 2825 2830 /** … … 2894 2899 * @param ... Arguments to the format string. 2895 2900 */ 2896 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterF,(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, 2897 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, ...)); 2901 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterF,(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, 2902 STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, const char *pszDesc, 2903 const char *pszName, ...) RT_IPRT_FORMAT_ATTR(7, 8)); 2898 2904 2899 2905 /** … … 2913 2919 * @param args Arguments to the format string. 2914 2920 */ 2915 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterV,(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, 2916 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, va_list args)); 2921 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterV,(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, 2922 STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, const char *pszDesc, 2923 const char *pszName, va_list args) RT_IPRT_FORMAT_ATTR(7, 0)); 2917 2924 2918 2925 /** … … 3096 3103 */ 3097 3104 DECLR3CALLBACKMEMBER(int, pfnCritSectInit,(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, 3098 const char *pszNameFmt, va_list va) );3105 const char *pszNameFmt, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 3099 3106 3100 3107 /** … … 3772 3779 * @param ... Error message arguments. 3773 3780 */ 3774 DECLRCCALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)); 3781 DECLRCCALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, 3782 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7)); 3775 3783 3776 3784 /** … … 3784 3792 * @param va Error message arguments. 3785 3793 */ 3786 DECLRCCALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 3794 DECLRCCALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, 3795 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 3787 3796 3788 3797 /** … … 3796 3805 * @param ... Error message arguments. 3797 3806 */ 3798 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)); 3807 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, 3808 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5)); 3799 3809 3800 3810 /** … … 3808 3818 * @param va Error message arguments. 3809 3819 */ 3810 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)); 3820 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, 3821 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0)); 3811 3822 3812 3823 /** … … 3997 4008 * @param ... Error message arguments. 3998 4009 */ 3999 DECLR0CALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)); 4010 DECLR0CALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, 4011 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7)); 4000 4012 4001 4013 /** … … 4009 4021 * @param va Error message arguments. 4010 4022 */ 4011 DECLR0CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 4023 DECLR0CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, 4024 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 4012 4025 4013 4026 /** … … 4021 4034 * @param ... Error message arguments. 4022 4035 */ 4023 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)); 4036 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, 4037 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5)); 4024 4038 4025 4039 /** … … 4033 4047 * @param va Error message arguments. 4034 4048 */ 4035 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)); 4049 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, 4050 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0)); 4036 4051 4037 4052 /** … … 4711 4726 * @copydoc PDMDEVHLPR3::pfnVMSetError 4712 4727 */ 4713 DECLINLINE(int) PDMDevHlpVMSetError(PPDMDEVINS pDevIns, const int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) 4728 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) PDMDevHlpVMSetError(PPDMDEVINS pDevIns, const int rc, RT_SRC_POS_DECL, 4729 const char *pszFormat, ...) 4714 4730 { 4715 4731 va_list va; … … 4723 4739 * @copydoc PDMDEVHLPR3::pfnVMSetRuntimeError 4724 4740 */ 4725 DECLINLINE(int) PDMDevHlpVMSetRuntimeError(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...) 4741 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(4, 5) PDMDevHlpVMSetRuntimeError(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId, 4742 const char *pszFormat, ...) 4726 4743 { 4727 4744 va_list va; … … 4743 4760 * @param ... Message parameters. 4744 4761 */ 4745 DECLINLINE(int) PDMDevHlpDBGFStop(PPDMDEVINS pDevIns, RT_SRC_POS_DECL, const char *pszFormat, ...)4762 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(5, 6) PDMDevHlpDBGFStop(PPDMDEVINS pDevIns, RT_SRC_POS_DECL, const char *pszFormat, ...) 4746 4763 { 4747 4764 #ifdef VBOX_STRICT … … 4800 4817 * @copydoc PDMDEVHLPR3::pfnSTAMRegisterF 4801 4818 */ 4802 DECLINLINE(void) PDMDevHlpSTAMRegisterF(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 4803 const char *pszDesc, const char *pszName, ...) 4819 DECLINLINE(void) RT_IPRT_FORMAT_ATTR(7, 8) PDMDevHlpSTAMRegisterF(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, 4820 STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 4821 const char *pszDesc, const char *pszName, ...) 4804 4822 { 4805 4823 va_list va; … … 4925 4943 * @param ... Arguments for the format string. 4926 4944 */ 4927 DECLINLINE(int) PDMDevHlpCritSectInit(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...) 4945 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) PDMDevHlpCritSectInit(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, 4946 const char *pszNameFmt, ...) 4928 4947 { 4929 4948 int rc; -
trunk/include/VBox/vmm/pdmdrv.h
r56291 r57006 581 581 * @param ... Error message arguments. 582 582 */ 583 DECLRCCALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)); 583 DECLRCCALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, 584 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7)); 584 585 585 586 /** … … 593 594 * @param va Error message arguments. 594 595 */ 595 DECLRCCALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 596 DECLRCCALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, 597 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 596 598 597 599 /** … … 605 607 * @param ... Error message arguments. 606 608 */ 607 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)); 609 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, 610 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5)); 608 611 609 612 /** … … 617 620 * @param va Error message arguments. 618 621 */ 619 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)); 622 DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, 623 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0)); 620 624 621 625 /** … … 677 681 * @param ... Error message arguments. 678 682 */ 679 DECLR0CALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)); 683 DECLR0CALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, 684 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7)); 680 685 681 686 /** … … 689 694 * @param va Error message arguments. 690 695 */ 691 DECLR0CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 696 DECLR0CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, 697 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 692 698 693 699 /** … … 701 707 * @param ... Error message arguments. 702 708 */ 703 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)); 709 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, 710 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5)); 704 711 705 712 /** … … 713 720 * @param va Error message arguments. 714 721 */ 715 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)); 722 DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, 723 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0)); 716 724 717 725 /** … … 843 851 * @param ... Error message arguments. 844 852 */ 845 DECLR3CALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)); 853 DECLR3CALLBACKMEMBER(int, pfnVMSetError,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, 854 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7)); 846 855 847 856 /** … … 855 864 * @param va Error message arguments. 856 865 */ 857 DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 866 DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, 867 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 858 868 859 869 /** … … 867 877 * @param ... Error message arguments. 868 878 */ 869 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)); 879 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, 880 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5)); 870 881 871 882 /** … … 879 890 * @param va Error message arguments. 880 891 */ 881 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)); 892 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, 893 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0)); 882 894 883 895 /** … … 1048 1060 */ 1049 1061 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterF,(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, 1050 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, ...)); 1062 STAMUNIT enmUnit, const char *pszDesc, 1063 const char *pszName, ...) RT_IPRT_FORMAT_ATTR(7, 8)); 1051 1064 1052 1065 /** … … 1064 1077 */ 1065 1078 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterV,(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, 1066 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, va_list args)); 1079 STAMUNIT enmUnit, const char *pszDesc, 1080 const char *pszName, va_list args) RT_IPRT_FORMAT_ATTR(7, 0)); 1067 1081 1068 1082 /** … … 1342 1356 * @copydoc PDMDRVHLP::pfnVMSetError 1343 1357 */ 1344 DECLINLINE(int) PDMDrvHlpVMSetError(PPDMDRVINS pDrvIns, const int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) 1358 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) PDMDrvHlpVMSetError(PPDMDRVINS pDrvIns, const int rc, RT_SRC_POS_DECL, 1359 const char *pszFormat, ...) 1345 1360 { 1346 1361 va_list va; … … 1360 1375 * @copydoc PDMDRVHLP::pfnVMSetErrorV 1361 1376 */ 1362 DECLINLINE(int) PDMDrvHlpVMSetErrorV(PPDMDRVINS pDrvIns, const int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va) 1377 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 0) PDMDrvHlpVMSetErrorV(PPDMDRVINS pDrvIns, const int rc, RT_SRC_POS_DECL, 1378 const char *pszFormat, va_list va) 1363 1379 { 1364 1380 return pDrvIns->CTX_SUFF(pHlp)->pfnVMSetErrorV(pDrvIns, rc, RT_SRC_POS_ARGS, pszFormat, va); … … 1369 1385 * @copydoc PDMDRVHLP::pfnVMSetRuntimeError 1370 1386 */ 1371 DECLINLINE(int) PDMDrvHlpVMSetRuntimeError(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...) 1387 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(4, 5) PDMDrvHlpVMSetRuntimeError(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, 1388 const char *pszFormat, ...) 1372 1389 { 1373 1390 va_list va; … … 1388 1405 * @copydoc PDMDRVHLP::pfnVMSetRuntimeErrorV 1389 1406 */ 1390 DECLINLINE(int) PDMDrvHlpVMSetRuntimeErrorV(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va) 1407 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(4, 0) PDMDrvHlpVMSetRuntimeErrorV(PPDMDRVINS pDrvIns, uint32_t fFlags, 1408 const char *pszErrorId, const char *pszFormat, va_list va) 1391 1409 { 1392 1410 return pDrvIns->CTX_SUFF(pHlp)->pfnVMSetRuntimeErrorV(pDrvIns, fFlags, pszErrorId, pszFormat, va); … … 1600 1618 * @copydoc PDMDRVHLP::pfnSTAMRegisterF 1601 1619 */ 1602 DECLINLINE(void) PDMDrvHlpSTAMRegisterF(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1603 const char *pszDesc, const char *pszName, ...) 1620 DECLINLINE(void) RT_IPRT_FORMAT_ATTR(7, 8) PDMDrvHlpSTAMRegisterF(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, 1621 STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1622 const char *pszDesc, const char *pszName, ...) 1604 1623 { 1605 1624 va_list va; -
trunk/include/VBox/vmm/pdmusb.h
r56291 r57006 503 503 * @param va Message parameters. 504 504 */ 505 DECLR3CALLBACKMEMBER(int, pfnDBGFStopV,(PPDMUSBINS pUsbIns, const char *pszFile, unsigned iLine, const char *pszFunction, const char *pszFormat, va_list va)); 505 DECLR3CALLBACKMEMBER(int, pfnDBGFStopV,(PPDMUSBINS pUsbIns, const char *pszFile, unsigned iLine, const char *pszFunction, 506 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(5, 0)); 506 507 507 508 /** … … 595 596 * @param va Arguments to the format string. 596 597 */ 597 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterV,(PPDMUSBINS pUsbIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, 598 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, va_list va)); 598 DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterV,(PPDMUSBINS pUsbIns, void *pvSample, STAMTYPE enmType, 599 STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, const char *pszDesc, 600 const char *pszName, va_list va) RT_IPRT_FORMAT_ATTR(7, 0)); 599 601 600 602 /** … … 624 626 * @param va Error message arguments. 625 627 */ 626 DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMUSBINS pUsbIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 628 DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMUSBINS pUsbIns, int rc, RT_SRC_POS_DECL, 629 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0)); 627 630 628 631 /** … … 636 639 * @param va Error message arguments. 637 640 */ 638 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMUSBINS pUsbIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)); 641 DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMUSBINS pUsbIns, uint32_t fFlags, const char *pszErrorId, 642 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0)); 639 643 640 644 /** … … 892 896 * @param ... Message parameters. 893 897 */ 894 DECLINLINE(int) PDMUsbDBGFStop(PPDMUSBINS pUsbIns, RT_SRC_POS_DECL, const char *pszFormat, ...)898 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(5, 6) PDMUsbDBGFStop(PPDMUSBINS pUsbIns, RT_SRC_POS_DECL, const char *pszFormat, ...) 895 899 { 896 900 #ifdef VBOX_STRICT … … 955 959 * @param ... Error message arguments. 956 960 */ 957 DECLINLINE(int) PDMUsbHlpVMSetError(PPDMUSBINS pUsbIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) 961 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) PDMUsbHlpVMSetError(PPDMUSBINS pUsbIns, int rc, RT_SRC_POS_DECL, 962 const char *pszFormat, ...) 958 963 { 959 964 va_list va; -
trunk/include/VBox/vmm/ssm.h
r56291 r57006 1284 1284 VMMR3DECL(int) SSMR3Skip(PSSMHANDLE pSSM, size_t cb); 1285 1285 VMMR3DECL(int) SSMR3SkipToEndOfUnit(PSSMHANDLE pSSM); 1286 VMMR3DECL(int) SSMR3SetLoadError(PSSMHANDLE pSSM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) ;1287 VMMR3DECL(int) SSMR3SetLoadErrorV(PSSMHANDLE pSSM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va) ;1288 VMMR3DECL(int) SSMR3SetCfgError(PSSMHANDLE pSSM, RT_SRC_POS_DECL, const char *pszFormat, ...) ;1286 VMMR3DECL(int) SSMR3SetLoadError(PSSMHANDLE pSSM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7); 1287 VMMR3DECL(int) SSMR3SetLoadErrorV(PSSMHANDLE pSSM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0); 1288 VMMR3DECL(int) SSMR3SetCfgError(PSSMHANDLE pSSM, RT_SRC_POS_DECL, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(5, 6); 1289 1289 1290 1290 /** @} */ -
trunk/include/VBox/vmm/stam.h
r56291 r57006 1165 1165 1166 1166 VMMR3DECL(int) STAMR3RegisterFU(PUVM pUVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1167 const char *pszDesc, const char *pszName, ...) ;1167 const char *pszDesc, const char *pszName, ...) RT_IPRT_FORMAT_ATTR(7, 8); 1168 1168 VMMR3DECL(int) STAMR3RegisterF(PVM pVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1169 const char *pszDesc, const char *pszName, ...) ;1169 const char *pszDesc, const char *pszName, ...) RT_IPRT_FORMAT_ATTR(7, 8); 1170 1170 VMMR3DECL(int) STAMR3RegisterVU(PUVM pUVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1171 const char *pszDesc, const char *pszName, va_list args) ;1171 const char *pszDesc, const char *pszName, va_list args) RT_IPRT_FORMAT_ATTR(7, 0); 1172 1172 VMMR3DECL(int) STAMR3RegisterV(PVM pVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1173 const char *pszDesc, const char *pszName, va_list args) ;1173 const char *pszDesc, const char *pszName, va_list args) RT_IPRT_FORMAT_ATTR(7, 0); 1174 1174 1175 1175 /** … … 1196 1196 VMMR3DECL(int) STAMR3RegisterCallback(PVM pVM, void *pvSample, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1197 1197 PFNSTAMR3CALLBACKRESET pfnReset, PFNSTAMR3CALLBACKPRINT pfnPrint, 1198 const char *pszDesc, const char *pszName, ...) ;1198 const char *pszDesc, const char *pszName, ...) RT_IPRT_FORMAT_ATTR(8, 9); 1199 1199 VMMR3DECL(int) STAMR3RegisterCallbackV(PVM pVM, void *pvSample, STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, 1200 1200 PFNSTAMR3CALLBACKRESET pfnReset, PFNSTAMR3CALLBACKPRINT pfnPrint, 1201 const char *pszDesc, const char *pszName, va_list args) ;1201 const char *pszDesc, const char *pszName, va_list args) RT_IPRT_FORMAT_ATTR(8, 0); 1202 1202 VMMR3DECL(int) STAMR3Deregister(PUVM pUVM, const char *pszPat); 1203 VMMR3DECL(int) STAMR3DeregisterF(PUVM pUVM, const char *pszPatFmt, ...) ;1204 VMMR3DECL(int) STAMR3DeregisterV(PUVM pUVM, const char *pszPatFmt, va_list va) ;1203 VMMR3DECL(int) STAMR3DeregisterF(PUVM pUVM, const char *pszPatFmt, ...) RT_IPRT_FORMAT_ATTR(2, 3); 1204 VMMR3DECL(int) STAMR3DeregisterV(PUVM pUVM, const char *pszPatFmt, va_list va) RT_IPRT_FORMAT_ATTR(2, 0); 1205 1205 VMMR3DECL(int) STAMR3DeregisterByAddr(PUVM pUVM, void *pvSample); 1206 1206 -
trunk/include/VBox/vmm/vmapi.h
r56291 r57006 105 105 typedef FNVMATERROR *PFNVMATERROR; 106 106 107 VMMDECL(int) VMSetError(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) ;108 VMMDECL(int) VMSetErrorV(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list args) ;107 VMMDECL(int) VMSetError(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7); 108 VMMDECL(int) VMSetErrorV(PVM pVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(6, 7); 109 109 110 110 /** @def VM_SET_ERROR … … 152 152 */ 153 153 typedef DECLCALLBACK(void) FNVMATRUNTIMEERROR(PUVM pUVM, void *pvUser, uint32_t fFlags, const char *pszErrorId, 154 const char *pszFormat, va_list va) ;154 const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(5, 0); 155 155 /** Pointer to a VM runtime error callback. */ 156 156 typedef FNVMATRUNTIMEERROR *PFNVMATRUNTIMEERROR; 157 157 158 VMMDECL(int) VMSetRuntimeError(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...); 159 VMMDECL(int) VMSetRuntimeErrorV(PVM pVM, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list args); 158 VMMDECL(int) VMSetRuntimeError(PVM pVM, uint32_t fFlags, const char *pszErrorId, 159 const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5); 160 VMMDECL(int) VMSetRuntimeErrorV(PVM pVM, uint32_t fFlags, const char *pszErrorId, 161 const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(4, 0); 160 162 161 163 /** @name VMSetRuntimeError fFlags … … 436 438 VMMR3DECL(int) VMR3AtErrorRegister(PUVM pUVM, PFNVMATERROR pfnAtError, void *pvUser); 437 439 VMMR3DECL(int) VMR3AtErrorDeregister(PUVM pUVM, PFNVMATERROR pfnAtError, void *pvUser); 438 VMMR3DECL(int) VMR3SetError(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) ;439 VMMR3DECL(int) VMR3SetErrorV(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va) ;440 VMMR3DECL(int) VMR3SetError(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7); 441 VMMR3DECL(int) VMR3SetErrorV(PUVM pUVM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0); 440 442 VMMR3_INT_DECL(void) VMR3SetErrorWorker(PVM pVM); 441 443 VMMR3_INT_DECL(uint32_t) VMR3GetErrorCount(PUVM pUVM);
Note:
See TracChangeset
for help on using the changeset viewer.