Home
last modified time | relevance | path

Searched refs:ice_restart (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dwebrtcsessiondescriptionfactory.cc395 !request.options.audio_transport_options.ice_restart && in InternalCreateOffer()
396 !request.options.video_transport_options.ice_restart && in InternalCreateOffer()
397 !request.options.data_transport_options.ice_restart) { in InternalCreateOffer()
410 request.options.audio_transport_options.ice_restart = in InternalCreateAnswer()
412 request.options.video_transport_options.ice_restart = in InternalCreateAnswer()
414 request.options.data_transport_options.ice_restart = in InternalCreateAnswer()
457 !request.options.audio_transport_options.ice_restart && in InternalCreateAnswer()
458 !request.options.video_transport_options.ice_restart && in InternalCreateAnswer()
459 !request.options.data_transport_options.ice_restart) { in InternalCreateAnswer()
Dpeerconnectioninterface.h285 bool ice_restart; member
292 ice_restart(false), in RTCOfferAnswerOptions()
298 bool ice_restart, in RTCOfferAnswerOptions()
303 ice_restart(ice_restart), in RTCOfferAnswerOptions()
Dpeerconnection.cc464 session_options->audio_transport_options.ice_restart = in ConvertRtcOptionsForOffer()
465 rtc_options.ice_restart; in ConvertRtcOptionsForOffer()
466 session_options->video_transport_options.ice_restart = in ConvertRtcOptionsForOffer()
467 rtc_options.ice_restart; in ConvertRtcOptionsForOffer()
468 session_options->data_transport_options.ice_restart = rtc_options.ice_restart; in ConvertRtcOptionsForOffer()
514 session_options->audio_transport_options.ice_restart = value; in ParseConstraintsForAnswer()
515 session_options->video_transport_options.ice_restart = value; in ParseConstraintsForAnswer()
516 session_options->data_transport_options.ice_restart = value; in ParseConstraintsForAnswer()
519 session_options->audio_transport_options.ice_restart = false; in ParseConstraintsForAnswer()
520 session_options->video_transport_options.ice_restart = false; in ParseConstraintsForAnswer()
[all …]
Dpeerconnectioninterface_unittest.cc2326 EXPECT_FALSE(options.audio_transport_options.ice_restart); in TEST()
2327 EXPECT_FALSE(options.video_transport_options.ice_restart); in TEST()
2328 EXPECT_FALSE(options.data_transport_options.ice_restart); in TEST()
2366 rtc_options.ice_restart = true; in TEST()
2370 EXPECT_TRUE(options.audio_transport_options.ice_restart); in TEST()
2371 EXPECT_TRUE(options.video_transport_options.ice_restart); in TEST()
2372 EXPECT_TRUE(options.data_transport_options.ice_restart); in TEST()
2376 EXPECT_FALSE(options.audio_transport_options.ice_restart); in TEST()
2377 EXPECT_FALSE(options.video_transport_options.ice_restart); in TEST()
2378 EXPECT_FALSE(options.data_transport_options.ice_restart); in TEST()
Dwebrtcsession_unittest.cc3689 options.audio_transport_options.ice_restart = true; in TEST_F()
3690 options.video_transport_options.ice_restart = true; in TEST_F()
3691 options.data_transport_options.ice_restart = true; in TEST_F()
3722 options.audio_transport_options.ice_restart = false; in TEST_F()
3723 options.video_transport_options.ice_restart = false; in TEST_F()
3724 options.data_transport_options.ice_restart = false; in TEST_F()
Dwebrtcsession.cc888 bool ice_restart = in SetRemoteDescription() local
897 if (!ice_restart) { in SetRemoteDescription()
/external/webrtc/webrtc/p2p/base/
Dtransportdescriptionfactory.h24 TransportOptions() : ice_restart(false), prefer_passive_role(false) {} in TransportOptions()
25 bool ice_restart; member
Dtransportdescriptionfactory.cc31 if (!current_description || options.ice_restart) { in CreateOffer()
65 if (!current_description || options.ice_restart) { in CreateAnswer()
Dtransportdescriptionfactory_unittest.cc81 options.ice_restart = true; in TestIceRestart()