OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UnprotectRtp
(Results
1 - 7
of
7
) sorted by null
/external/chromium/third_party/libjingle/source/talk/session/phone/
srtpfilter.h
76
bool
UnprotectRtp
(void* data, int in_len, int* out_len);
124
bool
UnprotectRtp
(void* data, int in_len, int* out_len);
srtpfilter.cc
139
bool SrtpFilter::
UnprotectRtp
(void* p, int in_len, int* out_len) {
141
LOG(LS_WARNING) << "Failed to
UnprotectRtp
: SRTP not active";
144
return recv_session_.
UnprotectRtp
(p, in_len, out_len);
315
bool SrtpSession::
UnprotectRtp
(void* p, int in_len, int* out_len) {
484
bool SrtpSession::
UnprotectRtp
(void* data, int in_len, int* out_len) {
channel.cc
344
res = srtp_filter_.
UnprotectRtp
(data, len, &len);
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
srtpfilter.h
128
bool
UnprotectRtp
(void* data, int in_len, int* out_len);
206
bool
UnprotectRtp
(void* data, int in_len, int* out_len);
srtpfilter.cc
223
bool SrtpFilter::
UnprotectRtp
(void* p, int in_len, int* out_len) {
225
LOG(LS_WARNING) << "Failed to
UnprotectRtp
: SRTP not active";
228
return recv_session_->
UnprotectRtp
(p, in_len, out_len);
522
bool SrtpSession::
UnprotectRtp
(void* p, int in_len, int* out_len) {
708
bool SrtpSession::
UnprotectRtp
(void* data, int in_len, int* out_len) {
srtpfilter_unittest.cc
106
EXPECT_TRUE(f2_.
UnprotectRtp
(rtp_packet, out_len, &out_len));
114
EXPECT_TRUE(f1_.
UnprotectRtp
(rtp_packet, out_len, &out_len));
551
EXPECT_TRUE(s2_.
UnprotectRtp
(rtp_packet_, rtp_len_, &out_len));
618
EXPECT_FALSE(s2_.
UnprotectRtp
(rtp_packet_, rtp_len_, &out_len));
627
EXPECT_FALSE(s2_.
UnprotectRtp
(rtp_packet_, rtp_len_, &out_len));
[
all
...]
channel.cc
802
res = srtp_filter_.
UnprotectRtp
(data, len, &len);
[
all
...]
Completed in 2786 milliseconds