OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IceGatheringState
(Results
1 - 25
of
26
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
RTCPeerConnectionHandlerClient.h
66
enum
IceGatheringState
{
77
virtual void didChangeIceGatheringState(
IceGatheringState
) = 0;
RTCPeerConnectionHandler.cpp
193
void RTCPeerConnectionHandler::didChangeICEGatheringState(blink::WebRTCPeerConnectionHandlerClient::
ICEGatheringState
state)
195
m_client->didChangeIceGatheringState(static_cast<RTCPeerConnectionHandlerClient::
IceGatheringState
>(state));
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPeerConnectionObserver.h
67
// Called any time the
ICEGatheringState
changes
69
PeerConnectionInterface::
IceGatheringState
new_state) OVERRIDE;
RTCEnumConverter.h
40
(webrtc::PeerConnectionInterface::
IceGatheringState
)nativeState;
RTCEnumConverter.mm
55
(webrtc::PeerConnectionInterface::
IceGatheringState
)nativeState {
RTCPeerConnectionObserver.mm
90
PeerConnectionInterface::
IceGatheringState
new_state) {
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java
45
/** Tracks PeerConnectionInterface::
IceGatheringState
*/
46
public enum
IceGatheringState
{ NEW, GATHERING, COMPLETE };
68
/** Triggered when the
IceGatheringState
changes. */
69
public void onIceGatheringChange(
IceGatheringState
newState);
172
public native
IceGatheringState
iceGatheringState
();
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.h
84
String
iceGatheringState
() const;
118
virtual void didChangeIceGatheringState(
IceGatheringState
) OVERRIDE;
143
void changeIceGatheringState(
IceGatheringState
);
147
IceGatheringState
m_iceGatheringState;
RTCPeerConnection.cpp
340
String RTCPeerConnection::
iceGatheringState
() const
560
void RTCPeerConnection::didChangeIceGatheringState(
IceGatheringState
newState)
660
void RTCPeerConnection::changeIceGatheringState(
IceGatheringState
iceGatheringState
)
662
m_iceGatheringState =
iceGatheringState
;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
peerconnection.h
85
virtual
IceGatheringState
ice_gathering_state();
144
virtual void OnIceGatheringChange(
IceGatheringState
new_state);
183
IceGatheringState
ice_gathering_state_;
peerconnectionproxy.h
66
PROXY_METHOD0(
IceGatheringState
, ice_gathering_state)
peerconnectioninterface.h
145
enum
IceGatheringState
{
240
virtual
IceGatheringState
ice_gathering_state() = 0;
286
// Called any time the
IceGatheringState
changes
288
PeerConnectionInterface::
IceGatheringState
new_state) {}
webrtcsession.h
83
// Called any time the
IceGatheringState
changes
85
PeerConnectionInterface::
IceGatheringState
new_state) {}
peerconnection.cc
479
PeerConnectionInterface::
IceGatheringState
745
PeerConnectionInterface::
IceGatheringState
new_state) {
peerconnectionfactory_unittest.cc
97
PeerConnectionInterface::
IceGatheringState
new_state) {}
peerconnection_unittest.cc
401
webrtc::PeerConnectionInterface::
IceGatheringState
ice_gathering_state() {
429
webrtc::PeerConnectionInterface::
IceGatheringState
new_state) {
[
all
...]
peerconnectioninterface_unittest.cc
178
PeerConnectionInterface::
IceGatheringState
new_state) {
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/javatests/src/org/webrtc/
PeerConnectionTest.java
34
import org.webrtc.PeerConnection.
IceGatheringState
;
70
private LinkedList<
IceGatheringState
> expectedIceGatheringChanges =
71
new LinkedList<
IceGatheringState
>();
179
IceGatheringState
newState) {
184
public synchronized void onIceGatheringChange(
IceGatheringState
newState) {
188
if (newState ==
IceGatheringState
.GATHERING) {
574
offeringExpectations.expectIceGatheringChange(
IceGatheringState
.COMPLETE);
575
answeringExpectations.expectIceGatheringChange(
IceGatheringState
.COMPLETE);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
peerconnectiontestwrapper.h
68
webrtc::PeerConnectionInterface::
IceGatheringState
new_state) {}
/external/chromium_org/content/renderer/media/
mock_peer_connection_impl.h
58
virtual
IceGatheringState
ice_gathering_state() OVERRIDE {
rtc_peer_connection_handler.h
153
webrtc::PeerConnectionInterface::
IceGatheringState
new_state) OVERRIDE;
rtc_peer_connection_handler.cc
44
blink::WebRTCPeerConnectionHandlerClient::
ICEGatheringState
46
webrtc::PeerConnectionInterface::
IceGatheringState
state) {
693
// Called any time the
IceGatheringState
changes
695
webrtc::PeerConnectionInterface::
IceGatheringState
new_state) {
703
blink::WebRTCPeerConnectionHandlerClient::
ICEGatheringState
state =
rtc_peer_connection_handler_unittest.cc
171
WebRTCPeerConnectionHandlerClient::
ICEGatheringState
state));
631
webrtc::PeerConnectionInterface::
IceGatheringState
new_state =
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCDemoActivity.java
387
PeerConnection.
IceGatheringState
newState) {
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
peerconnection_jni.cc
231
LoadClass(jni, "org/webrtc/PeerConnection$
IceGatheringState
");
549
PeerConnectionInterface::
IceGatheringState
new_state) OVERRIDE {
552
"(Lorg/webrtc/PeerConnection$
IceGatheringState
;)V");
554
jni(), "PeerConnection$
IceGatheringState
", new_state));
[
all
...]
Completed in 286 milliseconds
1
2