VirtualBox

Changeset 91996 in vbox for trunk


Ignore:
Timestamp:
Oct 22, 2021 7:13:14 AM (3 years ago)
Author:
vboxsync
Message:

Audio/Validation Kit: Renamed ATSTRANSPORT::pfnTerm -> .ATSTRANSPORT::pfnStop to match the rest.​ bugref:10008

Location:
trunk/src/VBox/Devices/Audio
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/AudioTestService.cpp

    r91040 r91996  
    11741174
    11751175    if (pThis->pTransport)
    1176         pThis->pTransport->pfnTerm(pThis->pTransportInst);
     1176        pThis->pTransport->pfnStop(pThis->pTransportInst);
    11771177
    11781178    size_t cbWritten;
  • trunk/src/VBox/Devices/Audio/AudioTestServiceClient.cpp

    r91995 r91996  
    321321    if (pClient->pTransport)
    322322    {
    323         pClient->pTransport->pfnTerm(pClient->pTransportInst);
     323        pClient->pTransport->pfnStop(pClient->pTransportInst);
    324324        pClient->pTransport->pfnDestroy(pClient->pTransportInst);
    325325        pClient->pTransport = NULL;
  • trunk/src/VBox/Devices/Audio/AudioTestServiceInternal.h

    r91024 r91996  
    110110
    111111    /**
    112      * Terminate a transport instance, closing and freeing resources.
     112     * Stops a transport instance, closing and freeing resources.
    113113     *
    114114     * On errors, the transport layer shall call RTMsgError to display the error
     
    117117     * @param   pThis               The transport instance.
    118118     */
    119     DECLR3CALLBACKMEMBER(void, pfnTerm, (PATSTRANSPORTINST pThis));
     119    DECLR3CALLBACKMEMBER(void, pfnStop, (PATSTRANSPORTINST pThis));
    120120
    121121    /**
  • trunk/src/VBox/Devices/Audio/AudioTestServiceTcp.cpp

    r91080 r91996  
    711711
    712712/**
    713  * @interface_method_impl{ATSTRANSPORT,pfnTerm}
    714  */
    715 static DECLCALLBACK(void) atsTcpTerm(PATSTRANSPORTINST pThis)
     713 * @interface_method_impl{ATSTRANSPORT,pfnStop}
     714 */
     715static DECLCALLBACK(void) atsTcpStop(PATSTRANSPORTINST pThis)
    716716{
    717717    LogRelFlowFuncEnter();
     
    907907    /* .pfnOption         = */ atsTcpOption,
    908908    /* .pfnStart          = */ atsTcpStart,
    909     /* .pfnTerm           = */ atsTcpTerm,
     909    /* .pfnStop           = */ atsTcpStop,
    910910    /* .pfnWaitForConnect = */ atsTcpWaitForConnect,
    911911    /* .pfnPollIn         = */ atsTcpPollIn,
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