OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PeerConnection
(Results
1 - 15
of
15
) sorted by null
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnectionFactory.java
35
* the
PeerConnection
API for clients.
93
public
PeerConnection
createPeerConnection(
94
PeerConnection
.RTCConfiguration rtcConfig,
96
PeerConnection
.Observer observer) {
106
return new
PeerConnection
(nativePeerConnection, nativeObserver);
109
public
PeerConnection
createPeerConnection(
110
List<
PeerConnection
.IceServer> iceServers,
112
PeerConnection
.Observer observer) {
113
PeerConnection
.RTCConfiguration rtcConfig =
114
new
PeerConnection
.RTCConfiguration(iceServers)
[
all
...]
PeerConnection.java
36
* Java-land version of the
PeerConnection
APIs; wraps the C++ API
41
public class
PeerConnection
{
178
PeerConnection
(long nativePeerConnection, long nativeObserver) {
/external/webrtc/talk/app/webrtc/
peerconnection.cc
28
#include "talk/app/webrtc/
peerconnection
.h"
331
// Check if we can send |new_stream| on a
PeerConnection
.
564
PeerConnection
::
PeerConnection
(PeerConnectionFactory* factory)
575
PeerConnection
::~
PeerConnection
() {
576
TRACE_EVENT0("webrtc", "
PeerConnection
::~
PeerConnection
");
588
bool
PeerConnection
::Initialize(
594
TRACE_EVENT0("webrtc", "
PeerConnection
::Initialize")
[
all
...]
statscollector.h
29
// libjingle
PeerConnection
.
45
class
PeerConnection
;
63
explicit StatsCollector(
PeerConnection
* pc);
156
PeerConnection
* const pc_;
peerconnectionproxy.h
37
BEGIN_PROXY_MAP(
PeerConnection
)
peerconnection.h
65
//
PeerConnection
implements the PeerConnectionInterface interface.
66
// It uses WebRtcSession to implement the
PeerConnection
functionality.
67
class
PeerConnection
: public PeerConnectionInterface,
72
explicit
PeerConnection
(PeerConnectionFactory* factory);
143
~
PeerConnection
() override;
344
//
PeerConnection
is running. It is passed to
PeerConnection
as a raw pointer.
385
// The session_ scoped_ptr is declared at the bottom of
PeerConnection
387
// which will trigger some final actions in
PeerConnection
...
peerconnectionfactory.cc
37
#include "talk/app/webrtc/
peerconnection
.h"
271
rtc::scoped_refptr<
PeerConnection
> pc(
272
new rtc::RefCountedObject<
PeerConnection
>(this));
statscollector_unittest.cc
34
#include "talk/app/webrtc/
peerconnection
.h"
106
// The factory isn't really used; it just satisfies the base
PeerConnection
.
111
: public rtc::RefCountedObject<webrtc::
PeerConnection
> {
114
: rtc::RefCountedObject<webrtc::
PeerConnection
>(
491
explicit StatsCollectorForTest(
PeerConnection
* pc)
[
all
...]
statscollector.cc
33
#include "talk/app/webrtc/
peerconnection
.h"
368
StatsCollector::StatsCollector(
PeerConnection
* pc)
[
all
...]
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
RoomParametersFetcher.java
23
import org.webrtc.
PeerConnection
;
135
LinkedList<
PeerConnection
.IceServer> iceServers =
138
for (
PeerConnection
.IceServer server : iceServers) {
147
LinkedList<
PeerConnection
.IceServer> turnServers =
149
for (
PeerConnection
.IceServer turnServer : turnServers) {
170
private LinkedList<
PeerConnection
.IceServer> requestTurnServers(String url)
172
LinkedList<
PeerConnection
.IceServer> turnServers =
173
new LinkedList<
PeerConnection
.IceServer>();
193
turnServers.add(new
PeerConnection
.IceServer(uri, username, password));
200
private LinkedList<
PeerConnection
.IceServer> iceServersFromPCConfigJSON
[
all
...]
AppRTCClient.java
14
import org.webrtc.
PeerConnection
;
70
public final List<
PeerConnection
.IceServer> iceServers;
79
List<
PeerConnection
.IceServer> iceServers,
PeerConnectionClient.java
29
import org.webrtc.
PeerConnection
;
30
import org.webrtc.
PeerConnection
.IceConnectionState;
95
private
PeerConnection
peerConnection
;
239
peerConnection
= null;
435
Log.e(TAG, "
Peerconnection
factory is not created");
451
PeerConnection
.RTCConfiguration rtcConfig =
452
new
PeerConnection
.RTCConfiguration(signalingParameters.iceServers);
455
rtcConfig.tcpCandidatePolicy =
PeerConnection
.TcpCandidatePolicy.DISABLED;
456
rtcConfig.bundlePolicy =
PeerConnection
.BundlePolicy.MAXBUNDLE
[
all
...]
/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
PeerConnectionTest.java
30
import org.webrtc.
PeerConnection
.IceConnectionState;
31
import org.webrtc.
PeerConnection
.IceGatheringState;
32
import org.webrtc.
PeerConnection
.SignalingState;
49
/** End-to-end tests for
PeerConnection
.java. */
56
private static class ObserverExpectations implements
PeerConnection
.Observer,
472
//
PeerConnection
, not by test code.
474
PeerConnectionFactory factory,
PeerConnection
pc,
538
LinkedList<
PeerConnection
.IceServer> iceServers =
539
new LinkedList<
PeerConnection
.IceServer>();
540
iceServers.add(new
PeerConnection
.IceServer
[
all
...]
/cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorProcessTest.java
45
private
PeerConnection
redConn;
46
private
PeerConnection
blueConn;
50
public static class
PeerConnection
extends AbstractFuture<IParcelFileDescriptorPeer>
96
redConn = new
PeerConnection
();
97
blueConn = new
PeerConnection
();
/external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
PeerConnectionClientTest.java
26
import org.webrtc.
PeerConnection
;
165
Log.d(TAG, "
PeerConnection
closed");
229
List<
PeerConnection
.IceServer> iceServers =
230
new LinkedList<
PeerConnection
.IceServer>();
303
assertTrue("
PeerConnection
close event was not received.",
Completed in 203 milliseconds