/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
D | CencSampleEncryptionInformationGroupEntry.java | 37 private int isEncrypted; field in CencSampleEncryptionInformationGroupEntry 43 isEncrypted = IsoTypeReader.readUInt24(byteBuffer); in parse() 53 IsoTypeWriter.writeUInt24(byteBuffer, isEncrypted); in get() 61 return isEncrypted; in getEncrypted() 65 isEncrypted = encrypted; in setEncrypted() 88 "isEncrypted=" + isEncrypted + in toString() 105 if (isEncrypted != that.isEncrypted) { in equals() 120 int result = isEncrypted; in hashCode()
|
/external/fonttools/Lib/fontTools/t1Lib/ |
D | __init__.py | 209 for isEncrypted, chunk in chunks: 210 if isEncrypted and isHex(chunk[:4]): 226 for isEncrypted, chunk in chunks: 227 if isEncrypted: 244 for isEncrypted, chunk in chunks: 245 if isEncrypted: 258 for isEncrypted, chunk in chunks: 259 if isEncrypted: 291 for isEncrypted, chunk in chunks: 292 if isEncrypted:
|
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/ |
D | TrackEncryptionBox.java | 35 public final boolean isEncrypted; field in TrackEncryptionBox 67 boolean isEncrypted, in TrackEncryptionBox() argument 75 this.isEncrypted = isEncrypted; in TrackEncryptionBox()
|
D | FragmentedMp4Extractor.java | 1693 return encryptionBox != null && encryptionBox.isEncrypted ? encryptionBox : null; in getEncryptionBoxIfEncrypted()
|
/external/webrtc/sdk/objc/api/peerconnection/ |
D | RTCRtpHeaderExtension.h | 27 @property(nonatomic, readonly, getter=isEncrypted) BOOL encrypted;
|
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/source/ |
D | SampleQueueTest.java | 1259 assertThat(inputBuffer.isEncrypted()).isFalse(); in assertReadEndOfStream() 1290 boolean isEncrypted = (ENCRYPTED_SAMPLES_FLAGS[sampleIndex] & C.BUFFER_FLAG_ENCRYPTED) != 0; in assertReadEncryptedSample() 1294 isEncrypted, in assertReadEncryptedSample() 1297 ENCRYPTED_SAMPLE_SIZES[sampleIndex] - (isEncrypted ? 2 : 0)); in assertReadEncryptedSample() 1314 boolean isEncrypted, in assertReadSample() argument 1333 assertThat(inputBuffer.isEncrypted()).isEqualTo(isEncrypted); in assertReadSample() 1364 assertThat(inputBuffer.isEncrypted()).isFalse(); in assertInputBufferHasNoDefaultFlagsSet()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zIn.h | 29 #define _7Z_DECODER_CRYPRO_VARS_DECL , ICryptoGetTextPassword *getTextPassword, bool &isEncrypted, … 30 #define _7Z_DECODER_CRYPRO_VARS , getTextPassword, isEncrypted, passwordIsDefined, password
|
D | 7zExtract.cpp | 351 bool isEncrypted = false; in Extract() local
|
D | 7zUpdate.cpp | 1486 bool isEncrypted = false; in Execute() local 1676 const bool isEncrypted = f.IsEncrypted(); in Update() local 1695 if (isEncrypted) in Update() 2124 bool isEncrypted = false; in Update() local
|
D | 7zDecode.cpp | 413 isEncrypted = true; in Decode()
|
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/decoder/ |
D | DecoderInputBuffer.java | 169 public final boolean isEncrypted() { in isEncrypted() method in DecoderInputBuffer
|
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/metadata/id3/ |
D | Id3Decoder.java | 323 boolean isEncrypted = false; in decodeFrame() 329 isEncrypted = (flags & FRAME_FLAG_V3_IS_ENCRYPTED) != 0; in decodeFrame() 336 isEncrypted = (flags & FRAME_FLAG_V4_IS_ENCRYPTED) != 0; in decodeFrame() 341 if (isCompressed || isEncrypted) { in decodeFrame()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | UpdateCallback.cpp | 643 bool isEncrypted = false; in ReportExtractResult() local 678 RINOK(Archive_GetItemBoolProp(Archive, index, kpidEncrypted, isEncrypted)); in ReportExtractResult() 689 return Callback->ReportExtractResult(opRes, BoolToInt(isEncrypted), s); in ReportExtractResult()
|
D | UpdateCallback.h | 42 virtual HRESULT ReportExtractResult(Int32 opRes, Int32 isEncrypted, const wchar_t *name) x; \
|
D | ArchiveExtractCallback.cpp | 1616 bool isEncrypted = false; in ReportExtractResult() local 1624 RINOK(Archive_GetItemBoolProp(_arc->Archive, index, kpidEncrypted, isEncrypted)); in ReportExtractResult() 1633 return _folderArchiveExtractCallback2->ReportExtractResult(opRes, isEncrypted, s); in ReportExtractResult()
|
/external/lzma/CPP/7zip/UI/Console/ |
D | UpdateCallbackConsole.cpp | 564 HRESULT CUpdateCallbackConsole::ReportExtractResult(Int32 opRes, Int32 isEncrypted, const wchar_t *… in ReportExtractResult() argument 578 SetExtractErrorMessage(opRes, isEncrypted, s); in ReportExtractResult()
|
/external/exoplayer/tree/extensions/vp9/src/main/java/com/google/android/exoplayer2/ext/vp9/ |
D | VpxDecoder.java | 135 final long result = inputBuffer.isEncrypted() in decode()
|
/external/exoplayer/tree/extensions/opus/src/main/java/com/google/android/exoplayer2/ext/opus/ |
D | OpusDecoder.java | 171 int result = inputBuffer.isEncrypted() in decode()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/ |
D | SampleDataQueue.java | 123 if (buffer.isEncrypted()) { in readToBuffer()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/audio/ |
D | DecoderAudioRenderer.java | 423 boolean bufferEncrypted = inputBuffer.isEncrypted(); in feedInputBuffer()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/video/ |
D | DecoderVideoRenderer.java | 737 boolean bufferEncrypted = inputBuffer.isEncrypted(); in feedInputBuffer()
|
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mkv/ |
D | MatroskaExtractor.java | 1343 boolean isEncrypted = (sampleSignalByte & 0x01) == 0x01; in writeSampleData() 1344 if (isEncrypted) { in writeSampleData()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/mediacodec/ |
D | MediaCodecRenderer.java | 1290 boolean bufferEncrypted = buffer.isEncrypted(); in feedInputBuffer()
|