HomeSort by relevance Sort by last modified time
    Searched refs:DSCP (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_network.cc 120 int DSCP = 0;
156 tbChannel.videoChannel, DSCP, useSetSockOpt)); // No ToS set
163 ViETest::Log(" DSCP set to 0x%x\n", DSCP);
168 tbChannel.videoChannel, DSCP, useSetSockOpt)); // No ToS set
169 ViETest::Log(" DSCP set to 0x%x\n", DSCP);
175 tbChannel.videoChannel, DSCP, useSetSockOpt)); // No ToS set
176 ViETest::Log(" DSCP set to 0x%x\n", DSCP);
    [all...]
  /external/chromium_org/third_party/webrtc/test/channel_transport/
udp_transport.h 199 // maxBitrate and override DSCP if overrideDSCP is not 0.
210 // DSCP.
216 virtual int32_t SetToS(const int32_t DSCP,
220 virtual int32_t ToS(int32_t& DSCP,
udp_transport_impl.h 85 virtual int32_t SetToS(const int32_t DSCP,
87 virtual int32_t ToS(int32_t& DSCP, bool& useSetSockOpt) const OVERRIDE;
udp_transport_impl.cc 727 int32_t UdpTransportImpl::SetToS(int32_t DSCP, bool useSetSockOpt)
735 if (DSCP < 0 || DSCP > 63)
737 WEBRTC_TRACE(kTraceError, kTraceTransport, _id, "Invalid DSCP");
882 int32_t TOSShifted = DSCP << 2;
903 if (rtpSock->SetTOS(DSCP) != 0)
910 if (rtcpSock->SetTOS(DSCP) != 0)
919 _tos = DSCP;
923 int32_t UdpTransportImpl::ToS(int32_t& DSCP,
927 DSCP = _tos
    [all...]

Completed in 83 milliseconds