/frameworks/native/libs/binder/ndk/ |
D | service_manager.cpp | 207 return sm->updatableViaApex(String16(instance)) != std::nullopt; in AServiceManager_isUpdatableViaApex() 216 std::optional<String16> updatableViaApex = sm->updatableViaApex(String16(instance)); in AServiceManager_getUpdatableApexName() local 217 if (updatableViaApex.has_value()) { in AServiceManager_getUpdatableApexName() 218 callback(String8(updatableViaApex.value()).c_str(), context); in AServiceManager_getUpdatableApexName()
|
/frameworks/native/libs/binder/ndk/tests/ |
D | libbinder_ndk_unit_test_host.cpp | 42 MOCK_METHOD1(updatableViaApex, std::optional<String16>(const String16&)); 56 EXPECT_CALL(*mockSM, updatableViaApex(_)).WillRepeatedly(Return(apexName)); in ExpectUpdatableViaApexReturns()
|
/frameworks/base/core/java/android/os/ |
D | ServiceManagerNative.java | 97 public String updatableViaApex(String name) throws RemoteException { in updatableViaApex() method in ServiceManagerProxy 98 return mServiceManager.updatableViaApex(name); in updatableViaApex()
|
/frameworks/native/cmds/servicemanager/ |
D | test_sm.cpp | 325 std::optional<std::string> updatableViaApex; in TEST() local 326 EXPECT_TRUE(sm->updatableViaApex("android.hardware.camera.provider.ICameraProvider/internal/0", in TEST() 327 &updatableViaApex) in TEST() 330 updatableViaApex); in TEST() 337 std::optional<std::string> updatableViaApex; in TEST() local 338 EXPECT_TRUE(sm->updatableViaApex("android.hardware.camera.provider.ICameraProvider", in TEST() 339 &updatableViaApex) in TEST() 341 EXPECT_EQ(std::nullopt, updatableViaApex); in TEST()
|
D | ServiceManager.cpp | 178 std::optional<std::string> updatableViaApex; in getVintfUpdatableApex() local 185 updatableViaApex = manifestInstance.updatableViaApex(); in getVintfUpdatableApex() 191 return updatableViaApex; in getVintfUpdatableApex() 197 std::optional<std::string> updatableViaApex; in getVintfUpdatableApex() local 205 updatableViaApex = manifestInstance.updatableViaApex(); in getVintfUpdatableApex() 211 return updatableViaApex; in getVintfUpdatableApex() 219 if (manifestInstance.updatableViaApex().has_value() && in getVintfUpdatableNames() 220 manifestInstance.updatableViaApex().value() == apexName) { in getVintfUpdatableNames() 641 Status ServiceManager::updatableViaApex(const std::string& name, in updatableViaApex() function in android::ServiceManager
|
D | ServiceManager.h | 50 binder::Status updatableViaApex(const std::string& name,
|
/frameworks/native/libs/binder/ |
D | IServiceManager.cpp | 89 std::optional<String16> updatableViaApex(const String16& name) override; 276 if (auto updatableViaApex = sm->updatableViaApex(name); updatableViaApex.has_value()) { in openDeclaredPassthroughHal() local 278 String8(*updatableViaApex).c_str(), flag); in openDeclaredPassthroughHal() 499 std::optional<String16> ServiceManagerShim::updatableViaApex(const String16& name) { in updatableViaApex() function in android::ServiceManagerShim 501 if (Status status = mTheRealServiceManager->updatableViaApex(String8(name).c_str(), &declared); in updatableViaApex()
|
D | servicedispatcher.cpp | 157 android::binder::Status updatableViaApex(const std::string& name, in updatableViaApex() function in __anona95398ca0111::ServiceManagerProxyToNative 159 return mImpl->updatableViaApex(name, _aidl_return); in updatableViaApex()
|
/frameworks/native/libs/binder/aidl/android/os/ |
D | IServiceManager.aidl | 114 @nullable @utf8InCpp String updatableViaApex(@utf8InCpp String name); in updatableViaApex() method
|
/frameworks/native/libs/fakeservicemanager/include/fakeservicemanager/ |
D | FakeServiceManager.h | 54 std::optional<String16> updatableViaApex(const String16& name) override;
|
/frameworks/native/libs/fakeservicemanager/ |
D | FakeServiceManager.cpp | 93 std::optional<String16> FakeServiceManager::updatableViaApex(const String16& name) { in updatableViaApex() function in android::FakeServiceManager
|
/frameworks/native/libs/binder/include/binder/ |
D | IServiceManager.h | 116 virtual std::optional<String16> updatableViaApex(const String16& name) = 0;
|
/frameworks/native/include/binder/ |
D | IServiceManager.h | 116 virtual std::optional<String16> updatableViaApex(const String16& name) = 0;
|
/frameworks/native/libs/binder/tests/ |
D | binderStabilityTest.cpp | 198 EXPECT_EQ(std::nullopt, android::defaultServiceManager()->updatableViaApex(instance)) in TEST()
|
/frameworks/native/cmds/dumpsys/tests/ |
D | dumpsys_test.cpp | 62 MOCK_METHOD1(updatableViaApex, std::optional<String16>(const String16&));
|