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

/frameworks/native/include/binder/
H A DBinderService.h37 static status_t publish(bool allowIsolated = false) {
41 new SERVICE(), allowIsolated);
44 static void publishAndJoinThreadPool(bool allowIsolated = false) {
45 publish(allowIsolated);
H A DIServiceManager.h51 bool allowIsolated = false) = 0;
/frameworks/base/core/java/android/os/
H A DIServiceManager.java48 public void addService(String name, IBinder service, boolean allowIsolated) argument
H A DServiceManagerNative.java76 boolean allowIsolated = data.readInt() != 0;
77 addService(name, service, allowIsolated);
142 public void addService(String name, IBinder service, boolean allowIsolated) argument
149 data.writeInt(allowIsolated ? 1 : 0);
H A DServiceManager.java84 * @param allowIsolated set to true to allow isolated sandboxed processes
87 public static void addService(String name, IBinder service, boolean allowIsolated) { argument
89 getIServiceManager().addService(name, service, allowIsolated);
/frameworks/base/services/core/java/com/android/server/
H A DSystemService.java180 boolean allowIsolated) {
181 ServiceManager.addService(name, service, allowIsolated);
179 publishBinderService(String name, IBinder service, boolean allowIsolated) argument
/frameworks/native/libs/binder/
H A DIServiceManager.cpp161 bool allowIsolated)
167 data.writeInt32(allowIsolated ? 1 : 0);
160 addService(const String16& name, const sp<IBinder>& service, bool allowIsolated) argument

Completed in 126 milliseconds