Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/
DLazyServiceRegistrar.cpp38 bool allowIsolated, int dumpFlags);
53 bool allowIsolated; member
63 bool allowIsolated, int dumpFlags);
107 bool allowIsolated, int dumpFlags);
125 bool allowIsolated, int dumpFlags) { in registerService() argument
127 return registerServiceLocked(service, name, allowIsolated, dumpFlags); in registerService()
131 const std::string& name, bool allowIsolated, in registerServiceLocked() argument
139 if (Status status = manager->addService(name.c_str(), service, allowIsolated, dumpFlags); in registerServiceLocked()
159 .allowIsolated = allowIsolated, in registerServiceLocked()
211 if (!registerServiceLocked(entry.service, name, entry.allowIsolated, entry.dumpFlags)) { in reRegisterLocked()
[all …]
DIServiceManager.cpp84 bool allowIsolated, int dumpsysPriority) override;
355 bool allowIsolated, int dumpsysPriority) in addService() argument
358 String8(name).c_str(), service, allowIsolated, dumpsysPriority); in addService()
/frameworks/native/libs/binder/include/binder/
DBinderService.h54 static status_t publish(bool allowIsolated = false,
57 return sm->addService(String16(SERVICE::getServiceName()), new SERVICE(), allowIsolated,
62 bool allowIsolated = false,
64 publish(allowIsolated, dumpFlags);
DLazyServiceRegistrar.h50 bool allowIsolated = false,
DIServiceManager.h83 bool allowIsolated = false,
/frameworks/native/include/binder/
DBinderService.h54 static status_t publish(bool allowIsolated = false,
57 return sm->addService(String16(SERVICE::getServiceName()), new SERVICE(), allowIsolated,
62 bool allowIsolated = false,
64 publish(allowIsolated, dumpFlags);
DIServiceManager.h83 bool allowIsolated = false,
/frameworks/base/core/java/android/os/
DServiceManager.java233 public static void addService(String name, IBinder service, boolean allowIsolated) { in addService() argument
234 addService(name, service, allowIsolated, IServiceManager.DUMP_FLAG_PRIORITY_DEFAULT); in addService()
250 public static void addService(String name, IBinder service, boolean allowIsolated, in addService() argument
253 getIServiceManager().addService(name, service, allowIsolated, dumpPriority); in addService()
260 public static void addService$ravenwood(String name, IBinder service, boolean allowIsolated, in addService$ravenwood() argument
DServiceManagerNative.java70 public void addService(String name, IBinder service, boolean allowIsolated, int dumpPriority) in addService() argument
72 mServiceManager.addService(name, service, allowIsolated, dumpPriority); in addService()
/frameworks/base/services/core/java/com/android/server/
DSystemService.java591 boolean allowIsolated) { in publishBinderService() argument
592 publishBinderService(name, service, allowIsolated, DUMP_FLAG_PRIORITY_DEFAULT); in publishBinderService()
607 boolean allowIsolated, int dumpPriority) { in publishBinderService() argument
608 ServiceManager.addService(name, service, allowIsolated, dumpPriority); in publishBinderService()
/frameworks/native/cmds/servicemanager/
DServiceManager.h41 bool allowIsolated, int32_t dumpPriority) override;
75 bool allowIsolated; member
DServiceManager.cpp370 if (!service->allowIsolated && is_multiuser_uid_isolated(ctx.uid)) { in tryGetService()
415 …::addService(const std::string& name, const sp<IBinder>& binder, bool allowIsolated, int32_t dumpP… in addService() argument
484 .allowIsolated = allowIsolated, in addService()
/frameworks/native/libs/binder/aidl/android/os/
DIServiceManager.aidl79 boolean allowIsolated, int dumpPriority); in addService() argument
/frameworks/native/libs/fakeservicemanager/include/fakeservicemanager/
DFakeServiceManager.h41 bool allowIsolated = false,
/frameworks/native/libs/binder/ndk/
Dservice_manager.cpp51 bool allowIsolated = flags & AServiceManager_AddServiceFlag::ADD_SERVICE_ALLOW_ISOLATED; in AServiceManager_addServiceWithFlags() local
69 sm->addService(String16(instance), binder->getBinder(), allowIsolated, dumpFlags); in AServiceManager_addServiceWithFlags()