diff options
author | 2024-11-29 10:40:41 +0000 | |
---|---|---|
committer | 2024-12-03 17:46:33 +0000 | |
commit | 5e1b7e1b0a23a47ab76ed022284fd40b67ebe503 (patch) | |
tree | d3a7bb860c95427b32ea175c35ea235847925d94 /libs/binder/BackendUnifiedServiceManager.h | |
parent | dc207544897a30fe412ffcc0deab07dd974358d1 (diff) |
Remove static list in libbinder for caching
This adds a new flag to identify Lazy services.
This flag is set when addService is called from
LazyServiceRegistrar.
This flag is then used by libbinder in a client.
When getService is called, libbinder decides if
the binder should be cached or not using this flag.
Doc: go/libbinder-cache-v2
Flag: RELEASE_LIBBINDER_REMOVE_STATIC_LIST
Test: atest binderCacheUnitTest
Bug: 333854840
Change-Id: I5fff0140f635dddb4f5a6d618f4e9abace6feb54
Diffstat (limited to 'libs/binder/BackendUnifiedServiceManager.h')
-rw-r--r-- | libs/binder/BackendUnifiedServiceManager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/BackendUnifiedServiceManager.h b/libs/binder/BackendUnifiedServiceManager.h index b46bf194a1..6a0d06a079 100644 --- a/libs/binder/BackendUnifiedServiceManager.h +++ b/libs/binder/BackendUnifiedServiceManager.h @@ -159,7 +159,8 @@ private: binder::Status toBinderService(const ::std::string& name, const os::Service& in, os::Service* _out); binder::Status updateCache(const std::string& serviceName, const os::Service& service); - binder::Status updateCache(const std::string& serviceName, const sp<IBinder>& binder); + binder::Status updateCache(const std::string& serviceName, const sp<IBinder>& binder, + bool isLazyService); bool returnIfCached(const std::string& serviceName, os::Service* _out); }; |