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

  /external/chromium_org/media/filters/
pipeline_integration_test_base.h 24 class Decryptor;
57 bool Start(const base::FilePath& file_path, Decryptor* decryptor);
65 const base::FilePath& file_path, Decryptor* decryptor);
105 scoped_ptr<Demuxer> demuxer, Decryptor* decryptor);
106 void SetDecryptor(Decryptor* decryptor,
pipeline_integration_test_base.cc 133 Decryptor* decryptor) {
139 CreateFilterCollection(file_path, decryptor),
208 Decryptor* decryptor) {
220 return CreateFilterCollection(demuxer.Pass(), decryptor);
226 Decryptor* decryptor) {
243 base::Unretained(this), decryptor),
265 decryptor),
    [all...]
decrypting_demuxer_stream.h 12 #include "media/base/decryptor.h"
25 // Decryptor-based DemuxerStream implementation that converts a potentially
62 void SetDecryptor(Decryptor* decryptor);
70 // Callback for Decryptor::Decrypt().
71 void DeliverBuffer(Decryptor::Status status,
81 // Returns Decryptor::StreamType converted from |stream_type_|.
82 Decryptor::StreamType GetDecryptorStreamType() const;
104 // Callback to request/cancel decryptor creation notification.
107 Decryptor* decryptor_
    [all...]
decrypting_video_decoder.h 10 #include "media/base/decryptor.h"
21 class Decryptor;
23 // Decryptor-based VideoDecoder implementation that can decrypt and decode
59 void SetDecryptor(Decryptor* decryptor);
61 // Callback for Decryptor::InitializeVideoDecoder() during initialization.
66 // Callback for Decryptor::DecryptAndDecodeVideo().
68 Decryptor::Status status,
93 // Callback to request/cancel decryptor creation notification.
96 Decryptor* decryptor_
    [all...]
decrypting_audio_decoder.h 14 #include "media/base/decryptor.h"
25 class Decryptor;
27 // Decryptor-based AudioDecoder implementation that can decrypt and decode
33 // We do not currently have a way to let the Decryptor choose the output
35 // Decryptor implementations to decode audio into a fixed integer sample
73 void SetDecryptor(Decryptor* decryptor);
75 // Callback for Decryptor::InitializeAudioDecoder() during initialization.
78 // Callback for Decryptor::InitializeAudioDecoder() during config change.
88 // Callback for Decryptor::DecryptAndDecodeAudio()
    [all...]
decrypting_demuxer_stream.cc 16 #include "media/base/decryptor.h"
131 void DecryptingDemuxerStream::SetDecryptor(Decryptor* decryptor) {
140 if (!decryptor) {
146 decryptor_ = decryptor;
213 Decryptor::Status status,
218 DCHECK_NE(status, Decryptor::kNeedMoreData);
232 DCHECK_EQ(status == Decryptor::kSuccess, decrypted_buffer.get() != NULL);
234 if (status == Decryptor::kError) {
242 if (status == Decryptor::kNoKey)
    [all...]
decrypting_video_decoder.cc 15 #include "media/base/decryptor.h"
58 decryptor_->DeinitializeDecoder(Decryptor::kVideo);
105 decryptor_->ResetDecoder(Decryptor::kVideo);
135 decryptor_->RegisterNewKeyCB(Decryptor::kVideo, Decryptor::NewKeyCB());
136 decryptor_->DeinitializeDecoder(Decryptor::kVideo);
156 void DecryptingVideoDecoder::SetDecryptor(Decryptor* decryptor) {
168 if (!decryptor) {
174 decryptor_ = decryptor;
    [all...]
pipeline_integration_test.cc 86 AesDecryptor* decryptor) = 0;
99 AesDecryptor* decryptor() { function in class:media::FakeEncryptedMedia
151 AesDecryptor* decryptor) OVERRIDE {
155 EXPECT_TRUE(decryptor->GenerateKeyRequest(type, kInitData,
171 decryptor->AddKey(kSecretKey, arraysize(kSecretKey),
197 AesDecryptor* decryptor) OVERRIDE {
351 encrypted_media->decryptor()),
431 encrypted_media.decryptor()));
decrypting_audio_decoder.cc 20 #include "media/base/decryptor.h"
125 decryptor_->ResetDecoder(Decryptor::kAudio);
166 void DecryptingAudioDecoder::SetDecryptor(Decryptor* decryptor) {
175 if (!decryptor) {
182 decryptor_ = decryptor;
221 Decryptor::kAudio, BindToCurrentLoop(base::Bind(
288 decryptor_->DeinitializeDecoder(Decryptor::kAudio);
339 Decryptor::Status status,
340 const Decryptor::AudioBuffers& frames)
    [all...]
  /external/chromium_org/content/renderer/media/crypto/
content_decryption_module_factory.cc 68 scoped_ptr<PpapiDecryptor> decryptor = local
76 if (!decryptor) {
82 return scoped_ptr<media::MediaKeys>(decryptor.Pass());
  /external/chromium/chrome/browser/importer/
firefox3_importer.cc 313 NSSDecryptor decryptor; local
314 if (!decryptor.Init(source_path_, source_path_) &&
315 !decryptor.Init(app_path_, source_path_)) {
324 decryptor.ReadAndParseSignons(file, &forms);
333 decryptor.ParseSignons(content, &forms);
firefox2_importer.cc 338 NSSDecryptor decryptor; local
339 if (!decryptor.Init(source_path_, source_path_) &&
340 !decryptor.Init(app_path_, source_path_)) {
354 decryptor.ParseSignons(content, &forms);
  /external/chromium_org/chrome/utility/importer/
firefox_importer.cc 340 NSSDecryptor decryptor; local
341 if (!decryptor.Init(source_path_, source_path_) &&
342 !decryptor.Init(app_path_, source_path_)) {
351 decryptor.ReadAndParseSignons(file, &forms);
360 decryptor.ParseSignons(content, &forms);
  /external/chromium_org/chromeos/network/onc/
onc_utils.cc 137 crypto::Encryptor decryptor; local
138 if (!decryptor.Init(key.get(), crypto::Encryptor::CBC, initial_vector)) {
144 if (!decryptor.Decrypt(ciphertext, &plaintext)) {
  /external/chromium_org/crypto/
encryptor_unittest.cc 96 crypto::Encryptor decryptor; local
97 EXPECT_TRUE(decryptor.Init(wrong_key.get(), crypto::Encryptor::CBC, iv));
98 EXPECT_FALSE(decryptor.Decrypt(ciphertext, &decypted));
  /external/chromium_org/media/
media.target.darwin-arm.mk 86 media/base/decryptor.cc \
media.target.darwin-mips.mk 86 media/base/decryptor.cc \
media.target.darwin-x86.mk 86 media/base/decryptor.cc \
media.target.linux-arm.mk 86 media/base/decryptor.cc \
media.target.linux-mips.mk 86 media/base/decryptor.cc \
media.target.linux-x86.mk 86 media/base/decryptor.cc \

Completed in 1603 milliseconds