Home | History | Annotate | Download | only in components

Lines Matching full:perform

8   <li>A service can run in the background to perform work even while the user is in a different
11 perform interprocess communication</li>
60 <p>A {@link android.app.Service} is an application component that can perform
64 interact with it and even perform interprocess communication (IPC). For example, a service might
65 handle network transactions, play music, perform file I/O, or interact with a content provider, all
117 <p>If you need to perform work outside your main thread, but only while the user is interacting
148 service (such as to perform RPC), by calling {@link android.content.Context#bindService
153 <dd>The system calls this method when the service is first created, to perform one-time setup
400 perform multi-threading (instead of processing start requests through a work queue), then you
405 android.app.IntentService}. That is, for each start request, it uses a worker thread to perform the
482 onStartCommand()} yourself, you can perform multiple requests simultaneously. That's not what
737 changes in the service's state and perform work at the appropriate times. The following skeleton