Searched refs:maxRetransmitTime (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRTCDataChannelInit.h42 , maxRetransmitTime(-1)
47 int maxRetransmitTime; member in struct:WebKit::WebRTCDataChannelInit
H A DWebRTCDataChannelHandler.h47 virtual unsigned short maxRetransmitTime() const { return 0; } function in class:WebKit::WebRTCDataChannelHandler
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DMockWebRTCDataChannelHandler.cpp63 m_reliable = (init.ordered && init.maxRetransmits == -1 && init.maxRetransmitTime == -1);
78 unsigned short MockWebRTCDataChannelHandler::maxRetransmitTime() const function in class:WebTestRunner::MockWebRTCDataChannelHandler
80 return m_init.maxRetransmitTime;
H A DMockWebRTCDataChannelHandler.h46 virtual unsigned short maxRetransmitTime() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
H A DRTCDataChannelHandler.cpp71 unsigned short RTCDataChannelHandler::maxRetransmitTime() const function in class:WebCore::RTCDataChannelHandler
73 return m_webHandler->maxRetransmitTime();
H A DRTCDataChannelHandler.h52 unsigned short maxRetransmitTime() const;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddatachannelinterface.h47 maxRetransmitTime(-1),
55 int maxRetransmitTime; // The max period of time in milliseconds in which member in struct:webrtc::DataChannelInit
H A Ddatachannel.cc71 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;
H A Dmediastreamsignaling.cc968 config->maxRetransmitTime = -1;
976 config->maxRetransmitTime = reliability_param;
997 } else if (config.maxRetransmitTime > -1) {
999 reliability_param = config.maxRetransmitTime;
1007 } else if (config.maxRetransmitTime > -1) {
1009 reliability_param = config.maxRetransmitTime;
H A Dpeerconnectioninterface_unittest.cc959 config.maxRetransmitTime = 0;
966 // maxRetransmitTime are set for SCTP data channels.
976 config.maxRetransmitTime = 0;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCDataChannel.idl34 readonly attribute unsigned short maxRetransmitTime;
H A DRTCDataChannel.h57 unsigned short maxRetransmitTime() const;
H A DRTCDataChannel.cpp88 unsigned short RTCDataChannel::maxRetransmitTime() const function in class:WebCore::RTCDataChannel
90 return m_handler->maxRetransmitTime();
H A DRTCPeerConnection.cpp458 if (options.get("maxRetransmitTime", value))
459 init.maxRetransmitTime = value;
/external/chromium_org/content/renderer/media/
H A Drtc_peer_connection_handler.cc593 config.maxRetransmitTime = init.maxRetransmitTime;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
H A Dpeerconnection_jni.cc409 init.maxRetransmitTime = GetIntField(jni, j_init, max_retransmit_time_id);

Completed in 226 milliseconds