Home
last modified time | relevance | path

Searched refs:updatableViaApex (Results 1 – 15 of 15) sorted by relevance

/frameworks/native/libs/binder/ndk/
Dservice_manager.cpp207 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/
Dlibbinder_ndk_unit_test_host.cpp42 MOCK_METHOD1(updatableViaApex, std::optional<String16>(const String16&));
56 EXPECT_CALL(*mockSM, updatableViaApex(_)).WillRepeatedly(Return(apexName)); in ExpectUpdatableViaApexReturns()
/frameworks/base/core/java/android/os/
DServiceManagerNative.java97 public String updatableViaApex(String name) throws RemoteException { in updatableViaApex() method in ServiceManagerProxy
98 return mServiceManager.updatableViaApex(name); in updatableViaApex()
/frameworks/native/cmds/servicemanager/
Dtest_sm.cpp325 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()
DServiceManager.cpp178 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
DServiceManager.h50 binder::Status updatableViaApex(const std::string& name,
/frameworks/native/libs/binder/
DIServiceManager.cpp89 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()
Dservicedispatcher.cpp157 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/
DIServiceManager.aidl114 @nullable @utf8InCpp String updatableViaApex(@utf8InCpp String name); in updatableViaApex() method
/frameworks/native/libs/fakeservicemanager/include/fakeservicemanager/
DFakeServiceManager.h54 std::optional<String16> updatableViaApex(const String16& name) override;
/frameworks/native/libs/fakeservicemanager/
DFakeServiceManager.cpp93 std::optional<String16> FakeServiceManager::updatableViaApex(const String16& name) { in updatableViaApex() function in android::FakeServiceManager
/frameworks/native/libs/binder/include/binder/
DIServiceManager.h116 virtual std::optional<String16> updatableViaApex(const String16& name) = 0;
/frameworks/native/include/binder/
DIServiceManager.h116 virtual std::optional<String16> updatableViaApex(const String16& name) = 0;
/frameworks/native/libs/binder/tests/
DbinderStabilityTest.cpp198 EXPECT_EQ(std::nullopt, android::defaultServiceManager()->updatableViaApex(instance)) in TEST()
/frameworks/native/cmds/dumpsys/tests/
Ddumpsys_test.cpp62 MOCK_METHOD1(updatableViaApex, std::optional<String16>(const String16&));