Home
last modified time | relevance | path

Searched refs:mMappings (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/codec2/vndk/
DC2DmaBufAllocator.cpp164 std::list<Mapping> mMappings; member in android::C2DmaBufAllocation
174 if (!mMappings.empty()) { in map()
202 mMappings.push_back(map); in map()
208 if (mMappings.empty()) { in unmap()
212 for (auto it = mMappings.begin(); it != mMappings.end(); ++it) { in unmap()
225 (void)mMappings.erase(it); in unmap()
256 if (!mMappings.empty()) { in ~C2DmaBufAllocation()
258 for (const Mapping& map : mMappings) { in ~C2DmaBufAllocation()
DC2AllocatorIon.cpp183 if (!mMappings.empty()) { in map()
210 mMappings.push_back(map); in map()
216 if (mMappings.empty()) { in unmap()
220 for (auto it = mMappings.begin(); it != mMappings.end(); ++it) { in unmap()
233 (void)mMappings.erase(it); in unmap()
242 if (!mMappings.empty()) { in ~Impl()
244 for (const Mapping &map : mMappings) { in ~Impl()
322 std::list<Mapping> mMappings; member in android::C2AllocationIon::Impl
/frameworks/av/media/libmediaformatshaper/
DCodecProperties.cpp421 auto mapped = mMappings.find(kind + "-" + key); in getMapping()
422 if (mapped != mMappings.end()) { in getMapping()
436 for (const auto& [key, value] : mMappings) { in showMappings()
446 mMappings.insert({metaKey, value}); in setMapping()
452 int count = mMappings.size(); in getMappings()
466 for (const auto& [key, value] : mMappings) { in getMappings()
DCodecProperties.h141 std::map<std::string, std::string> mMappings /*GUARDED_BY(mMappingLock)*/ ; variable