Searched defs:allowIsolated (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/os/
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);
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);
/frameworks/native/libs/binder/
H A DIServiceManager.cpp155 bool allowIsolated)
161 data.writeInt32(allowIsolated ? 1 : 0);
154 addService(const String16& name, const sp<IBinder>& service, bool allowIsolated) argument

Completed in 417 milliseconds