Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/include/binder/
DBinderService.h37 static status_t publish(bool allowIsolated = false) {
41 new SERVICE(), allowIsolated);
44 static void publishAndJoinThreadPool(bool allowIsolated = false) {
45 publish(allowIsolated);
DIServiceManager.h51 bool allowIsolated = false) = 0;
/frameworks/base/core/java/android/os/
DServiceManagerNative.java76 boolean allowIsolated = data.readInt() != 0; in onTransact()
77 addService(name, service, allowIsolated); in onTransact()
142 public void addService(String name, IBinder service, boolean allowIsolated) in addService() argument
149 data.writeInt(allowIsolated ? 1 : 0); in addService()
DServiceManager.java103 public static void addService(String name, IBinder service, boolean allowIsolated) { in addService() argument
105 getIServiceManager().addService(name, service, allowIsolated); in addService()
DIServiceManager.java48 public void addService(String name, IBinder service, boolean allowIsolated) in addService() argument
/frameworks/base/services/core/java/com/android/server/
DSystemService.java206 boolean allowIsolated) { in publishBinderService() argument
207 ServiceManager.addService(name, service, allowIsolated); in publishBinderService()
/frameworks/native/libs/binder/
DIServiceManager.cpp164 bool allowIsolated) in addService() argument
170 data.writeInt32(allowIsolated ? 1 : 0); in addService()