Lines Matching refs:ClientCache
30 ANDROID_SINGLETON_STATIC_INSTANCE(ClientCache);
32 ClientCache::ClientCache() : mDeathRecipient(new CacheDeathRecipient) {} in ClientCache() function in android::ClientCache
34 bool ClientCache::getBuffer(const client_cache_t& cacheId, in getBuffer()
60 bool ClientCache::add(const client_cache_t& cacheId, const sp<GraphicBuffer>& buffer) { in add()
114 void ClientCache::erase(const client_cache_t& cacheId) { in erase()
140 std::shared_ptr<renderengine::ExternalTexture> ClientCache::get(const client_cache_t& cacheId) { in get()
152 bool ClientCache::registerErasedRecipient(const client_cache_t& cacheId, in registerErasedRecipient()
165 void ClientCache::unregisterErasedRecipient(const client_cache_t& cacheId, in unregisterErasedRecipient()
178 void ClientCache::removeProcess(const wp<IBinder>& processToken) { in removeProcess()
209 void ClientCache::CacheDeathRecipient::binderDied(const wp<IBinder>& who) { in binderDied()
210 ClientCache::getInstance().removeProcess(who); in binderDied()
213 void ClientCache::dump(std::string& result) { in dump()