Methods Summary |
---|
public static void | addService(java.lang.String name, IBinder service)Place a new @a service called @a name into the service
manager.
// pass
|
public static IBinder | checkService(java.lang.String name)Retrieve an existing service called @a name from the
service manager. Non-blocking.
return null;
|
public static IBinder | getService(java.lang.String name)Returns a reference to a service with the given name.
return null;
|
public static void | initServiceCache(java.util.Map cache)This is only intended to be called when the process is first being brought
up and bound by the activity manager. There is only one thread in the process
at that time, so no locking is done.
// pass
|
public static java.lang.String[] | listServices()Return a list of all currently running services.
// actual implementation returns null sometimes, so it's ok
// to return null instead of an empty list.
return null;
|