Searched defs:service (Results 1 - 5 of 5) sorted by relevance

/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
H A DMultiTouchChannel.java25 import com.android.tools.sdkcontroller.service.ControllerService;
57 public MultiTouchChannel(ControllerService service) { argument
58 super(service, Channel.MULTITOUCH_CHANNEL);
H A DSensorChannel.java34 import com.android.tools.sdkcontroller.service.ControllerService;
80 * @param service Service context.
82 public SensorChannel(ControllerService service) { argument
83 super(service, Channel.SENSOR_CHANNEL);
84 mSenMan = (SensorManager) service.getSystemService(Context.SENSOR_SERVICE);
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
H A DConnection.java30 import com.android.tools.sdkcontroller.service.ControllerService;
33 * Encapsulates a connection between SdkController service and the emulator. On
42 * The way communication between the emulator and SDK controller service works
45 * 1. Both sides, emulator and the service have components that implement a particular
55 * 3. Connection is initiated by the emulator side, while the service provides
63 * 2. Maintain a list of service-side channels registered by the application.
65 * 3. Bind emulator connection with service-side channel via port name, provided by
104 public Connection(ControllerService service) { argument
105 mService = service;
227 * Gets connected emulator socket that is pending for service
[all...]
H A DChannel.java22 import com.android.tools.sdkcontroller.service.ControllerService;
237 public Channel(ControllerService service, String name) { argument
238 mService = service;
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/service/
H A DControllerService.java17 package com.android.tools.sdkcontroller.service;
40 * The background service of the SdkController.
43 * The service manages a number of SDK controller channels which can be seen as
53 * All the channels are created when the service starts, and whether the emulator
84 * Whether the service is running. Set to true in onCreate, false in onDestroy.
88 /** Internal error reported by the service. */
92 * Interface that the service uses to notify binded activities.
100 * The error string reported by the service has changed. <br/>
106 * The service status has changed (emulator connected/disconnected.)
111 /** Interface that callers can use to access the service
[all...]

Completed in 59 milliseconds