/frameworks/native/libs/binder/ |
D | LazyServiceRegistrar.cpp | 38 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 …]
|
D | IServiceManager.cpp | 84 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/ |
D | BinderService.h | 54 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);
|
D | LazyServiceRegistrar.h | 50 bool allowIsolated = false,
|
D | IServiceManager.h | 83 bool allowIsolated = false,
|
/frameworks/native/include/binder/ |
D | BinderService.h | 54 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);
|
D | IServiceManager.h | 83 bool allowIsolated = false,
|
/frameworks/base/core/java/android/os/ |
D | ServiceManager.java | 233 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
|
D | ServiceManagerNative.java | 70 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/ |
D | SystemService.java | 591 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/ |
D | ServiceManager.h | 41 bool allowIsolated, int32_t dumpPriority) override; 75 bool allowIsolated; member
|
D | ServiceManager.cpp | 370 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/ |
D | IServiceManager.aidl | 79 boolean allowIsolated, int dumpPriority); in addService() argument
|
/frameworks/native/libs/fakeservicemanager/include/fakeservicemanager/ |
D | FakeServiceManager.h | 41 bool allowIsolated = false,
|
/frameworks/native/libs/binder/ndk/ |
D | service_manager.cpp | 51 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()
|