OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RTCSessionDescription
(Results
1 - 25
of
37
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCSessionDescriptionCallback.h
38
class
RTCSessionDescription
;
43
virtual bool handleEvent(
RTCSessionDescription
*) = 0;
RTCSessionDescriptionCallback.idl
32
boolean handleEvent(
RTCSessionDescription
sdp);
RTCSessionDescription.h
45
class
RTCSessionDescription
: public RefCounted<
RTCSessionDescription
>, public ScriptWrappable {
47
static PassRefPtr<
RTCSessionDescription
> create(const Dictionary&, ExceptionState&);
48
static PassRefPtr<
RTCSessionDescription
> create(WebKit::WebRTCSessionDescription);
49
virtual ~
RTCSessionDescription
();
60
explicit
RTCSessionDescription
(WebKit::WebRTCSessionDescription);
RTCSessionDescription.cpp
33
#include "modules/mediastream/
RTCSessionDescription
.h"
47
PassRefPtr<
RTCSessionDescription
>
RTCSessionDescription
::create(const Dictionary& dictionary, ExceptionState& es)
63
return adoptRef(new
RTCSessionDescription
(WebKit::WebRTCSessionDescription(type, sdp)));
66
PassRefPtr<
RTCSessionDescription
>
RTCSessionDescription
::create(WebKit::WebRTCSessionDescription webSessionDescription)
68
return adoptRef(new
RTCSessionDescription
(webSessionDescription));
71
RTCSessionDescription
::
RTCSessionDescription
(WebKit::WebRTCSessionDescription webSessionDescription)
77
RTCSessionDescription
::~RTCSessionDescription(
[
all
...]
RTCSessionDescription.idl
34
] interface
RTCSessionDescription
{
RTCSessionDescriptionRequestImpl.cpp
37
#include "modules/mediastream/
RTCSessionDescription
.h"
64
RefPtr<
RTCSessionDescription
> sessionDescription =
RTCSessionDescription
::create(webSessionDescription);
RTCPeerConnection.idl
42
[RaisesException] void setLocalDescription(
RTCSessionDescription
description, [Default=Undefined] optional VoidCallback successCallback, [Default=Undefined] optional RTCErrorCallback failureCallback);
43
[GetterRaisesException] readonly attribute
RTCSessionDescription
localDescription;
45
[RaisesException] void setRemoteDescription(
RTCSessionDescription
description, [Default=Undefined] optional VoidCallback successCallback, [Default=Undefined] optional RTCErrorCallback failureCallback);
46
[GetterRaisesException] readonly attribute
RTCSessionDescription
remoteDescription;
RTCPeerConnection.h
54
class
RTCSessionDescription
;
68
void setLocalDescription(PassRefPtr<
RTCSessionDescription
>, PassRefPtr<VoidCallback>, PassRefPtr<RTCErrorCallback>, ExceptionState&);
69
PassRefPtr<
RTCSessionDescription
> localDescription(ExceptionState&);
71
void setRemoteDescription(PassRefPtr<
RTCSessionDescription
>, PassRefPtr<VoidCallback>, PassRefPtr<RTCErrorCallback>, ExceptionState&);
72
PassRefPtr<
RTCSessionDescription
> remoteDescription(ExceptionState&);
RTCPeerConnection.cpp
55
#include "modules/mediastream/
RTCSessionDescription
.h"
210
void RTCPeerConnection::setLocalDescription(PassRefPtr<
RTCSessionDescription
> prpSessionDescription, PassRefPtr<VoidCallback> successCallback, PassRefPtr<RTCErrorCallback> errorCallback, ExceptionState& es)
217
RefPtr<
RTCSessionDescription
> sessionDescription = prpSessionDescription;
227
PassRefPtr<
RTCSessionDescription
> RTCPeerConnection::localDescription(ExceptionState& es)
233
RefPtr<
RTCSessionDescription
> sessionDescription =
RTCSessionDescription
::create(webSessionDescription);
237
void RTCPeerConnection::setRemoteDescription(PassRefPtr<
RTCSessionDescription
> prpSessionDescription, PassRefPtr<VoidCallback> successCallback, PassRefPtr<RTCErrorCallback> errorCallback, ExceptionState& es)
244
RefPtr<
RTCSessionDescription
> sessionDescription = prpSessionDescription;
254
PassRefPtr<
RTCSessionDescription
> RTCPeerConnection::remoteDescription(ExceptionState& es)
260
RefPtr<
RTCSessionDescription
> desc = RTCSessionDescription::create(webSessionDescription)
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCSessionDescriptonDelegate.h
31
@class
RTCSessionDescription
;
42
didCreateSessionDescription:(
RTCSessionDescription
*)sdp
RTCPeerConnection.h
34
@class
RTCSessionDescription
;
48
@property(nonatomic, assign, readonly)
RTCSessionDescription
*localDescription;
51
@property(nonatomic, assign, readonly)
RTCSessionDescription
*remoteDescription;
83
sessionDescription:(
RTCSessionDescription
*)sdp;
89
sessionDescription:(
RTCSessionDescription
*)sdp;
RTCSessionDescription.h
31
//
RTCSessionDescription
is an ObjectiveC wrapper for
33
@interface
RTCSessionDescription
: NSObject
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCSessionDescription+Internal.h
28
#import "
RTCSessionDescription
.h"
33
@interface
RTCSessionDescription
(Internal)
RTCSessionDescription.mm
32
#import "
RTCSessionDescription
+internal.h"
34
@implementation
RTCSessionDescription
{
53
@implementation
RTCSessionDescription
(Internal)
RTCPeerConnection.mm
39
#import "
RTCSessionDescription
+internal.h"
41
#import "
RTCSessionDescription
.h"
60
RTCSessionDescription
*session =
61
[[
RTCSessionDescription
alloc] initWithSessionDescription:desc];
159
sessionDescription:(
RTCSessionDescription
*)sdp {
168
sessionDescription:(
RTCSessionDescription
*)sdp {
184
- (
RTCSessionDescription
*)localDescription {
188
[[
RTCSessionDescription
alloc] initWithSessionDescription:sdi] :
196
- (
RTCSessionDescription
*)remoteDescription {
200
[[
RTCSessionDescription
alloc] initWithSessionDescription:sdi]
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
RTCSessionDescriptionSyncObserver.h
32
@class
RTCSessionDescription
;
42
@property(atomic, strong)
RTCSessionDescription
*sessionDescription;
RTCPeerConnectionTest.mm
36
#import "
RTCSessionDescription
.h"
50
+ (BOOL)isSession:(
RTCSessionDescription
*)session1
51
ofSameTypeAsSession:(
RTCSessionDescription
*)session2;
68
+ (BOOL)isSession:(
RTCSessionDescription
*)session1
69
ofSameTypeAsSession:(
RTCSessionDescription
*)session2 {
140
RTCSessionDescription
*offerSDP = sdpObserver.sessionDescription;
165
RTCSessionDescription
*answerSDP = sdpObserver.sessionDescription;
RTCSessionDescriptionSyncObserver.m
34
#import "
RTCSessionDescription
.h"
70
didCreateSessionDescription:(
RTCSessionDescription
*)sdp
/external/chromium_org/third_party/libjingle/source/talk/examples/ios/AppRTCDemo/
APPRTCAppDelegate.m
39
#import "
RTCSessionDescription
.h"
261
RTCSessionDescription
*sdp =
262
[[
RTCSessionDescription
alloc] initWithType:value sdp:sdpString];
287
didCreateSessionDescription:(
RTCSessionDescription
*)sdp
/external/chromium_org/third_party/WebKit/Source/modules/
modules.target.darwin-arm.mk
138
third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription
.cpp \
modules.target.darwin-mips.mk
138
third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription
.cpp \
modules.target.darwin-x86.mk
138
third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription
.cpp \
modules.target.linux-arm.mk
138
third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription
.cpp \
modules.target.linux-mips.mk
138
third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription
.cpp \
modules.target.linux-x86.mk
138
third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription
.cpp \
Completed in 851 milliseconds
1
2