Searched refs:allowIsolated (Results 1 – 7 of 7) sorted by relevance
/frameworks/native/libs/binder/include/binder/ |
D | BinderService.h | 37 static status_t publish(bool allowIsolated = false) { 41 new SERVICE(), allowIsolated); 44 static void publishAndJoinThreadPool(bool allowIsolated = false) { 45 publish(allowIsolated);
|
D | IServiceManager.h | 51 bool allowIsolated = false) = 0;
|
/frameworks/base/core/java/android/os/ |
D | ServiceManagerNative.java | 76 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()
|
D | ServiceManager.java | 103 public static void addService(String name, IBinder service, boolean allowIsolated) { in addService() argument 105 getIServiceManager().addService(name, service, allowIsolated); in addService()
|
D | IServiceManager.java | 48 public void addService(String name, IBinder service, boolean allowIsolated) in addService() argument
|
/frameworks/base/services/core/java/com/android/server/ |
D | SystemService.java | 206 boolean allowIsolated) { in publishBinderService() argument 207 ServiceManager.addService(name, service, allowIsolated); in publishBinderService()
|
/frameworks/native/libs/binder/ |
D | IServiceManager.cpp | 164 bool allowIsolated) in addService() argument 170 data.writeInt32(allowIsolated ? 1 : 0); in addService()
|