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

  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.cc 65 ASSERT(peer_connection_.get() == NULL);
69 return peer_connection_.get() != NULL;
79 ASSERT(peer_connection_.get() == NULL);
96 return peer_connection_.get() != NULL;
102 peer_connection_->local_streams());
103 peer_connection_ = NULL;
106 peer_connection_->AddStream(streams->at(i));
107 peer_connection_->CreateOffer(this, NULL);
109 return peer_connection_.get() != NULL;
114 ASSERT(peer_connection_.get() == NULL)
    [all...]
conductor.h 118 rtc::scoped_refptr<webrtc::PeerConnectionInterface> peer_connection_; member in class:Conductor
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 98 peer_connection_ = peer_connection_factory_->CreatePeerConnection(
102 return peer_connection_.get() != NULL;
109 return peer_connection_->CreateDataChannel(label, &init);
157 peer_connection_->CreateOffer(this, constraints);
164 peer_connection_->CreateAnswer(this, constraints);
184 peer_connection_->SetLocalDescription(
196 peer_connection_->SetRemoteDescription(
205 EXPECT_TRUE(peer_connection_->AddIceCandidate(owned_candidate.get()));
221 return (peer_connection_->ice_connection_state() ==
223 (peer_connection_->ice_connection_state() =
    [all...]
peerconnectiontestwrapper.h 108 rtc::scoped_refptr<webrtc::PeerConnectionInterface> peer_connection_; member in class:PeerConnectionTestWrapper
  /external/webrtc/talk/app/webrtc/
peerconnection_unittest.cc 437 webrtc::PeerConnectionInterface* pc() { return peer_connection_.get(); }
509 EXPECT_TRUE(peer_connection_->CreateDtmfSender(nullptr) == nullptr);
512 EXPECT_TRUE(peer_connection_->CreateDtmfSender(non_localtrack) == nullptr);
516 peer_connection_->local_streams()->at(0)->GetAudioTracks()[0];
517 dtmf_sender = peer_connection_->CreateDtmfSender(localtrack);
541 ASSERT_TRUE(peer_connection_->remote_description() != nullptr);
542 ASSERT_TRUE(peer_connection_->local_description() != nullptr);
544 peer_connection_->remote_description()->description();
546 peer_connection_->local_description()->description();
564 ASSERT_TRUE(peer_connection_->local_description() != nullptr)
886 rtc::scoped_refptr<webrtc::PeerConnectionInterface> peer_connection_; member in class:PeerConnectionTestClient
    [all...]

Completed in 139 milliseconds