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

/external/webrtc/webrtc/p2p/base/
H A Dtransportdescriptionfactory.h24 TransportOptions() : ice_restart(false), prefer_passive_role(false) {}
25 bool ice_restart; member in struct:cricket::TransportOptions
H A Dtransportdescriptionfactory.cc31 if (!current_description || options.ice_restart) {
65 if (!current_description || options.ice_restart) {
H A Dtransportdescriptionfactory_unittest.cc81 options.ice_restart = true;
88 // |options.ice_restart == true|
252 // if |TransportDescriptionOptions::ice_restart| is true.
258 // if |TransportDescriptionOptions::ice_restart| is true and DTLS is enabled.
/external/webrtc/talk/app/webrtc/
H A Dwebrtcsessiondescriptionfactory.cc395 !request.options.audio_transport_options.ice_restart &&
396 !request.options.video_transport_options.ice_restart &&
397 !request.options.data_transport_options.ice_restart) {
410 request.options.audio_transport_options.ice_restart =
412 request.options.video_transport_options.ice_restart =
414 request.options.data_transport_options.ice_restart =
457 !request.options.audio_transport_options.ice_restart &&
458 !request.options.video_transport_options.ice_restart &&
459 !request.options.data_transport_options.ice_restart) {
H A Dpeerconnectioninterface.h285 bool ice_restart; member in struct:webrtc::PeerConnectionInterface::RTCOfferAnswerOptions
292 ice_restart(false),
298 bool ice_restart,
303 ice_restart(ice_restart),
295 RTCOfferAnswerOptions(int offer_to_receive_video, int offer_to_receive_audio, bool voice_activity_detection, bool ice_restart, bool use_rtp_mux) argument
H A Dpeerconnection.cc464 session_options->audio_transport_options.ice_restart =
465 rtc_options.ice_restart;
466 session_options->video_transport_options.ice_restart =
467 rtc_options.ice_restart;
468 session_options->data_transport_options.ice_restart = rtc_options.ice_restart;
514 session_options->audio_transport_options.ice_restart = value;
515 session_options->video_transport_options.ice_restart = value;
516 session_options->data_transport_options.ice_restart = value;
519 session_options->audio_transport_options.ice_restart
[all...]
H A Dpeerconnectioninterface_unittest.cc2326 EXPECT_FALSE(options.audio_transport_options.ice_restart);
2327 EXPECT_FALSE(options.video_transport_options.ice_restart);
2328 EXPECT_FALSE(options.data_transport_options.ice_restart);
2363 // have |audio_transport_options.ice_restart| etc. set.
2366 rtc_options.ice_restart = true;
2370 EXPECT_TRUE(options.audio_transport_options.ice_restart);
2371 EXPECT_TRUE(options.video_transport_options.ice_restart);
2372 EXPECT_TRUE(options.data_transport_options.ice_restart);
2376 EXPECT_FALSE(options.audio_transport_options.ice_restart);
2377 EXPECT_FALSE(options.video_transport_options.ice_restart);
[all...]
H A Dwebrtcsession_unittest.cc3689 options.audio_transport_options.ice_restart = true;
3690 options.video_transport_options.ice_restart = true;
3691 options.data_transport_options.ice_restart = true;
3722 options.audio_transport_options.ice_restart = false;
3723 options.video_transport_options.ice_restart = false;
3724 options.data_transport_options.ice_restart = false;
H A Dwebrtcsession.cc888 bool ice_restart = local
897 if (!ice_restart) {

Completed in 113 milliseconds