Lines Matching refs:SrtpSession
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()
157 bool SrtpSession::UnprotectRtcp(void* p, int in_len, int* out_len) { in UnprotectRtcp()
175 bool SrtpSession::GetRtpAuthParams(uint8_t** key, int* key_len, int* tag_len) { in GetRtpAuthParams()
203 int SrtpSession::GetSrtpOverhead() const { in GetSrtpOverhead()
207 void SrtpSession::EnableExternalAuth() { in EnableExternalAuth()
212 bool SrtpSession::IsExternalAuthEnabled() const { in IsExternalAuthEnabled()
216 bool SrtpSession::IsExternalAuthActive() const { in IsExternalAuthActive()
220 bool SrtpSession::GetSendStreamPacketIndex(void* p, in GetSendStreamPacketIndex()
236 bool SrtpSession::DoSetKey(int type, in DoSetKey()
328 bool SrtpSession::SetKey(int type, in SetKey()
351 bool SrtpSession::UpdateKey(int type, in UpdateKey()
374 bool SrtpSession::IncrementLibsrtpUsageCountAndMaybeInit() { in IncrementLibsrtpUsageCountAndMaybeInit()
386 err = srtp_install_event_handler(&SrtpSession::HandleEventThunk); in IncrementLibsrtpUsageCountAndMaybeInit()
403 void SrtpSession::DecrementLibsrtpUsageCountAndMaybeDeinit() { in DecrementLibsrtpUsageCountAndMaybeDeinit()
415 void SrtpSession::HandleEvent(const srtp_event_data_t* ev) { in HandleEvent()
437 void SrtpSession::HandleEventThunk(srtp_event_data_t* ev) { in HandleEventThunk()
440 SrtpSession* session = in HandleEventThunk()
441 static_cast<SrtpSession*>(srtp_get_user_data(ev->session)); in HandleEventThunk()