Home
last modified time | relevance | path

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

/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/libs/fakeservicemanager/
DServiceManager.h52 std::optional<String16> updatableViaApex(const String16& name) override;
DServiceManager.cpp76 std::optional<String16> ServiceManager::updatableViaApex(const String16& name) { in updatableViaApex() function in android::ServiceManager
/frameworks/native/libs/binder/aidl/android/os/
DIServiceManager.aidl113 @nullable @utf8InCpp String updatableViaApex(@utf8InCpp String name); in updatableViaApex() method
/frameworks/native/cmds/servicemanager/
DServiceManager.cpp107 std::optional<std::string> updatableViaApex; in getVintfUpdatableApex() local
115 updatableViaApex = manifestInstance.updatableViaApex(); in getVintfUpdatableApex()
121 return updatableViaApex; in getVintfUpdatableApex()
424 Status ServiceManager::updatableViaApex(const std::string& name, in updatableViaApex() function in android::ServiceManager
DServiceManager.h49 binder::Status updatableViaApex(const std::string& name,
/frameworks/native/libs/binder/
DIServiceManager.cpp78 std::optional<String16> updatableViaApex(const String16& name) override;
392 std::optional<String16> ServiceManagerShim::updatableViaApex(const String16& name) { in updatableViaApex() function in android::ServiceManagerShim
394 if (!mTheRealServiceManager->updatableViaApex(String8(name).c_str(), &declared).isOk()) { in updatableViaApex()
/frameworks/native/include/binder/
DIServiceManager.h109 virtual std::optional<String16> updatableViaApex(const String16& name) = 0;
/frameworks/native/libs/binder/include/binder/
DIServiceManager.h109 virtual std::optional<String16> updatableViaApex(const String16& name) = 0;
/frameworks/native/libs/binder/ndk/
Dservice_manager.cpp114 return sm->updatableViaApex(String16(instance)) != std::nullopt; in AServiceManager_isUpdatableViaApex()
/frameworks/native/libs/binder/tests/
DbinderStabilityTest.cpp195 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&));