Home
last modified time | relevance | path

Searched refs:maxRetransmits (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dsctputils_unittest.cc50 EXPECT_EQ(config.maxRetransmits > -1 ? in VerifyOpenMessageFormat()
54 EXPECT_EQ(config.maxRetransmits > -1 ? in VerifyOpenMessageFormat()
62 if (config.maxRetransmits > -1 || config.maxRetransmitTime > -1) { in VerifyOpenMessageFormat()
63 EXPECT_EQ(config.maxRetransmits > -1 ? in VerifyOpenMessageFormat()
64 config.maxRetransmits : config.maxRetransmitTime, in VerifyOpenMessageFormat()
101 EXPECT_EQ(config.maxRetransmits, output_config.maxRetransmits); in TEST_F()
125 EXPECT_EQ(-1, output_config.maxRetransmits); in TEST_F()
131 config.maxRetransmits = 10; in TEST_F()
147 EXPECT_EQ(config.maxRetransmits, output_config.maxRetransmits); in TEST_F()
Dsctputils.cc125 config->maxRetransmits = -1; in ParseDataChannelOpenMessage()
130 config->maxRetransmits = reliability_param; in ParseDataChannelOpenMessage()
164 if (config.maxRetransmits > -1) { in WriteDataChannelOpenMessage()
166 reliability_param = config.maxRetransmits; in WriteDataChannelOpenMessage()
174 if (config.maxRetransmits > -1) { in WriteDataChannelOpenMessage()
176 reliability_param = config.maxRetransmits; in WriteDataChannelOpenMessage()
Ddatachannelinterface.h49 maxRetransmits(-1), in DataChannelInit()
59 int maxRetransmits; // The max number of retransmissions. -1 if unset. member
139 virtual uint16_t maxRetransmits() const { return 0; } in maxRetransmits() function
Ddatachannel.h143 virtual uint16_t maxRetransmits() const { return config_.maxRetransmits; } in maxRetransmits() function
287 PROXY_CONSTMETHOD0(uint16_t, maxRetransmits)
Ddatachannel.cc162 config.maxRetransmits != -1 || in Init()
171 config.maxRetransmits < -1 || in Init()
177 if (config.maxRetransmits != -1 && config.maxRetransmitTime != -1) { in Init()
228 return config_.maxRetransmits == -1 && in reliable()
556 send_params.max_rtx_count = config_.maxRetransmits; in SendDataMessage()
Dpeerconnectioninterface_unittest.cc1458 config.maxRetransmits = 0; in TEST_F()
1464 config.maxRetransmits = -1; in TEST_F()
1482 config.maxRetransmits = 0; in TEST_F()
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DDataChannel.java40 public int maxRetransmits = -1; field in DataChannel.Init
50 boolean ordered, int maxRetransmitTimeMs, int maxRetransmits, in Init() argument
54 this.maxRetransmits = maxRetransmits; in Init()
/external/webrtc/talk/app/webrtc/objc/
DRTCDataChannel.mm105 - (NSInteger)maxRetransmits { method
106 return _dataChannelInit.maxRetransmits;
109 - (void)setMaxRetransmits:(NSInteger)maxRetransmits {
110 _dataChannelInit.maxRetransmits = maxRetransmits;
215 - (NSUInteger)maxRetransmits { method
216 return _dataChannel->maxRetransmits();
/external/webrtc/talk/app/webrtc/objc/public/
DRTCDataChannel.h39 @property(nonatomic) NSInteger maxRetransmits;
101 @property(nonatomic, readonly) NSUInteger maxRetransmits;
/external/webrtc/talk/app/webrtc/java/jni/
Dpeerconnection_jni.cc172 init.maxRetransmits = GetIntField(jni, j_init, max_retransmits_id); in JavaDataChannelInitToNative()