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

  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCDataChannelInit.h 42 , maxRetransmitTime(-1)
47 int maxRetransmitTime;
WebRTCDataChannelHandler.h 47 virtual unsigned short maxRetransmitTime() const { return 0; }
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebRTCDataChannelHandler.cpp 63 m_reliable = (init.ordered && init.maxRetransmits == -1 && init.maxRetransmitTime == -1);
78 unsigned short MockWebRTCDataChannelHandler::maxRetransmitTime() const
80 return m_init.maxRetransmitTime;
MockWebRTCDataChannelHandler.h 46 virtual unsigned short maxRetransmitTime() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
RTCDataChannelHandler.h 52 unsigned short maxRetransmitTime() const;
RTCDataChannelHandler.cpp 71 unsigned short RTCDataChannelHandler::maxRetransmitTime() const
73 return m_webHandler->maxRetransmitTime();
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannelinterface.h 47 maxRetransmitTime(-1),
55 int maxRetransmitTime; // The max period of time in milliseconds in which
datachannel.cc 71 config->maxRetransmitTime != -1)) {
78 config->maxRetransmitTime < -1) {
83 if (config->maxRetransmits != -1 && config->maxRetransmitTime != -1) {
85 "maxRetransmits and maxRetransmitTime should not be both set.";
117 config_.maxRetransmitTime == -1;
404 send_params.max_rtx_ms = config_.maxRetransmitTime;
mediastreamsignaling.cc     [all...]
peerconnectioninterface_unittest.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.idl 34 readonly attribute unsigned short maxRetransmitTime;
RTCDataChannel.h 57 unsigned short maxRetransmitTime() const;
RTCDataChannel.cpp 88 unsigned short RTCDataChannel::maxRetransmitTime() const
90 return m_handler->maxRetransmitTime();
RTCPeerConnection.cpp 458 if (options.get("maxRetransmitTime", value))
459 init.maxRetransmitTime = value;
  /external/chromium_org/content/renderer/media/
rtc_peer_connection_handler.cc 593 config.maxRetransmitTime = init.maxRetransmitTime;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
peerconnection_jni.cc 409 init.maxRetransmitTime = GetIntField(jni, j_init, max_retransmit_time_id);
    [all...]

Completed in 274 milliseconds