Searched refs:SrtpSession (Results 1 – 5 of 5) sorted by relevance
/external/webrtc/pc/ |
D | srtp_session.cc | 29 SrtpSession::SrtpSession() {} in SrtpSession() function in cricket::SrtpSession 31 SrtpSession::~SrtpSession() { in ~SrtpSession() 41 bool SrtpSession::SetSend(int cs, in SetSend() 48 bool SrtpSession::UpdateSend(int cs, in UpdateSend() 55 bool SrtpSession::SetRecv(int cs, in SetRecv() 62 bool SrtpSession::UpdateRecv(int cs, in UpdateRecv() 69 bool SrtpSession::ProtectRtp(void* p, int in_len, int max_len, int* out_len) { in ProtectRtp() 97 bool SrtpSession::ProtectRtp(void* p, in ProtectRtp() 108 bool SrtpSession::ProtectRtcp(void* p, int in_len, int max_len, int* out_len) { in ProtectRtcp() 131 bool SrtpSession::UnprotectRtp(void* p, int in_len, int* out_len) { in UnprotectRtp() [all …]
|
D | srtp_session.h | 33 class SrtpSession { 35 SrtpSession(); 36 ~SrtpSession(); 133 RTC_DISALLOW_COPY_AND_ASSIGN(SrtpSession);
|
D | srtp_transport.h | 151 std::unique_ptr<cricket::SrtpSession> send_session_; 152 std::unique_ptr<cricket::SrtpSession> recv_session_; 153 std::unique_ptr<cricket::SrtpSession> send_rtcp_session_; 154 std::unique_ptr<cricket::SrtpSession> recv_rtcp_session_;
|
D | srtp_transport.cc | 333 send_rtcp_session_.reset(new cricket::SrtpSession()); in SetRtcpParams() 339 recv_rtcp_session_.reset(new cricket::SrtpSession()); in SetRtcpParams() 370 send_session_.reset(new cricket::SrtpSession()); in CreateSrtpSessions() 371 recv_session_.reset(new cricket::SrtpSession()); in CreateSrtpSessions()
|
D | srtp_session_unittest.cc | 72 cricket::SrtpSession s1_; 73 cricket::SrtpSession s2_;
|