HomeSort by relevance Sort by last modified time
    Searched defs:cryptos (Results 1 - 5 of 5) sorted by null

  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediasessionclient.h 200 const std::vector<CryptoParams>& cryptos() const { return cryptos_; } function in class:cricket::MediaContentDescription
mediasessionclient.cc 120 bool GetSupportedAudioCryptos(CryptoParamsVec* cryptos) {
122 return AddCryptoParams(CS_AES_CM_128_HMAC_SHA1_32, cryptos) &&
123 AddCryptoParams(CS_AES_CM_128_HMAC_SHA1_80, cryptos);
129 bool GetSupportedVideoCryptos(CryptoParamsVec* cryptos) {
131 return AddCryptoParams(CS_AES_CM_128_HMAC_SHA1_80, cryptos);
163 if (audio->cryptos().empty()) {
196 if (video->cryptos().empty()) {
241 const CryptoParamsVec& cryptos = offer->cryptos(); local
243 for (CryptoParamsVec::const_iterator i = cryptos.begin()
858 const CryptoParamsVec& cryptos = audio->cryptos(); local
888 const CryptoParamsVec& cryptos = video->cryptos(); local
954 const CryptoParamsVec& cryptos = audio->cryptos(); local
975 const CryptoParamsVec& cryptos = video->cryptos(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession.cc 101 void AddMediaCryptos(const CryptoParamsVec& cryptos,
103 for (CryptoParamsVec::const_iterator crypto = cryptos.begin();
104 crypto != cryptos.end(); ++crypto) {
111 CryptoParamsVec cryptos; local
114 if (!AddCryptoParams(*it, &cryptos)) {
118 AddMediaCryptos(cryptos, media);
127 return &media->cryptos();
130 bool FindMatchingCrypto(const CryptoParamsVec& cryptos,
133 for (CryptoParamsVec::const_iterator it = cryptos.begin();
134 it != cryptos.end(); ++it)
176 const CryptoParamsVec& cryptos = offer->cryptos(); local
614 CryptoParamsVec cryptos; local
    [all...]
mediasession.h 175 const std::vector<CryptoParams>& cryptos() const { return cryptos_; } function in class:cricket::MediaContentDescription
179 void set_cryptos(const std::vector<CryptoParams>& cryptos) {
180 cryptos_ = cryptos;
mediasessionclient.cc 786 buzz::XmlElement* CreateJingleEncryptionElem(const CryptoParamsVec& cryptos,
794 for (CryptoParamsVec::const_iterator i = cryptos.begin();
795 i != cryptos.end();
810 buzz::XmlElement* CreateGingleEncryptionElem(const CryptoParamsVec& cryptos,
814 CreateJingleEncryptionElem(cryptos, required);
841 const CryptoParamsVec& cryptos = audio->cryptos(); local
842 if (!cryptos.empty()) {
843 elem->AddElement(CreateGingleEncryptionElem(cryptos,
869 const CryptoParamsVec& cryptos = video->cryptos() local
987 const CryptoParamsVec& cryptos = audio->cryptos(); local
1014 const CryptoParamsVec& cryptos = video->cryptos(); local
1066 const CryptoParamsVec& cryptos = data->cryptos(); local
    [all...]

Completed in 462 milliseconds