summaryrefslogtreecommitdiff
path: root/libs/binder/aidl/android/os/IServiceManager.aidl
diff options
context:
space:
mode:
Diffstat (limited to 'libs/binder/aidl/android/os/IServiceManager.aidl')
-rw-r--r--libs/binder/aidl/android/os/IServiceManager.aidl25
1 files changed, 3 insertions, 22 deletions
diff --git a/libs/binder/aidl/android/os/IServiceManager.aidl b/libs/binder/aidl/android/os/IServiceManager.aidl
index 75c4092559..ff154603e4 100644
--- a/libs/binder/aidl/android/os/IServiceManager.aidl
+++ b/libs/binder/aidl/android/os/IServiceManager.aidl
@@ -18,7 +18,6 @@ package android.os;
import android.os.IClientCallback;
import android.os.IServiceCallback;
-import android.os.ServiceDebugInfo;
/**
* Basic interface for finding and publishing system services.
@@ -43,9 +42,9 @@ interface IServiceManager {
*/
const int DUMP_FLAG_PRIORITY_DEFAULT = 1 << 3;
- const int DUMP_FLAG_PRIORITY_ALL =
- DUMP_FLAG_PRIORITY_CRITICAL | DUMP_FLAG_PRIORITY_HIGH
- | DUMP_FLAG_PRIORITY_NORMAL | DUMP_FLAG_PRIORITY_DEFAULT;
+ const int DUMP_FLAG_PRIORITY_ALL = 15;
+ // DUMP_FLAG_PRIORITY_CRITICAL | DUMP_FLAG_PRIORITY_HIGH
+ // | DUMP_FLAG_PRIORITY_NORMAL | DUMP_FLAG_PRIORITY_DEFAULT;
/* Allows services to dump sections in protobuf format. */
const int DUMP_FLAG_PROTO = 1 << 4;
@@ -100,19 +99,6 @@ interface IServiceManager {
boolean isDeclared(@utf8InCpp String name);
/**
- * Returns all declared instances for a particular interface.
- *
- * For instance, if 'android.foo.IFoo/foo' is declared, and 'android.foo.IFoo' is
- * passed here, then ["foo"] would be returned.
- */
- @utf8InCpp String[] getDeclaredInstances(@utf8InCpp String iface);
-
- /**
- * If updatable-via-apex, returns the APEX via which this is updated.
- */
- @nullable @utf8InCpp String updatableViaApex(@utf8InCpp String name);
-
- /**
* Request a callback when the number of clients of the service changes.
* Used by LazyServiceRegistrar to dynamically stop services that have no clients.
*/
@@ -122,9 +108,4 @@ interface IServiceManager {
* Attempt to unregister and remove a service. Will fail if the service is still in use.
*/
void tryUnregisterService(@utf8InCpp String name, IBinder service);
-
- /**
- * Get debug information for all currently registered services.
- */
- ServiceDebugInfo[] getServiceDebugInfo();
}