Lines Matching refs:onDestroyNotify
1681 c2_status_t registerOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in registerOnDestroyNotify() argument
1684 [onDestroyNotify, arg] (const auto &pair) { in registerOnDestroyNotify()
1685 return pair.first == onDestroyNotify && pair.second == arg; in registerOnDestroyNotify()
1690 mNotify.emplace_back(onDestroyNotify, arg); in registerOnDestroyNotify()
1694 c2_status_t unregisterOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in unregisterOnDestroyNotify() argument
1697 [onDestroyNotify, arg] (const auto &pair) { in unregisterOnDestroyNotify()
1698 return pair.first == onDestroyNotify && pair.second == arg; in unregisterOnDestroyNotify()
1759 c2_status_t C2Buffer::registerOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in registerOnDestroyNotify() argument
1760 return mImpl->registerOnDestroyNotify(onDestroyNotify, arg); in registerOnDestroyNotify()
1763 c2_status_t C2Buffer::unregisterOnDestroyNotify(OnDestroyNotify onDestroyNotify, void *arg) { in unregisterOnDestroyNotify() argument
1764 return mImpl->unregisterOnDestroyNotify(onDestroyNotify, arg); in unregisterOnDestroyNotify()