VirtualBox

Changeset 65098 in vbox for trunk/src


Ignore:
Timestamp:
Jan 4, 2017 12:05:08 PM (8 years ago)
Author:
vboxsync
Message:

Runtime: doxygen fixes (no space after comma in interface_method_impl)

Location:
trunk/src/VBox/Runtime/common
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/asn1/asn1-default-allocator.cpp

    r64883 r65098  
    5555
    5656
    57 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnFree} */
     57/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnFree} */
    5858static DECLCALLBACK(void) rtAsn1DefaultAllocator_Free(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation, void *pv)
    5959{
     
    6464
    6565
    66 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnAlloc} */
     66/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnAlloc} */
    6767static DECLCALLBACK(int)  rtAsn1DefaultAllocator_Alloc(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation,
    6868                                                       void **ppv, size_t cb)
     
    8181
    8282
    83 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnRealloc} */
     83/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnRealloc} */
    8484static DECLCALLBACK(int)  rtAsn1DefaultAllocator_Realloc(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation,
    8585                                                         void *pvOld, void **ppvNew, size_t cbNew)
     
    100100
    101101
    102 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnFreeArray} */
     102/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnFreeArray} */
    103103static DECLCALLBACK(void) rtAsn1DefaultAllocator_FreeArray(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ARRAYALLOCATION pAllocation,
    104104                                                           void **papvArray)
     
    118118
    119119
    120 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnGrowArray} */
     120/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnGrowArray} */
    121121static DECLCALLBACK(int) rtAsn1DefaultAllocator_GrowArray(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ARRAYALLOCATION pAllocation,
    122122                                                          void ***ppapvArray, uint32_t cMinEntries)
     
    186186
    187187
    188 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnShrinkArray} */
     188/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnShrinkArray} */
    189189static DECLCALLBACK(void) rtAsn1DefaultAllocator_ShrinkArray(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ARRAYALLOCATION pAllocation,
    190190                                                             void ***ppapvArray, uint32_t cNew, uint32_t cCurrent)
  • trunk/src/VBox/Runtime/common/asn1/asn1-efence-allocator.cpp

    r64883 r65098  
    3737
    3838
    39 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnFree} */
     39/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnFree} */
    4040static DECLCALLBACK(void) rtAsn1EFenceAllocator_Free(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation, void *pv)
    4141{
     
    4646
    4747
    48 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnAlloc} */
     48/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnAlloc} */
    4949static DECLCALLBACK(int)  rtAsn1EFenceAllocator_Alloc(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation,
    5050                                                      void **ppv, size_t cb)
     
    6262
    6363
    64 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnRealloc} */
     64/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnRealloc} */
    6565static DECLCALLBACK(int)  rtAsn1EFenceAllocator_Realloc(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ALLOCATION pAllocation,
    6666                                                        void *pvOld, void **ppvNew, size_t cbNew)
     
    8080
    8181
    82 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnFreeArray} */
     82/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnFreeArray} */
    8383static DECLCALLBACK(void) rtAsn1EFenceAllocator_FreeArray(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ARRAYALLOCATION pAllocation,
    8484                                                          void **papvArray)
     
    102102
    103103
    104 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnGrowArray} */
     104/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnGrowArray} */
    105105static DECLCALLBACK(int) rtAsn1EFenceAllocator_GrowArray(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ARRAYALLOCATION pAllocation,
    106106                                                         void ***ppapvArray, uint32_t cMinEntries)
     
    146146
    147147
    148 /** @interface_method_impl{RTASN1ALLOCATORVTABLE, pfnShrinkArray} */
     148/** @interface_method_impl{RTASN1ALLOCATORVTABLE,pfnShrinkArray} */
    149149static DECLCALLBACK(void) rtAsn1EFenceAllocator_ShrinkArray(PCRTASN1ALLOCATORVTABLE pThis, PRTASN1ARRAYALLOCATION pAllocation,
    150150                                                            void ***ppapvArray, uint32_t cNew, uint32_t cCurrent)
  • trunk/src/VBox/Runtime/common/crypto/store-inmem.cpp

    r62564 r65098  
    202202
    203203
    204 /** @interface_method_impl{RTCRSTOREPROVIDER, pfnDestroyStore} */
     204/** @interface_method_impl{RTCRSTOREPROVIDER,pfnDestroyStore} */
    205205static DECLCALLBACK(void) rtCrStoreInMem_DestroyStore(void *pvProvider)
    206206{
     
    224224
    225225
    226 /** @interface_method_impl{RTCRSTOREPROVIDER, pfnCertCtxQueryPrivateKey} */
     226/** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertCtxQueryPrivateKey} */
    227227static DECLCALLBACK(int) rtCrStoreInMem_CertCtxQueryPrivateKey(void *pvProvider, PRTCRCERTCTXINT pCertCtx,
    228228                                                               uint8_t *pbKey, size_t cbKey, size_t *pcbKeyRet)
     
    234234
    235235
    236 /** @interface_method_impl{RTCRSTOREPROVIDER, pfnCertFindAll} */
     236/** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertFindAll} */
    237237static DECLCALLBACK(int) rtCrStoreInMem_CertFindAll(void *pvProvider, PRTCRSTORECERTSEARCH pSearch)
    238238{
     
    245245
    246246
    247 /** @interface_method_impl{RTCRSTOREPROVIDER, pfnCertSearchNext} */
     247/** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertSearchNext} */
    248248static DECLCALLBACK(PCRTCRCERTCTX) rtCrStoreInMem_CertSearchNext(void *pvProvider, PRTCRSTORECERTSEARCH pSearch)
    249249{
     
    263263
    264264
    265 /** @interface_method_impl{RTCRSTOREPROVIDER, pfnCertSearchDestroy} */
     265/** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertSearchDestroy} */
    266266static DECLCALLBACK(void) rtCrStoreInMem_CertSearchDestroy(void *pvProvider, PRTCRSTORECERTSEARCH pSearch)
    267267{
     
    275275
    276276
    277 /** @interface_method_impl{RTCRSTOREPROVIDER, pfnCertSearchDestroy} */
     277/** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertSearchDestroy} */
    278278static DECLCALLBACK(int) rtCrStoreInMem_CertAddEncoded(void *pvProvider, uint32_t fFlags,
    279279                                                       uint8_t const *pbEncoded, uint32_t cbEncoded, PRTERRINFO pErrInfo)
Note: See TracChangeset for help on using the changeset viewer.

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