VirtualBox

Changeset 41805 in vbox


Ignore:
Timestamp:
Jun 17, 2012 5:29:20 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78623
Message:

Doxygen.

Location:
trunk/src/VBox
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/DrvNAT.cpp

    r41453 r41805  
    197197} DRVNAT;
    198198AssertCompileMemberAlignment(DRVNAT, StatNATRecvWakeups, 8);
    199 /** Pointer the NAT driver instance data. */
     199/** Pointer to the NAT driver instance data. */
    200200typedef DRVNAT *PDRVNAT;
    201201
  • trunk/src/VBox/VMM/VMMRZ/PGMRZDynMap.cpp

    r41783 r41805  
    304304typedef PGMRZDYNMAPENTRY *PPGMRZDYNMAPENTRY;
    305305
    306 /** Pointer the mapping cache instance for the current context.
     306/** Pointer to the mapping cache instance for the current context.
    307307 * @sa PGMR0DYNMAP, PGMRCDYNMAP  */
    308308typedef CTX_MID(PGM,DYNMAP) *PPGMRZDYNMAP;
  • trunk/src/VBox/VMM/include/PGMInline.h

    r41800 r41805  
    222222 *
    223223 * @returns VINF_SUCCESS. Will bail out to ring-3 on failure.
    224  * @param   pVCpu       The current CPU.
     224 * @param   pVCpu       Pointer to the VMCPU.
    225225 * @param   HCPhys      The physical address of the page.
    226226 * @param   ppv         Where to store the mapping address.
     
    261261 * @returns VBox status code, see pgmRZDynMapGCPageCommon for details.
    262262 * @param   pVM         Pointer to the VM.
    263  * @param   pVCpu       The current CPU.
     263 * @param   pVCpu       Pointer to the VMCPU.
    264264 * @param   GCPhys      The guest physical address of the page.
    265265 * @param   ppv         Where to store the mapping address.
     
    321321 *
    322322 * @returns VBox status code, see pgmRZDynMapGCPageCommon for details.
    323  * @param   pVCpu       The current CPU.
     323 * @param   pVCpu       Pointer to the VMCPU.
    324324 * @param   GCPhys      The guest physical address of the page.
    325325 * @param   ppv         Where to store the mapping address.
     
    336336 *
    337337 * @returns VBox status code, see pgmRZDynMapGCPageCommon for details.
    338  * @param   pVCpu       The current CPU.
     338 * @param   pVCpu       Pointer to the VMCPU.
    339339 * @param   HCPhys      The physical address of the page.
    340340 * @param   ppv         Where to store the mapping address. The offset is
     
    420420 * @returns pointer to the mapping.
    421421 * @param   pVM         Pointer to the PGM instance data.
    422  * @param   pVCpu       The current CPU.
     422 * @param   pVCpu       Pointer to the VMCPU.
    423423 * @param   pPage       The page.
    424424 */
     
    542542 *
    543543 * @returns true if it is, false if it isn't.
    544  * @param   pVCpu       The current CPU.
     544 * @param   pVCpu       Pointer to the VMCPU.
    545545 */
    546546DECL_FORCE_INLINE(bool) pgmGstIsNoExecuteActive(PVMCPU pVCpu)
     
    559559 *
    560560 * @returns true if it is, false if it isn't.
    561  * @param   pVCpu       The current CPU.
     561 * @param   pVCpu       Pointer to the VMCPU.
    562562 */
    563563DECL_FORCE_INLINE(bool) pgmGst32BitIsPageSizeExtActive(PVMCPU pVCpu)
     
    591591 *
    592592 * @returns VBox status code.
    593  * @param   pVCpu       The current CPU.
     593 * @param   pVCpu       Pointer to the VMCPU.
    594594 * @param   ppPd        Where to return the mapping. This is always set.
    595595 */
     
    615615 * Gets the address the guest page directory (32-bit paging).
    616616 *
    617  * @returns Pointer the page directory entry in question.
    618  * @param   pVCpu       The current CPU.
     617 * @returns Pointer to the page directory entry in question.
     618 * @param   pVCpu       Pointer to the VMCPU.
    619619 */
    620620DECLINLINE(PX86PD) pgmGstGet32bitPDPtr(PVMCPU pVCpu)
     
    645645 *
    646646 * @returns VBox status code.
    647  * @param   pVCpu       The current CPU.
     647 * @param   pVCpu       Pointer to the VMCPU.
    648648 * @param   ppPdpt      Where to return the mapping.  This is always set.
    649649 */
     
    671671 * @returns Pointer to the page directory in question.
    672672 * @returns NULL if the page directory is not present or on an invalid page.
    673  * @param   pVCpu       The current CPU.
     673 * @param   pVCpu       Pointer to the VMCPU.
    674674 */
    675675DECLINLINE(PX86PDPT) pgmGstGetPaePDPTPtr(PVMCPU pVCpu)
     
    687687 * @returns Pointer to the page directory in question.
    688688 * @returns NULL if the page directory is not present or on an invalid page.
    689  * @param   pVCpu       The current CPU
     689 * @param   pVCpu       Pointer to the VMCPU.
    690690 * @param   GCPtr       The address.
    691691 */
     
    761761 * @returns Pointer to the page directory in question.
    762762 * @returns NULL if the page directory is not present or on an invalid page.
    763  * @param   pVCpu       The current CPU.
     763 * @param   pVCpu       Pointer to the VMCPU.
    764764 * @param   GCPtr       The address.
    765765 * @param   piPD        Receives the index into the returned page directory
     
    811811 *
    812812 * @returns VBox status code.
    813  * @param   pVCpu       The current CPU.
     813 * @param   pVCpu       Pointer to the VMCPU.
    814814 * @param   ppPml4      Where to return the mapping.  Always set.
    815815 */
     
    836836 *
    837837 * @returns Pointer to the PML4 page.
    838  * @param   pVCpu       The current CPU.
     838 * @param   pVCpu       Pointer to the VMCPU.
    839839 */
    840840DECLINLINE(PX86PML4) pgmGstGetLongModePML4Ptr(PVMCPU pVCpu)
     
    851851 *
    852852 * @returns Pointer to the PML4 entry.
    853  * @param   pVCpu       The current CPU.
     853 * @param   pVCpu       Pointer to the VMCPU.
    854854 * @param   iPml4       The index.
    855855 * @remarks Only used by AssertCR3.
     
    878878 * @returns The page directory entry in question.
    879879 * @returns A non-present entry if the page directory is not present or on an invalid page.
    880  * @param   pVCpu       The current CPU.
     880 * @param   pVCpu       Pointer to the VMCPU.
    881881 * @param   GCPtr       The address.
    882882 */
     
    924924 * @returns The page directory in question.
    925925 * @returns NULL if the page directory is not present or on an invalid page.
    926  * @param   pVCpu       The current CPU.
     926 * @param   pVCpu       Pointer to the VMCPU.
    927927 * @param   GCPtr       The address.
    928928 * @param   ppPml4e     Page Map Level-4 Entry (out)
     
    977977 *
    978978 * @returns Pointer to the shadow 32-bit PD.
    979  * @param   pVCpu       The current CPU.
     979 * @param   pVCpu       Pointer to the VMCPU.
    980980 */
    981981DECLINLINE(PX86PD) pgmShwGet32BitPDPtr(PVMCPU pVCpu)
     
    989989 *
    990990 * @returns Shadow 32-bit PDE.
    991  * @param   pVCpu       The current CPU.
     991 * @param   pVCpu       Pointer to the VMCPU.
    992992 * @param   GCPtr       The address.
    993993 */
     
    10111011 *
    10121012 * @returns Pointer to the shadow 32-bit PDE.
    1013  * @param   pVCpu       The current CPU.
     1013 * @param   pVCpu       Pointer to the VMCPU.
    10141014 * @param   GCPtr       The address.
    10151015 */
     
    10281028 *
    10291029 * @returns Pointer to the shadow PAE PDPT.
    1030  * @param   pVCpu       The current CPU.
     1030 * @param   pVCpu       Pointer to the VMCPU.
    10311031 */
    10321032DECLINLINE(PX86PDPT) pgmShwGetPaePDPTPtr(PVMCPU pVCpu)
     
    10401040 *
    10411041 * @returns Pointer to the shadow PD.
    1042  * @param   pVCpu       The current CPU.
     1042 * @param   pVCpu       Pointer to the VMCPU.
    10431043 * @param   GCPtr       The address.
    10441044 */
     
    10641064 *
    10651065 * @returns Pointer to the shadow PD.
    1066  * @param   pVCpu       The current CPU.
     1066 * @param   pVCpu       Pointer to the VMCPU.
    10671067 * @param   GCPtr       The address.
    10681068 */
     
    10871087 *
    10881088 * @returns PDE.
    1089  * @param   pVCpu       The current CPU.
     1089 * @param   pVCpu       Pointer to the VMCPU.
    10901090 * @param   GCPtr       The address.
    10911091 */
     
    11081108 *
    11091109 * @returns Pointer to the PDE.
    1110  * @param   pVCpu       The current CPU.
     1110 * @param   pVCpu       Pointer to the VMCPU.
    11111111 * @param   GCPtr       The address.
    11121112 * @remarks Only used by AssertCR3.
     
    11271127 *
    11281128 * @returns Pointer to the shadow PML4.
    1129  * @param   pVCpu       The current CPU.
     1129 * @param   pVCpu       Pointer to the VMCPU.
    11301130 */
    11311131DECLINLINE(PX86PML4) pgmShwGetLongModePML4Ptr(PVMCPU pVCpu)
     
    11391139 *
    11401140 * @returns The entry.
    1141  * @param   pVCpu       The current CPU.
     1141 * @param   pVCpu       Pointer to the VMCPU.
    11421142 * @param   GCPtr       The address.
    11431143 */
     
    11601160 *
    11611161 * @returns The entry.
    1162  * @param   pVCpu       The current CPU.
     1162 * @param   pVCpu       Pointer to the VMCPU.
    11631163 * @param   iPml4       The PML4 index.
    11641164 */
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