HomeSort by relevance Sort by last modified time
    Searched refs:ProtectRtp (Results 1 - 4 of 4) sorted by null

  /external/webrtc/talk/session/media/
srtpfilter.h 122 bool ProtectRtp(void* data, int in_len, int max_len, int* out_len);
124 bool ProtectRtp(void* data,
210 bool ProtectRtp(void* data, int in_len, int max_len, int* out_len);
212 bool ProtectRtp(void* data,
srtpfilter_unittest.cc 107 EXPECT_TRUE(f1_.ProtectRtp(rtp_packet, rtp_len,
115 EXPECT_TRUE(f2_.ProtectRtp(rtp_packet, rtp_len,
584 EXPECT_TRUE(s1_.ProtectRtp(rtp_packet_, rtp_len_,
664 EXPECT_TRUE(s1_.ProtectRtp(rtp_packet_, rtp_len_,
697 EXPECT_FALSE(s1_.ProtectRtp(rtp_packet_, rtp_len_,
715 EXPECT_TRUE(s1_.ProtectRtp(rtp_packet_, rtp_len_, sizeof(rtp_packet_),
721 EXPECT_TRUE(s1_.ProtectRtp(rtp_packet_, rtp_len_, sizeof(rtp_packet_),
727 EXPECT_FALSE(s1_.ProtectRtp(rtp_packet_, rtp_len_, sizeof(rtp_packet_),
732 EXPECT_TRUE(s1_.ProtectRtp(rtp_packet_, rtp_len_, sizeof(rtp_packet_),
738 EXPECT_FALSE(s1_.ProtectRtp(rtp_packet_, rtp_len_, sizeof(rtp_packet_)
    [all...]
srtpfilter.cc 214 bool SrtpFilter::ProtectRtp(void* p, int in_len, int max_len, int* out_len) {
216 LOG(LS_WARNING) << "Failed to ProtectRtp: SRTP not active";
220 return send_session_->ProtectRtp(p, in_len, max_len, out_len);
223 bool SrtpFilter::ProtectRtp(void* p,
229 LOG(LS_WARNING) << "Failed to ProtectRtp: SRTP not active";
233 return send_session_->ProtectRtp(p, in_len, max_len, out_len, index);
524 bool SrtpSession::ProtectRtp(void* p, int in_len, int max_len, int* out_len) {
555 bool SrtpSession::ProtectRtp(void* p,
560 if (!ProtectRtp(p, in_len, max_len, out_len)) {
827 bool SrtpSession::ProtectRtp(void* data, int in_len, int max_len
    [all...]
channel.cc 607 res = srtp_filter_.ProtectRtp(
612 res = srtp_filter_.ProtectRtp(
    [all...]

Completed in 448 milliseconds