Searched refs:onDestroyNotify (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/codec2/vndk/ |
D | C2Buffer.cpp | 1680 c2_status_t registerOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in registerOnDestroyNotify() argument 1683 [onDestroyNotify, arg] (const auto &pair) { in registerOnDestroyNotify() 1684 return pair.first == onDestroyNotify && pair.second == arg; in registerOnDestroyNotify() 1689 mNotify.emplace_back(onDestroyNotify, arg); in registerOnDestroyNotify() 1693 c2_status_t unregisterOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in unregisterOnDestroyNotify() argument 1696 [onDestroyNotify, arg] (const auto &pair) { in unregisterOnDestroyNotify() 1697 return pair.first == onDestroyNotify && pair.second == arg; in unregisterOnDestroyNotify() 1758 c2_status_t C2Buffer::registerOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in registerOnDestroyNotify() argument 1759 return mImpl->registerOnDestroyNotify(onDestroyNotify, arg); in registerOnDestroyNotify() 1762 c2_status_t C2Buffer::unregisterOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in unregisterOnDestroyNotify() argument [all …]
|
/frameworks/av/media/codec2/core/include/ |
D | C2Buffer.h | 2196 c2_status_t registerOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg = nullptr); 2208 c2_status_t unregisterOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg = nullptr);
|