Lines Matching refs:calling
65 calling {@link android.content.Context#startService startService()}. Once started, a service
71 <dd>A service is "bound" when an application component binds to it by calling {@link
132 requests that the service be started, by calling {@link android.content.Context#startService
135 its work is done, by calling {@link android.app.Service#stopSelf stopSelf()} or {@link
140 service (such as to perform RPC), by calling {@link android.content.Context#bindService
155 <p>If a component starts the service by calling {@link
159 component stops it by calling {@link android.content.Context#stopService stopService()}.</p>
241 <p>A started service is one that another component starts by calling {@link
248 is done by calling {@link android.app.Service#stopSelf stopSelf()}, or another component can stop it
249 by calling {@link android.content.Context#stopService stopService()}.</p>
251 <p>An application component such as an activity can start the service by calling {@link
542 the service must stop itself by calling {@link android.app.Service#stopSelf stopSelf()} or another
543 component can stop it by calling {@link android.content.Context#stopService stopService()}.</p>
562 other components can stop the service by calling {@link
574 <p>A bound service is one that allows application components to bind to it by calling {@link
576 (and generally does not allow components to <em>start</em> it by calling {@link
587 begin calling methods on the service. The service lives only to serve the application component that
689 stop itself by calling {@link
691 service by calling {@link android.content.Context#stopService
697 through an {@link android.os.IBinder} interface. The client can close the connection by calling
705 music service could be started by calling {@link android.content.Context#startService
708 current song, an activity can bind to the service by calling {@link
807 onStartCommand()} (by a client calling {@link android.content.Context#startService startService()})