Lines Matching refs:onDestroyNotify
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
1763 return mImpl->unregisterOnDestroyNotify(onDestroyNotify, arg); in unregisterOnDestroyNotify()