Lines Matching full:service
19 import android.app.Service;
35 * Service used to listen for call state changes.
37 public class CallHandlerService extends Service {
109 public void startCallService(ICallCommandService service) {
111 Log.d(TAG, "startCallService: " + service.toString());
113 mMainHandler.sendMessage(mMainHandler.obtainMessage(ON_START, service));
189 private void doStart(ICallCommandService service) {
193 CallCommandClient.getInstance().setService(service);
195 // If we have a new service when one is already started, we can continue
196 // using the service that we already have.
198 Log.i(TAG, "Starting a service before another one is completed");
231 * Handles messages from the service so that they get executed on the main thread, where they