Lines Matching refs:pc1
34 function onPeerConnectionCreated(pc1, pc2) { argument
36 pc1.addEventListener('addstream', test.fail);
38 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2));
39 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1));
45 pc1.addStream(stream);
48 createOfferAndAnswer(pc1, pc2);
69 function createOfferAndAnswer(pc1, pc2) { argument
71 pc1.createOffer(gotOffer, test.fail);
75 pc1.setLocalDescription(offer, onSetSessionDescriptionSuccess, test.fail);
86 pc1.setRemoteDescription(answer, onSetSessionDescriptionSuccess,
101 report.collectStatsFromPeerConnection("bot1", pc1);