Home
last modified time | relevance | path

Searched refs:dstType (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/drm/libmediadrm/
DMediaCasDefs.cpp62 status_t err = parcel->readInt32((int32_t*)&dstType); in readFromParcel()
66 if (dstType != kDestinationTypeNativeHandle in readFromParcel()
67 && dstType != kDestinationTypeVmPointer) { in readFromParcel()
111 if (dstType == kDestinationTypeNativeHandle) { in readFromParcel()
127 if (dstType != kDestinationTypeNativeHandle in writeToParcel()
128 && dstType != kDestinationTypeVmPointer) { in writeToParcel()
132 status_t err = parcel->writeInt32((int32_t)dstType); in writeToParcel()
168 if (dstType == kDestinationTypeNativeHandle) { in writeToParcel()
DDescramblerImpl.cpp82 info.dstType != DescrambleInfo::kDestinationTypeVmPointer, in descramble()
88 info.dstType == DescrambleInfo::kDestinationTypeVmPointer ? in descramble()
/frameworks/av/media/libmedia/include/media/
Dconvert.h53 template <typename srcType, typename dstType>
54 static inline bool convertTo(const srcType &input, dstType &result);
160 template <typename srcType, typename dstType>
163 template <typename dstType>
164 class Converter<std::string, dstType>
167 static inline bool run(const std::string &str, dstType &result)
169 return fromString<dstType>(str, result);
213 template <typename srcType, typename dstType>
214 static inline bool convertTo(const srcType &input, dstType &result)
216 return details::Converter<srcType, dstType>::run(input, result);
/frameworks/av/include/media/
Dconvert.h53 template <typename srcType, typename dstType>
54 static inline bool convertTo(const srcType &input, dstType &result);
160 template <typename srcType, typename dstType>
163 template <typename dstType>
164 class Converter<std::string, dstType>
167 static inline bool run(const std::string &str, dstType &result)
169 return fromString<dstType>(str, result);
213 template <typename srcType, typename dstType>
214 static inline bool convertTo(const srcType &input, dstType &result)
216 return details::Converter<srcType, dstType>::run(input, result);
DMediaCasDefs.h73 DestinationType dstType; variable
/frameworks/base/media/jni/
Dandroid_media_MediaDescrambler.cpp149 info.dstType = DescrambleInfo::kDestinationTypeVmPointer; in descramble()
/frameworks/av/media/libstagefright/
DACodecBufferChannel.cpp143 descrambleInfo.dstType = destination.mType == in queueSecureInputBuffer()
/frameworks/av/media/libstagefright/mpeg2ts/
DATSParser.cpp1372 info.dstType = DescrambleInfo::kDestinationTypeVmPointer; in flushScrambled()