VirtualBox

Changeset 81369 in vbox


Ignore:
Timestamp:
Oct 18, 2019 9:13:03 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
134082
Message:

*: doxygen fixes

Location:
trunk
Files:
60 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/GuestHost/clipboard-helper.h

    r81223 r81369  
    8282 * @param   pwszSrc  The source UTF-16 string
    8383 * @param   cwcSrc   The length of the source string in RTUTF16 units.
    84  * @retval  pcwcDst  The length of the destination string in RTUTF16 units.
     84 * @param   pcwcDst  The length of the destination string in RTUTF16 units.
    8585 */
    8686int ShClUtf16GetLinSize(PRTUTF16 pwszSrc, size_t cwcSrc, size_t *pcwcDst);
  • trunk/include/VBox/VMMDev.h

    r77893 r81369  
    8585 * @remarks These defines also live in the 16-bit and assembly versions of this
    8686 *          header.
     87 * @{
    8788 */
    8889#define VMMDEV_VERSION                      0x00010004
     
    18531854}
    18541855
    1855 /** @} */
    18561856
    18571857/** @name VBVA ring defines.
     
    18721872 * until the record is completed.
    18731873 *
    1874  */
     1874 * @{ */
    18751875#define VMMDEV_VBVA_RING_BUFFER_SIZE        (_4M - _1K)
    18761876#define VMMDEV_VBVA_RING_BUFFER_THRESHOLD   (4 * _1K)
     
    19651965/** @} */
    19661966
     1967/** @} */
    19671968RT_C_DECLS_END
    19681969#pragma pack()
  • trunk/include/VBox/types.h

    r81031 r81369  
    831831} VBOXIDTR, *PVBOXIDTR;
    832832#pragma pack()
    833 
    834 /** @} */
    835833
    836834
  • trunk/include/VBox/vd-ifs-internal.h

    r76585 r81369  
    3434
    3535RT_C_DECLS_BEGIN
     36
     37/** @addtogroup grp_vd
     38 * @internal
     39 * @{ */
    3640
    3741/**
     
    684688}
    685689
     690/** @} */
    686691RT_C_DECLS_END
    687692
    688 /** @} */
    689 
    690693#endif /* !VBOX_INCLUDED_vd_ifs_internal_h */
  • trunk/include/VBox/vd-ifs.h

    r79794 r81369  
    4141
    4242RT_C_DECLS_BEGIN
     43
     44/** @addtogroup grp_vd
     45 * @{ */
    4346
    4447/** Interface header magic. */
  • trunk/include/VBox/vmm/cpum.h

    r81240 r81369  
    15721572/** @} */
    15731573
    1574 #if !defined(IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS) && defined(RT_ARCH_AMD64)
     1574#if (!defined(IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS) && defined(RT_ARCH_AMD64)) || defined(DOXYGEN_RUNNING)
     1575/** @name Inlined Guest Getters and predicates Functions.
     1576 * @{ */
    15751577
    15761578/**
     
    25152517}
    25162518
     2519/** @} */
    25172520#endif /* !IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS && RT_ARCH_AMD64 */
    25182521
    2519 /** @} */
    25202522
    25212523
  • trunk/include/VBox/vmm/cpumctx.h

    r80069 r81369  
    639639        uint8_t                 abPadding0[48];
    640640    } hwvirt;
    641     /** @} */
    642641} CPUMCTX;
    643642#pragma pack()
  • trunk/include/VBox/vmm/hm_svm.h

    r81245 r81369  
    11561156    } while (0)
    11571157
    1158 /** @def HMSVM_SEG_REG_COPY_TO_VMCB
     1158/** @def HMSVM_SEG_REG_COPY_FROM_VMCB
    11591159 * Copies the specified segment register from the VMCB to a virtual CPU
    11601160 * context.
  • trunk/include/VBox/vmm/pdmcommon.h

    r76585 r81369  
    9090
    9191
    92 /** PDM Attach/Detach Callback Flags.
     92/** @name PDM Attach/Detach Callback Flags.
    9393 * Used by PDMDeviceAttach, PDMDeviceDetach, PDMDriverAttach, PDMDriverDetach,
    9494 * FNPDMDEVATTACH, FNPDMDEVDETACH, FNPDMDRVATTACH, FNPDMDRVDETACH and
    9595 * FNPDMDRVCONSTRUCT.
    96  @{ */
     96 * @{ */
    9797/** The attach/detach command is not a hotplug event. */
    9898#define PDM_TACH_FLAGS_NOT_HOT_PLUG     RT_BIT_32(0)
     
    100100 * This is mostly for internal use.  */
    101101#define PDM_TACH_FLAGS_NO_CALLBACKS     RT_BIT_32(1)
    102 /* @} */
     102/** @} */
    103103
    104104
  • trunk/include/VBox/vmm/vmapi.h

    r80338 r81369  
    270270typedef VMREQ *PVMREQ;
    271271
    272 /** @} */
    273 
    274272
    275273#ifndef IN_RC
  • trunk/include/iprt/asn1.h

    r76585 r81369  
    472472/** @name Helper macros for prototyping standard functions for an ASN.1 type.
    473473 * @{ */
     474
    474475#define RTASN1TYPE_STANDARD_PROTOTYPES_NO_GET_CORE(a_TypeNm, a_DeclMacro, a_ImplExtNm) \
    475476    a_DeclMacro(int)  RT_CONCAT(a_ImplExtNm,_Init)(RT_CONCAT(P,a_TypeNm) pThis, PCRTASN1ALLOCATORVTABLE pAllocator); \
     
    486487
    487488
    488 /** @name Helper macros for prototyping standard functions for an ASN.1 type.
    489  * @{ */
    490489#define RTASN1TYPE_STANDARD_PROTOTYPES(a_TypeNm, a_DeclMacro, a_ImplExtNm, a_Asn1CoreNm) \
    491490    DECL_FORCE_INLINE(PRTASN1CORE) RT_CONCAT(a_ImplExtNm,_GetAsn1Core)(RT_CONCAT(PC,a_TypeNm) pThis) \
     
    13781377    } while (0)
    13791378
    1380 /** Helpers for comparing optional context tags.
     1379/** @name Helpers for comparing optional context tags.
    13811380 * This will return if both are not present or if their precense differs.
    13821381 * @{ */
  • trunk/include/iprt/avl.h

    r76585 r81369  
    4141
    4242
    43 /** AVL tree of void pointers.
     43/** @name AVL tree of void pointers.
    4444 * @{
    4545 */
     
    8686
    8787
    88 /** AVL tree of unsigned long.
     88/** @name AVL tree of unsigned long.
    8989 * @{
    9090 */
     
    129129
    130130
    131 /** AVL tree of void pointer ranges.
     131/** @name AVL tree of void pointer ranges.
    132132 * @{
    133133 */
     
    178178
    179179
    180 /** AVL tree of uint32_t
     180/** @name AVL tree of uint32_t
    181181 * @{
    182182 */
     
    219219/** @} */
    220220
     221/** @name AVL tree of uint32_t, offset based
     222 * @{
     223 */
     224
    221225/**
    222226 * AVL uint32_t type for the relative offset pointer scheme.
     
    267271
    268272
    269 /** AVL tree of uint32_t, list duplicates.
     273/** @name AVL tree of uint32_t, list duplicates.
    270274 * @{
    271275 */
     
    306310
    307311
    308 /** AVL tree of uint64_t
     312/** @name AVL tree of uint64_t
    309313 * @{
    310314 */
     
    348352
    349353
    350 /** AVL tree of uint64_t ranges.
     354/** @name AVL tree of uint64_t ranges.
    351355 * @{
    352356 */
     
    397401
    398402
    399 /** AVL tree of RTGCPHYSes - using relative offsets internally.
     403/** @name AVL tree of RTGCPHYSes - using relative offsets internally.
    400404 * @{
    401405 */
     
    449453
    450454
    451 /** AVL tree of RTGCPHYS ranges - using relative offsets internally.
     455/** @name AVL tree of RTGCPHYS ranges - using relative offsets internally.
    452456 * @{
    453457 */
     
    507511
    508512
    509 /** AVL tree of RTGCPTRs.
     513/** @name AVL tree of RTGCPTRs.
    510514 * @{
    511515 */
     
    548552
    549553
    550 /** AVL tree of RTGCPTRs - using relative offsets internally.
     554/** @name AVL tree of RTGCPTRs - using relative offsets internally.
    551555 * @{
    552556 */
     
    599603
    600604
    601 /** AVL tree of RTGCPTR ranges.
     605/** @name AVL tree of RTGCPTR ranges.
    602606 * @{
    603607 */
     
    650654
    651655
    652 /** AVL tree of RTGCPTR ranges - using relative offsets internally.
     656/** @name AVL tree of RTGCPTR ranges - using relative offsets internally.
    653657 * @{
    654658 */
     
    707711
    708712
    709 /** AVL tree of RTGCPTR ranges (overlapping supported) - using relative offsets internally.
     713/** @name AVL tree of RTGCPTR ranges (overlapping supported) - using relative
     714 *        offsets internally.
    710715 * @{
    711716 */
     
    766771
    767772
    768 /** AVL tree of RTUINTPTR.
     773/** @name AVL tree of RTUINTPTR.
    769774 * @{
    770775 */
     
    815820
    816821
    817 /** AVL tree of RTUINTPTR ranges.
     822/** @name AVL tree of RTUINTPTR ranges.
    818823 * @{
    819824 */
     
    868873
    869874
    870 /** AVL tree of RTHCPHYSes - using relative offsets internally.
     875/** @name AVL tree of RTHCPHYSes - using relative offsets internally.
    871876 * @{
    872877 */
     
    922927
    923928
    924 /** AVL tree of RTIOPORTs - using relative offsets internally.
     929/** @name AVL tree of RTIOPORTs - using relative offsets internally.
    925930 * @{
    926931 */
     
    972977
    973978
    974 /** AVL tree of RTIOPORT ranges - using relative offsets internally.
     979/** @name AVL tree of RTIOPORT ranges - using relative offsets internally.
    975980 * @{
    976981 */
     
    10241029
    10251030
    1026 /** AVL tree of RTHCPHYSes.
     1031/** @name AVL tree of RTHCPHYSes.
    10271032 * @{
    10281033 */
     
    10731078/** @} */
    10741079
    1075 /** AVL tree of RTGCPHYSes.
     1080/** @name AVL tree of RTGCPHYSes.
    10761081 * @{
    10771082 */
     
    11231128
    11241129
    1125 /** AVL tree of RTFOFF ranges.
     1130/** @name AVL tree of RTFOFF ranges.
    11261131 * @{
    11271132 */
  • trunk/include/iprt/cdefs.h

    r80535 r81369  
    245245
    246246
    247 /** @def __X86__
     247/** @def \__X86__
    248248 * Indicates that we're compiling for the X86 architecture.
    249249 * @deprecated
    250250 */
    251251
    252 /** @def __AMD64__
     252/** @def \__AMD64__
    253253 * Indicates that we're compiling for the AMD64 architecture.
    254254 * @deprecated
     
    37243724
    37253725
    3726 /** @def __PRETTY_FUNCTION__
     3726/** @def \__PRETTY_FUNCTION__
    37273727 *  With GNU C we'd like to use the builtin __PRETTY_FUNCTION__, so define that
    37283728 *  for the other compilers.
  • trunk/include/iprt/err.h

    r81062 r81369  
    12751275/** Found a ZIP64 Extra Information Field in a ZIP32 file. */
    12761276#define VERR_PKZIP_ZIP64EX_IN_ZIP32             (-965)
    1277 
     1277/** @} */
    12781278
    12791279/** @name RTZip status codes
     
    21922192/** Negative exponent makes no sense to integer math. */
    21932193#define VERR_BIGNUM_NEGATIVE_EXPONENT               (-24002)
    2194 
    21952194/** @} */
    21962195
     
    24932492 *  we reached the ned of the boot catalog secotr. */
    24942493#define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_CONTINUATION_EOS           (-25157)
    2495 
    24962494/** @} */
    24972495
  • trunk/include/iprt/formats/hfs.h

    r76585 r81369  
    216216/** @} */
    217217
    218 /** @name B-tree compare types (BTHeaderRec::keyCompareType) */
     218/** @name B-tree compare types (BTHeaderRec::keyCompareType)
     219 * @{ */
    219220#define kHFSCaseFolding                 UINT8_C(0xcf)
    220221#define kHFSBinaryCompare               UINT8_C(0xbc)
  • trunk/include/iprt/formats/lx.h

    r76585 r81369  
    4040RT_C_DECLS_BEGIN
    4141
     42/** @defgroup grp_rt_formats_lx     LX executable format (OS/2)
     43 * @ingroup grp_rt_formats
     44 * @{ */
     45
    4246#ifndef IMAGE_OS2_SIGNATURE_LX
    4347/** LX signature ("LX") */
    4448# define IMAGE_LX_SIGNATURE  K_LE2H_U16('L' | ('X' << 8))
    4549#endif
    46 
    4750
    4851/**
     
    202205
    203206
    204 /** @name Relocations (aka Fixups).
     207/** @defgroup grp_rt_formats_lx_relocs Relocations (aka Fixups).
    205208 * @{ */
    206209typedef union r32_offset
     
    241244#pragma pack()
    242245AssertCompileSize(r32_rlc, 16);
     246/** @} */
    243247
    244248/** @name Some attempt at size constanstants.
     
    287291
    288292
    289 /** @name The Object Table (aka segment table)
     293/** @defgroup grp_rt_formats_lx_object_tab The Object Table (aka segment table)
    290294 * @{ */
    291295
     
    417421
    418422
    419 /** @name The Entry Table (aka Export Table)
     423/** @defgroup grp_rt_formats_lx_entry_tab  The Entry Table (aka Export Table)
    420424 * @{ */
    421425
     
    500504/** @} */
    501505
    502 
     506/** @} */
    503507RT_C_DECLS_END
    504508
  • trunk/include/iprt/formats/pecoff.h

    r76585 r81369  
    15091509
    15101510/** @name WIN_CERT_REVISION_XXX - Certificate data directory revision.
    1511  * Used WIN_CERTIFICATE::wRevision found in the
    1512  * IMAGE_DIRECTORY_ENTRY_SECURITY data directory. */
     1511 * Used WIN_CERTIFICATE::wRevision found in the IMAGE_DIRECTORY_ENTRY_SECURITY
     1512 * data directory.
     1513 * @{ */
    15131514#define WIN_CERT_REVISION_1_0               UINT16_C(0x0100)
    15141515#define WIN_CERT_REVISION_2_0               UINT16_C(0x0200)
  • trunk/include/iprt/http.h

    r78659 r81369  
    277277 * @param   pszUrl          The proxy URL (libproxy style):
    278278 *
    279  *                          [{type}"://"][{userid}[@{password}]:]{server}[":"{port}]
     279 *                          [{type}"://"][{userid}[\@{password}]:]{server}[":"{port}]
    280280 *
    281281 *                          Valid proxy types are: http (default), https, socks4, socks4a,
     
    568568RTR3DECL(int) RTHttpSetDownloadCallback(RTHTTP hHttp, uint32_t fFlags, PFNRTHTTPDOWNLOADCALLBACK pfnCallback, void *pvUser);
    569569
    570 /** @name RTHTTPDOWNLOAD_F_XXX */
     570/** @name RTHTTPDOWNLOAD_F_XXX
     571 * @{ */
    571572/** The lower 10 bits gives the HTTP status required by the callback.
    572573 * For all other status codes, any body data will be returned via the
  • trunk/include/iprt/latin1.h

    r76585 r81369  
    391391RT_C_DECLS_END
    392392
    393 /** @} */
    394 
    395393#endif /* !IPRT_INCLUDED_latin1_h */
    396394
  • trunk/include/iprt/list-off32.h

    r76585 r81369  
    3232#include <iprt/types.h>
    3333
    34 /* @defgroup grp_rt_list_off32 RTListOff32 - Generic Doubly Linked List based on 32-bit offset.
     34/** @defgroup grp_rt_list_off32 RTListOff32 - Generic Doubly Linked List based on 32-bit offset.
    3535 * @ingroup grp_rt
    3636 *
    37  * This is the same as @link grp_rt_list, except that instead of pointers we
     37 * This is the same as @link{grp_rt_list}, except that instead of pointers we
    3838 * use 32-bit offsets.  The list implementation is circular, with a dummy node
    3939 * as anchor.  Be careful with the dummy node when walking the list.
     
    498498}
    499499
     500/** @} */
    500501RT_C_DECLS_END
    501502
    502 /** @} */
    503 
    504503#endif /* !IPRT_INCLUDED_list_off32_h */
    505504
  • trunk/include/iprt/log.h

    r79949 r81369  
    12271227
    12281228
    1229 /** @name Release Logging
     1229/** @defgroup grp_rt_log_rel    Release Logging
    12301230 * @{
    12311231 */
     
    18001800
    18011801/** @name COM port logging
    1802  * {
     1802 * @{
    18031803 */
    18041804
  • trunk/include/iprt/param.h

    r76585 r81369  
    128128/** @} */
    129129
    130 
    131 /** @} */
    132 
    133130#endif /* !IPRT_INCLUDED_param_h */
    134131
  • trunk/include/iprt/shmem.h

    r78561 r81369  
    3636/** @defgroup grp_rt_shmem RTShMem - Shared memory.
    3737 * @ingroup grp_rt
     38 * @{
    3839 */
    3940
  • trunk/include/iprt/types.h

    r81096 r81369  
    17721772#define NIL_RTGCPTR64           ((RTGCPTR64)0)
    17731773
    1774 /** Guest context pointer.
    1775  * Keep in mind that this type is an unsigned integer in
    1776  * HC and void pointer in GC.
    1777  */
    1778 #if GC_ARCH_BITS == 64
     1774/** @typedef RTGCPTR
     1775 * Guest context pointer.
     1776 * Keep in mind that this type is an unsigned integer in HC and void pointer in GC. */
     1777/** @typedef PRTGCPTR
     1778 * Pointer to a guest context pointer. */
     1779/** @typedef PCRTGCPTR
     1780 * Pointer to a const guest context pointer. */
     1781/** @def NIL_RTGCPTR
     1782 * NIL GC pointer.  */
     1783/** @def RTGCPTR_MAX
     1784 * Max RTGCPTR value. */
     1785#if GC_ARCH_BITS == 64 || defined(DOXYGEN_RUNNING)
    17791786typedef RTGCPTR64               RTGCPTR;
    1780 /** Pointer to a guest context pointer. */
    17811787typedef PRTGCPTR64              PRTGCPTR;
    1782 /** Pointer to a const guest context pointer. */
    17831788typedef PCRTGCPTR64             PCRTGCPTR;
    1784 /** @def NIL_RTGCPTR
    1785  * NIL GC pointer.
    1786  */
    1787 # define NIL_RTGCPTR    NIL_RTGCPTR64
    1788 /** Max RTGCPTR value. */
     1789# define NIL_RTGCPTR            NIL_RTGCPTR64
    17891790# define RTGCPTR_MAX            UINT64_MAX
    17901791#elif GC_ARCH_BITS == 32
    17911792typedef RTGCPTR32               RTGCPTR;
    1792 /** Pointer to a guest context pointer. */
    17931793typedef PRTGCPTR32              PRTGCPTR;
    1794 /** Pointer to a const guest context pointer. */
    17951794typedef PCRTGCPTR32             PCRTGCPTR;
    1796 /** @def NIL_RTGCPTR
    1797  * NIL GC pointer.
    1798  */
    17991795# define NIL_RTGCPTR            NIL_RTGCPTR32
    1800 /** Max RTGCPTR value. */
    18011796# define RTGCPTR_MAX            UINT32_MAX
    18021797#else
     
    18481843/** Pointer to a const raw mode context pointer. */
    18491844typedef const RTRCPTR   RT_FAR *PCRTRCPTR;
    1850 /** @def NIL_RTGCPTR
    1851  * NIL RC pointer.
    1852  */
     1845/** @def NIL_RTRCPTR
     1846 * NIL RC pointer.  */
    18531847#ifndef IN_RC
    18541848# define NIL_RTRCPTR            ((RTRCPTR)0)
  • trunk/include/iprt/utf16.h

    r76585 r81369  
    13831383
    13841384/** @} */
    1385 
    1386 
    13871385RT_C_DECLS_END
    13881386
    1389 /** @} */
    1390 
    13911387#endif /* !IPRT_INCLUDED_utf16_h */
    13921388
  • trunk/include/iprt/vfs.h

    r80585 r81369  
    182182
    183183
    184 /** @defgroup grp_vfs_obj           VFS Base Object API
     184/** @defgroup grp_rt_vfs_obj        VFS Base Object API
    185185 * @{
    186186 */
     
    442442
    443443
    444 /** @defgroup grp_vfs_fsstream      VFS Filesystem Stream API
     444/** @defgroup grp_rt_vfs_fsstream   VFS Filesystem Stream API
    445445 *
    446446 * Filesystem streams are for tar, cpio and similar.  Any virtual filesystem can
     
    567567
    568568
    569 /** @defgroup grp_vfs_dir           VFS Directory API
     569/** @defgroup grp_rt_vfs_dir        VFS Directory API
    570570 * @{
    571571 */
     
    758758
    759759
    760 /** @defgroup grp_vfs_symlink       VFS Symbolic Link API
     760/** @defgroup grp_rt_vfs_symlink    VFS Symbolic Link API
    761761 *
    762762 * @remarks The TAR VFS and filesystem stream uses symbolic links for
     
    861861
    862862
    863 /** @defgroup grp_vfs_iostream      VFS I/O Stream API
     863/** @defgroup grp_rt_vfs_iostream   VFS I/O Stream API
    864864 * @{
    865865 */
     
    12101210
    12111211
    1212 /** @defgroup grp_vfs_file          VFS File API
     1212/** @defgroup grp_rt_vfs_file       VFS File API
    12131213 * @{
    12141214 */
     
    14671467#define RTVFSFILE_SIZE_F_IS_VALID(a_fFlags) \
    14681468    ( !((a_fFlags) & ~RTVFSFILE_SIZE_F_ACTION_MASK) && ((a_fFlags) & RTVFSFILE_SIZE_F_ACTION_MASK) != 0 )
    1469 /** @} */
    1470 
    1471 
    14721469/** Mask of valid flags. */
    14731470#define RTFILE_ALLOC_SIZE_F_VALID           (RTFILE_ALLOC_SIZE_F_KEEP_SIZE)
     
    15071504
    15081505
    1509 /** @defgroup grp_vfs_misc          VFS Miscellaneous
     1506/** @defgroup grp_rt_vfs_misc       VFS Miscellaneous
    15101507 * @{
    15111508 */
  • trunk/include/iprt/vfslowlevel.h

    r80585 r81369  
    553553     *          that sockets should not be opened.
    554554     * @retval  VERR_IS_A_BLOCK_DEVICE if @a pszEntry is a block device but
    555      *          @a fFlags indicates that block devices should not be opened.
    556      * @retval  VERR_IS_A_BLOCK_DEVICE if @a pszEntry is a character device but
    557      *          @a fFlags indicates that character devices should not be opened.
     555     *          @a fFlags indicates that block devices should not be opened, or vice
     556     *          versa.
    558557     *
    559558     * @param   pvThis      The implementation specific directory data.
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/VBoxDispDriverDDraw.cpp

    r80748 r81369  
    2727
    2828    pHalInfo->vmiData.fpPrimary = pDev->layout.offFramebuffer;
    29     /*pHalInfo->vmiData.dwFlags /*unused*/
     29    /*pHalInfo->vmiData.dwFlags  - unused*/
    3030    pHalInfo->vmiData.dwDisplayWidth = pDev->mode.ulWidth;
    3131    pHalInfo->vmiData.dwDisplayHeight = pDev->mode.ulHeight;
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp

    r81223 r81369  
    11571157
    11581158    /* Disconnect from the host service.
    1159     /* This will also send a VBOX_SHCL_HOST_MSG_QUIT from the host so that we can break out from our message worker. */
     1159     * This will also send a VBOX_SHCL_HOST_MSG_QUIT from the host so that we can break out from our message worker. */
    11601160    VbglR3ClipboardDisconnect(pCtx->CmdCtx.uClientID);
    11611161    pCtx->CmdCtx.uClientID = 0;
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSeamless.cpp

    r79183 r81369  
    242242    rectVisible = rectWindow;
    243243
    244     /* Filter out Windows XP shadow windows
     244    /* Filter out Windows XP shadow windows */
    245245    /** @todo still shows inside the guest */
    246246    if ( szWindowText[0] == 0 &&
  • trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp

    r81178 r81369  
    8181 * @param   pCtx      Our context information
    8282 * @param   u32Format The format of the data being requested
    83  * @retval  ppv       On success and if pcb > 0, this will point to a buffer
     83 * @param   ppv       On success and if pcb > 0, this will point to a buffer
    8484 *                    to be freed with RTMemFree containing the data read.
    85  * @retval  pcb       On success, this contains the number of bytes of data
     85 * @param   pcb       On success, this contains the number of bytes of data
    8686 *                    returned
    8787 */
  • trunk/src/VBox/Debugger/DBGPlugInCommonELF.h

    r76564 r81369  
    3636/** Valid bit mask. */
    3737#define DBG_DIGGER_ELF_MASK                 UINT32_C(0x00000003)
    38 /* @} */
     38/** @} */
    3939
    4040int DBGDiggerCommonParseElf32Mod(PUVM pUVM, const char *pszModName, const char *pszFilename, uint32_t fFlags,
  • trunk/src/VBox/Debugger/DBGPlugInOS2.cpp

    r76784 r81369  
    3333*   Structures and Typedefs                                                                                                      *
    3434*********************************************************************************************************************************/
    35 
    36 /** @name Internal OS/2 structures */
    37 
    38 /** @} */
    39 
    4035
    4136typedef enum DBGDIGGEROS2VER
  • trunk/src/VBox/Devices/PC/DevACPI.cpp

    r81031 r81369  
    18911891
    18921892/**
    1893  * @{FNIOMIOPORTOUT, ACPI_RESET_BLK}
     1893 * @callback_method_impl{FNIOMIOPORTOUT, ACPI_RESET_BLK}
    18941894 */
    18951895PDMBOTHCBDECL(int) acpiR3ResetWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
  • trunk/src/VBox/Devices/Serial/DevOxPcie958.cpp

    r81031 r81369  
    4040
    4141/** @name PCI device related constants.
    42  * @} */
     42 * @{ */
    4343/** The PCI device ID. */
    4444#define OX958_PCI_DEVICE_ID             0xc308
  • trunk/src/VBox/Devices/Storage/DevVirtioSCSI.cpp

    r81368 r81369  
    5959
    6060#define LUN0    0
    61 /**
    62  * @name VirtIO 1.0 SCSI Host feature bits (See VirtIO 1.0 specification, Section 5.6.3)
     61/** @name VirtIO 1.0 SCSI Host feature bits (See VirtIO 1.0 specification, Section 5.6.3)
    6362 * @{  */
    6463#define VIRTIO_SCSI_F_INOUT                RT_BIT_64(0)           /** Request is device readable AND writeable         */
     
    199198} VIRTIOSCSI_CONFIG_T, PVIRTIOSCSI_CONFIG_T;
    200199
    201 /**
    202  * @name VirtIO 1.0 SCSI Host Device device specific control types
     200/** @name VirtIO 1.0 SCSI Host Device device specific control types
    203201 * @{  */
    204202#define VIRTIOSCSI_T_NO_EVENT                       0
     
    219217} VIRTIOSCSI_EVENT_T, *PVIRTIOSCSI_EVENT_T;
    220218
    221 /**
    222  * @name VirtIO 1.0 SCSI Host Device device specific event types
     219/** @name VirtIO 1.0 SCSI Host Device device specific event types
    223220 * @{  */
    224221#define VIRTIOSCSI_EVT_RESET_HARD                   0           /**<                                                 */
     
    278275#pragma pack()
    279276
    280 /**
    281  * @name VirtIO 1.0 SCSI Host Device Req command-specific response values
     277/** @name VirtIO 1.0 SCSI Host Device Req command-specific response values
    282278 * @{  */
    283279#define VIRTIOSCSI_S_OK                             0          /**< control, command                                 */
     
    294290/** @} */
    295291
    296 /**
    297  * @name VirtIO 1.0 SCSI Host Device command-specific task_attr values
     292/** @name VirtIO 1.0 SCSI Host Device command-specific task_attr values
    298293 * @{  */
    299294#define VIRTIOSCSI_S_SIMPLE                        0           /**<                                                  */
     
    304299
    305300/**
    306  * @name VirtIO 1.0 SCSI Host Device Control command before we know type (5.6.6.2)
    307  * @{  */
     301 * VirtIO 1.0 SCSI Host Device Control command before we know type (5.6.6.2)
     302 */
    308303typedef struct virtio_scsi_ctrl
    309304{
     
    311306} VIRTIOSCSI_CTRL_T, *PVIRTIOSCSI_CTRL_T;
    312307
    313 /**
    314  * @name VirtIO 1.0 SCSI Host Device command-specific TMF values
     308/** @name VirtIO 1.0 SCSI Host Device command-specific TMF values
    315309 * @{  */
    316310#define VIRTIOSCSI_T_TMF                           0           /**<                                                  */
     
    323317#define VIRTIOSCSI_T_TMF_QUERY_TASK                6           /**<                                                  */
    324318#define VIRTIOSCSI_T_TMF_QUERY_TASK_SET            7           /**<                                                  */
    325 /*** @} */
     319/** @} */
    326320
    327321#pragma pack(1)
     
    338332#pragma pack()
    339333
    340 /**
    341  * @name VirtIO 1.0 SCSI Host Device device specific tmf control response values
     334/** @name VirtIO 1.0 SCSI Host Device device specific tmf control response values
    342335 * @{  */
    343336#define VIRTIOSCSI_S_FUNCTION_COMPLETE            0           /**<                                                   */
     
    369362} VIRTIO_SCSI_CTRL_UNION_T, *PVIRTIO_SCSI_CTRL_UNION_T;
    370363
    371 /**
    372  * @name VirtIO 1.0 SCSI Host Device device specific tmf control response values
     364/** @name VirtIO 1.0 SCSI Host Device device specific tmf control response values
    373365 * @{  */
    374366#define VIRTIOSCSI_EVT_ASYNC_OPERATIONAL_CHANGE  2           /**<                                                   */
  • trunk/src/VBox/Devices/USB/VUSBInternal.h

    r77000 r81369  
    4545
    4646
    47 /** @name Internal Device Operations, Structures and Constants.
     47/** @defgroup grp_vusb_int  VUSB Internals.
     48 * @ingroup grp_vusb
     49 * @internal
     50 * @{
     51 */
     52
     53/** @defgroup grp_vusb_int_dev  Internal Device Operations, Structures and Constants.
    4854 * @{
    4955 */
     
    309315
    310316
    311 /** @name Internal Hub Operations, Structures and Constants.
     317/** @defgroup grp_vusb_int_hub Internal Hub Operations, Structures and Constants.
    312318 * @{
    313319 */
     
    345351
    346352
    347 /** @name Internal Root Hub Operations, Structures and Constants.
     353/** @defgroup grp_vusb_int_roothub Internal Root Hub Operations, Structures and Constants.
    348354 * @{
    349355 */
     
    497503} CANCELMODE;
    498504
    499 /* @} */
    500 
    501 
    502 
    503 /** @name Internal URB Operations, Structures and Constants.
     505/** @} */
     506
     507
     508
     509/** @defgroup grp_vusb_int_urb Internal URB Operations, Structures and Constants.
    504510 * @{ */
    505511int  vusbUrbSubmit(PVUSBURB pUrb);
     
    740746extern const char * const g_apszCtlStates[4];
    741747
     748/** @} */
    742749RT_C_DECLS_END
    743750#endif /* !VBOX_INCLUDED_SRC_USB_VUSBInternal_h */
  • trunk/src/VBox/HostDrivers/Support/SUPDrvIDC.h

    r76568 r81369  
    4040 * @remarks We can take a slightly more relaxed attitude wrt to size encoding
    4141 *          here since only windows will use standard I/O control function code.
    42  */
     42 *
     43 * @{
     44 */
     45
    4346#ifdef RT_OS_WINDOWS
    4447# define SUP_IDC_CODE(Function)                 CTL_CODE(FILE_DEVICE_UNKNOWN, (Function) + 2542, METHOD_BUFFERED, FILE_WRITE_ACCESS)
     
    4851
    4952
    50 /*******************************************************************************
    51 *   Structures and Typedefs                                                    *
    52 *******************************************************************************/
    5353#ifdef RT_ARCH_AMD64
    5454# pragma pack(8)                        /* paranoia. */
  • trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h

    r81106 r81369  
    16361636 * This queries a lot more information than merely VT-x/AMD-V basic capabilities
    16371637 * provided by SUP_IOCTL_VT_CAPS.
     1638 *
     1639 * @{
    16381640 */
    16391641#define SUP_IOCTL_GET_HWVIRT_MSRS                       SUP_CTL_CODE_SIZE(41, SUP_IOCTL_GET_HWVIRT_MSRS_SIZE)
  • trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h

    r76568 r81369  
    6868 * Whether we're employing set-user-ID-on-execute in the hardening.
    6969 */
    70 #if !defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4)
     70#if (!defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4)) || defined(DOXYGEN_RUNNING)
    7171# define SUP_HARDENED_SUID
    7272#else
  • trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp

    r76553 r81369  
    2323 * You may elect to license modified versions of this file under the
    2424 * terms and conditions of either the GPL or the CDDL or both.
    25  */
    26 
    27 /** @page   pg_sup          SUP - The Support Library
    28  *
    29  * The support library is responsible for providing facilities to load
    30  * VMM Host Ring-0 code, to call Host VMM Ring-0 code from Ring-3 Host
    31  * code, to pin down physical memory, and more.
    32  *
    33  * The VMM Host Ring-0 code can be combined in the support driver if
    34  * permitted by kernel module license policies. If it is not combined
    35  * it will be externalized in a .r0 module that will be loaded using
    36  * the IPRT loader.
    37  *
    38  * The Ring-0 calling is done thru a generic SUP interface which will
    39  * transfer an argument set and call a predefined entry point in the Host
    40  * VMM Ring-0 code.
    41  *
    42  * See @ref grp_sup "SUP - Support APIs" for API details.
    4325 */
    4426
  • trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp

    r80216 r81369  
    459459*   Defined Constants And Macros                                                                                                 *
    460460*********************************************************************************************************************************/
    461 /** @def SUP_HARDENED_SUID
    462  * Whether we're employing set-user-ID-on-execute in the hardening.
    463  */
     461/* This mess is temporary after eliminating a define duplicated in SUPLibInternal.h. */
    464462#if !defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4)
    465 # define SUP_HARDENED_SUID
     463# ifndef SUP_HARDENED_SUID
     464#  error "SUP_HARDENED_SUID is NOT defined?!?"
     465# endif
    466466#else
    467 # undef  SUP_HARDENED_SUID
     467# ifdef SUP_HARDENED_SUID
     468#  error "SUP_HARDENED_SUID is defined?!?"
     469# endif
    468470#endif
    469471
  • trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp

    r81161 r81369  
    26882688
    26892689
    2690 /**
    2691  * Alternative version of SUPR0Printf for Windows.
    2692  *
    2693  * @returns 0.
    2694  * @param   pszFormat   The format string.
    2695  */
    26962690SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...)
    26972691{
  • trunk/src/VBox/HostServices/DragAndDrop/VBoxDragAndDropSvc.cpp

    r76964 r81369  
    1616 */
    1717
    18 /** @page pg_svc_guest_control   Drag and drop HGCM Service
     18/** @page pg_svc_dnd    Drag and drop HGCM Service
    1919 *
    2020 * TODO
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r78947 r81369  
    326326 * @param  fMode      file attributes
    327327 * @param  handleInitial initial handle
    328  * @retval pfOpen    iprt create flags
     328 * @param  pfOpen     Where to return iprt create flags
    329329 */
    330330static int vbsfConvertFileOpenFlags(bool fWritable, unsigned fShflFlags, RTFMODE fMode, SHFLHANDLE handleInitial, uint64_t *pfOpen)
     
    556556 *
    557557 * @returns IPRT status code
    558  * @param  pClient               Data structure describing the client accessing the shared folder
    559  * @param  root                  The index of the shared folder in the table of mappings.
    560  * @param  pszPath               Path to the file or folder on the host.
    561  * @param  pParms @a CreateFlags Creation or open parameters, see include/VBox/shflsvc.h
    562  * @param  pParms @a Info        When a new file is created this specifies the initial parameters.
    563  *                               When a file is created or overwritten, it also specifies the
    564  *                               initial size.
    565  * @retval pParms @a Resulte     Shared folder status code, see include/VBox/shflsvc.h
    566  * @retval pParms @a Handle      On success the (shared folder) handle of the file opened or
    567  *                               created
    568  * @retval pParms @a Info        On success the parameters of the file opened or created
     558 * @param  pClient  Data structure describing the client accessing the shared folder
     559 * @param  root     The index of the shared folder in the table of mappings.
     560 * @param  pszPath  Path to the file or folder on the host.
     561 * @param  pParms   Input:
     562 *                    - @a CreateFlags: Creation or open parameters, see include/VBox/shflsvc.h
     563 *                    - @a Info:        When a new file is created this specifies the initial parameters.
     564 *                                      When a file is created or overwritten, it also specifies the
     565 *                                      initial size.
     566 *                  Output:
     567 *                    - @a Result:      Shared folder status code, see include/VBox/shflsvc.h
     568 *                    - @a Handle:      On success the (shared folder) handle of the file opened or
     569 *                                      created
     570 *                    - @a Info:        On success the parameters of the file opened or created
    569571 */
    570572static int vbsfOpenFile(SHFLCLIENTDATA *pClient, SHFLROOT root, char *pszPath, SHFLCREATEPARMS *pParms)
     
    764766 *
    765767 * @returns IPRT status code
    766  * @param  pClient               Data structure describing the client accessing the shared folder
    767  * @param  root                  The index of the shared folder in the table of mappings.
    768  * @param  pszPath               Path to the file or folder on the host.
    769  * @param  pParms @a CreateFlags Creation or open parameters, see include/VBox/shflsvc.h
    770  * @retval pParms @a Result      Shared folder status code, see include/VBox/shflsvc.h
    771  * @retval pParms @a Handle      On success the (shared folder) handle of the folder opened or
    772  *                               created
    773  * @retval pParms @a Info        On success the parameters of the folder opened or created
     768 * @param  pClient  Data structure describing the client accessing the shared
     769 *                  folder
     770 * @param  root     The index of the shared folder in the table of mappings.
     771 * @param  pszPath  Path to the file or folder on the host.
     772 * @param  pParms   Input: @a CreateFlags Creation or open parameters, see
     773 *                  include/VBox/shflsvc.h
     774 *                  Output:
     775 *                    - @a Result: Shared folder status code, see include/VBox/shflsvc.h
     776 *                    - @a Handle: On success the (shared folder) handle of the folder opened or
     777 *                                 created
     778 *                    - @a Info:   On success the parameters of the folder opened or created
    774779 *
    775780 * @note folders are created with fMode = 0777
     
    949954 * @param   pClient    client data
    950955 * @param   pszPath    The path of the file to be looked up
    951  * @retval  pParms->Result Status of the operation (success or error)
    952  * @retval  pParms->Info   On success, information returned about the file
     956 * @param   pParms     Output:
     957 *                      - @a Result: Status of the operation (success or error)
     958 *                      - @a Info:   On success, information returned about the
     959 *                                   file
    953960 */
    954961static int vbsfLookupFile(SHFLCLIENTDATA *pClient, char *pszPath, SHFLCREATEPARMS *pParms)
     
    10121019 *
    10131020 * @returns IPRT status code, but see note below
    1014  * @param   pClient        Data structure describing the client accessing the shared
    1015  *                         folder
    1016  * @param   root           The index of the shared folder in the table of mappings.
    1017  *                         The host path of the shared folder is found using this.
    1018  * @param   pPath          The path of the file or folder relative to the host path
    1019  *                         indexed by root.
    1020  * @param   cbPath         Presumably the length of the path in pPath.  Actually
    1021  *                         ignored, as pPath contains a length parameter.
    1022  * @param   pParms @a Info If a new file is created or an old one overwritten, set
    1023  *                         these attributes
    1024  * @retval  pParms @a Result Shared folder result code, see include/VBox/shflsvc.h
    1025  * @retval  pParms @a Handle Shared folder handle to the newly opened file
    1026  * @retval  pParms @a Info Attributes of the file or folder opened
     1021 * @param   pClient     Data structure describing the client accessing the
     1022 *                      shared folder
     1023 * @param   root        The index of the shared folder in the table of mappings.
     1024 *                      The host path of the shared folder is found using this.
     1025 * @param   pPath       The path of the file or folder relative to the host path
     1026 *                      indexed by root.
     1027 * @param   cbPath      Presumably the length of the path in pPath. Actually
     1028 *                      ignored, as pPath contains a length parameter.
     1029 * @param   pParms      Input: If a new file is created or an old one
     1030 *                      overwritten, set the @a Info attribute.
     1031 *
     1032 *                      Output:
     1033 *                        - @a Result Shared folder result code, see include/VBox/shflsvc.h
     1034 *                        - @a Handle Shared folder handle to the newly opened file
     1035 *                        - @a Info Attributes of the file or folder opened
    10271036 *
    10281037 * @note This function returns success if a "non-exceptional" error occurred,
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.h

    r78467 r81369  
    2525#include <VBox/shflsvc.h>
    2626
    27 int vbsfCreate (SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLSTRING *pPath, uint32_t cbPath, SHFLCREATEPARMS *pParms);
     27int vbsfCreate(SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLSTRING *pPath, uint32_t cbPath, SHFLCREATEPARMS *pParms);
    2828
    29 int vbsfClose (SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLHANDLE Handle);
     29int vbsfClose(SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLHANDLE Handle);
    3030
    3131int vbsfRead(SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLHANDLE Handle, uint64_t offset, uint32_t *pcbBuffer, uint8_t *pBuffer);
  • trunk/src/VBox/HostServices/SharedFolders/vbsfpathabs.cpp

    r78114 r81369  
    9898#if defined(RT_OS_WINDOWS)
    9999    /** @todo This code is not needed in 6.0 and later as IPRT translates paths
    100      *        to \\.\ format if they're too long.  */
     100     *        to //./ (inverted slashes for doxygen) format if they're too long.  */
    101101    const char *pszPathStart = pszRoot? pszRoot: pszPath;
    102102
  • trunk/src/VBox/Main/include/ApplianceImpl.h

    r78923 r81369  
    2727#include "MediumFormatImpl.h"
    2828
    29 /* Todo: This file needs massive cleanup. Split IAppliance in a public and
     29/** @todo This file needs massive cleanup. Split IAppliance in a public and
    3030 * private classes. */
    3131#include <iprt/tar.h>
     
    177177
    178178    /** @name Import stuff
    179      * @}
     179     * @{
    180180     */
    181181    HRESULT i_importImpl(const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress);
  • trunk/src/VBox/Main/include/GuestFsObjInfoImpl.h

    r76562 r81369  
    4040    /** @}  */
    4141
    42     /** @name Internal access helpers. */
     42    /** @name Internal access helpers.
     43     * @{ */
    4344    const GuestFsObjData &i_getData() const { return mData; }
    4445    /** @}  */
  • trunk/src/VBox/Main/include/vector.h

    r76562 r81369  
    335335
    336336/**
     337 * Iterates over a vector.
     338 *
    337339 * Iterates over the vector elements from first to last and execute the
    338340 * following instruction or block on each iteration with @a pIterator set to
    339341 * point to the current element (that is, a pointer to the pointer element for
    340342 * a vector-of-pointers).  Use in the same way as a "for" statement.
    341  * @param pvec       pointer to the vector to be iterated over
    342  * @param type       the type of the vector, must match the type specified at
    343  *                   vector initialisation (including whitespace etc)
     343 *
     344 * @param pvec       Pointer to the vector to be iterated over.
     345 * @param type       The type of the vector, must match the type specified at
     346 *                   vector initialisation (including whitespace etc).
     347 * @param pIterator  A pointer to @a type which will be set to point to the
     348 *                   current vector element on each iteration.
     349 *
    344350 * @todo  can we assert the correctness of the type in some way?
    345  * @param pIterator  a pointer to @a type which will be set to point to the
    346  *                   current vector element on each iteration
    347351 */
    348352#define VEC_FOR_EACH(pvec, type, pIterator) \
  • trunk/src/VBox/Main/src-client/KeyboardImpl.cpp

    r81246 r81369  
    3737////////////////////////////////////////////////////////////////////////////////
    3838
    39 /** @name Keyboard device capabilities bitfield
    40  * @{ */
     39/**
     40 * Keyboard device capabilities bitfield.
     41 */
    4142enum
    4243{
  • trunk/src/VBox/Main/src-server/HostDnsService.cpp

    r79795 r81369  
    3737
    3838static void dumpHostDnsInformation(const HostDnsInformation&);
    39 static void dumpHostDnsStrVector(const std::string&, const std::vector<std::string>&);
     39static void dumpHostDnsStrVector(const std::string &prefix, const std::vector<std::string> &v);
    4040
    4141
     
    409409}
    410410
    411 static void dumpHostDnsInformation(const HostDnsInformation& info)
     411static void dumpHostDnsInformation(const HostDnsInformation &info)
    412412{
    413413    dumpHostDnsStrVector("server", info.servers);
     
    422422
    423423
    424 static void dumpHostDnsStrVector(const std::string& prefix, const std::vector<std::string>& v)
     424static void dumpHostDnsStrVector(const std::string &prefix, const std::vector<std::string> &v)
    425425{
    426426    int i = 1;
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r80862 r81369  
    28032803 *  If a failure happens anywhere before the user function would be normally
    28042804 *  called, it will be called anyway in special "cleanup only" mode indicated
    2805  *  by \a aClient, \a aProgress and \aVrc arguments set to NULL. In this mode,
     2805 *  by \a aClient, \a aProgress and \a aVrc arguments set to NULL. In this mode,
    28062806 *  all the function is supposed to do is to cleanup its aUser argument if
    28072807 *  necessary (it's assumed that the ownership of this argument is passed to
  • trunk/src/VBox/VMM/VMMAll/IOMAllMmioNew.cpp

    r81363 r81369  
    5555/** @def IOM_MMIO_STATS_COMMA_ARG
    5656 * Statistics entry pointer argument. */
    57 #ifdef VBOX_WITH_STATISTICS
     57#if defined(VBOX_WITH_STATISTICS) || defined(DOXYGEN_RUNNING)
    5858# define IOM_MMIO_STATS_COMMA_DECL , PIOMMMIOSTATSENTRY pStats
    5959# define IOM_MMIO_STATS_COMMA_ARG  , pStats
     
    131131 * @param   pvValue     Where to store the value.
    132132 * @param   cbValue     The size of the value to write.
     133 * @param   pStats      Pointer to the statistics (never NULL).
    133134 */
    134135static VBOXSTRICTRC iomMmioDoComplicatedWrite(PVM pVM, PVMCPU pVCpu, CTX_SUFF(PIOMMMIOENTRY) pRegEntry,
     
    372373 * @param   pvValue     Where to store the value.
    373374 * @param   cbValue     The size of the value to read.
     375 * @param   pStats      Pointer to the statistics (never NULL).
    374376 */
    375377static VBOXSTRICTRC iomMMIODoComplicatedRead(PVM pVM, CTX_SUFF(PIOMMMIOENTRY) pRegEntry, RTGCPHYS GCPhys, RTGCPHYS offRegion,
     
    497499 *
    498500 * @returns VINF_SUCCESS.
    499  * @param   pvValue             Where to store the zeros.
    500  * @param   cbValue             How many bytes to read.
     501 * @param   pvValue     Where to store the zeros.
     502 * @param   cbValue     How many bytes to read.
     503 * @param   pStats      Pointer to the statistics (never NULL).
    501504 */
    502505static int iomMMIODoReadFFs(void *pvValue, size_t cbValue IOM_MMIO_STATS_COMMA_DECL)
     
    525528 *
    526529 * @returns VINF_SUCCESS.
    527  * @param   pvValue             Where to store the zeros.
    528  * @param   cbValue             How many bytes to read.
     530 * @param   pvValue     Where to store the zeros.
     531 * @param   cbValue     How many bytes to read.
     532 * @param   pStats      Pointer to the statistics (never NULL).
    529533 */
    530534static int iomMMIODoRead00s(void *pvValue, size_t cbValue IOM_MMIO_STATS_COMMA_DECL)
  • trunk/src/VBox/VMM/VMMR0/GMMR0.cpp

    r80346 r81369  
    24602460     * there are?...
    24612461     */
    2462     /** @todo.  */
     2462    /** @todo  */
    24632463
    24642464    return false;
  • trunk/src/VBox/VMM/VMMR3/PDMDevMiscHlp.cpp

    r81150 r81369  
    326326
    327327/** @name Ring-3 HPET Helpers
    328  * {@
     328 * @{
    329329 */
    330330
     
    449449
    450450/** @name Ring-3 Raw PCI Device Helpers
    451  * {@
     451 * @{
    452452 */
    453453
  • trunk/src/VBox/VMM/include/GIMHvInternal.h

    r80281 r81369  
    866866/** Guest requests purging of outgoing debug data. */
    867867#define GIM_HV_DEBUG_PURGE_OUTGOING_DATA          RT_BIT_32(1)
    868 /** @}*/
     868/** @} */
    869869
    870870
     
    882882/** @name SynIC.
    883883 *  Synthetic Interrupt Controller definitions.
    884  */
     884 * @{ */
    885885/** SynIC version register. */
    886886#define GIM_HV_SVERSION                           1
     
    12021202    /** @} */
    12031203
    1204     /** @name Hypercalls. */
    1205     /* @{ */
     1204    /** @name Hypercalls.
     1205     * @{ */
    12061206    /** Guest address of the hypercall input parameter page. */
    12071207    RTGCPHYS                    GCPhysHypercallIn;
  • trunk/src/VBox/VMM/include/GIMKvmInternal.h

    r80281 r81369  
    7979AssertCompile(MSR_GIM_KVM_RANGE0_FIRST <= MSR_GIM_KVM_RANGE0_LAST);
    8080AssertCompile(MSR_GIM_KVM_RANGE1_FIRST <= MSR_GIM_KVM_RANGE1_LAST);
     81/** @} */
    8182
    8283/** KVM page size.  */
  • trunk/src/VBox/VMM/include/PGMInternal.h

    r80281 r81369  
    36143614    STAMCOUNTER StatR3FlushTLBSameCR3Global;        /**< R3: The number of times PGMFlushTLB was called with the same CR3, global. (flush) */
    36153615    STAMPROFILE StatR3GstModifyPage;                /**< R3: Profiling of the PGMGstModifyPage() body */
    3616     /** @} */
    36173616} PGMCPUSTATS;
    36183617
     
    37793778    /** Pointer to the page of the current active CR3 - R0 Ptr. */
    37803779    R0PTRTYPE(PPGMPOOLPAGE)         pShwPageCR3R0;
    3781     /** @} */
    37823780
    37833781    /** For saving stack space, the disassembler state is allocated here instead of
  • trunk/src/VBox/VMM/include/VMMTracing.h

    r76585 r81369  
    119119
    120120# endif
    121 #endif /* IN_RING0*/
     121#endif /* IN_RING0 */
    122122/** @} */
    123123
    124124
    125 /** @} */
    126 
    127125#endif /* !VMM_INCLUDED_SRC_include_VMMTracing_h */
    128126
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette