Searched defs:mService (Results 1 - 25 of 76) sorted by relevance

1234

/frameworks/base/core/java/android/hardware/
H A DSerialManager.java38 private final ISerialManager mService; field in class:SerialManager
45 mService = service;
55 return mService.getSerialPorts();
75 ParcelFileDescriptor pfd = mService.openSerialPort(name);
/frameworks/base/core/java/android/os/
H A DSystemVibrator.java29 private final IVibratorService mService; field in class:SystemVibrator
33 mService = IVibratorService.Stub.asInterface(
39 if (mService == null) {
44 return mService.hasVibrator();
52 if (mService == null) {
57 mService.vibrate(milliseconds, mToken);
65 if (mService == null) {
74 mService.vibratePattern(pattern, repeat, mToken);
85 if (mService == null) {
89 mService
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorDialog.java29 private final ActivityManagerService mService; field in class:AppErrorDialog
46 mService = service;
92 synchronized (mService) {
H A DAppWaitingForDebuggerDialog.java26 final ActivityManagerService mService; field in class:AppWaitingForDebuggerDialog
33 mService = service;
69 mService.killAppAtUsersRequest(mProc, AppWaitingForDebuggerDialog.this);
H A DCompatModeDialog.java32 final ActivityManagerService mService; field in class:CompatModeDialog
47 mService = service;
55 synchronized (mService) {
56 mService.mCompatModePackages.setPackageScreenCompatModeLocked(
68 synchronized (mService) {
69 mService.mCompatModePackages.setPackageAskCompatModeLocked(
81 synchronized (mService) {
82 int mode = mService.mCompatModePackages.computeCompatModeLocked(mAppInfo);
84 boolean ask = mService.mCompatModePackages.getPackageAskCompatModeLocked(
H A DAppNotRespondingDialog.java39 private final ActivityManagerService mService; field in class:AppNotRespondingDialog
46 mService = service;
113 mService.killAppAtUsersRequest(mProc, AppNotRespondingDialog.this);
118 synchronized (mService) {
122 appErrorIntent = mService.createAppErrorIntentLocked(app,
H A DStrictModeViolationDialog.java31 private final ActivityManagerService mService; field in class:StrictModeViolationDialog
49 mService = service;
89 synchronized (mService) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCloseDragHandle.java26 PhoneStatusBar mService; field in class:CloseDragHandle
42 mService.interceptTouchEvent(event);
49 return mService.interceptTouchEvent(event)
H A DStatusBarWindowView.java47 PhoneStatusBar mService; field in class:StatusBarWindowView
74 mService.animateCollapsePanels();
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DConfirmDialog.java41 private IConnectivityManager mService; field in class:ConfirmDialog
51 mService = IConnectivityManager.Stub.asInterface(
54 if (mService.prepareVpn(mPackage, null)) {
99 if (which == DialogInterface.BUTTON_POSITIVE && mService.prepareVpn(null, mPackage)) {
H A DManageDialog.java48 private IConnectivityManager mService; field in class:ManageDialog
70 mService = IConnectivityManager.Stub.asInterface(
127 mService.prepareVpn(VpnConfig.LEGACY_VPN, VpnConfig.LEGACY_VPN);
129 mService.prepareVpn(mConfig.user, VpnConfig.LEGACY_VPN);
/frameworks/base/location/java/android/location/
H A DCountryDetector.java84 private final ICountryDetector mService; field in class:CountryDetector
94 mService = service;
106 return mService.detectCountry();
127 mService.addCountryListener(transport);
145 mService.removeCountryListener(transport);
H A DGeocoder.java51 private ILocationManager mService; field in class:Geocoder
85 mService = ILocationManager.Stub.asInterface(b);
133 String ex = mService.getFromLocation(latitude, longitude, maxResults,
175 String ex = mService.getFromLocationName(locationName,
247 String ex = mService.getFromLocationName(locationName,
/frameworks/base/core/java/android/app/
H A DAlarmManager.java83 private final IAlarmManager mService; field in class:AlarmManager
89 mService = service;
137 mService.set(type, triggerAtMillis, operation);
192 mService.setRepeating(type, triggerAtMillis, intervalMillis, operation);
258 mService.setInexactRepeating(type, triggerAtMillis, intervalMillis, operation);
275 mService.remove(operation);
288 mService.setTime(millis);
301 mService.setTimeZone(timeZone);
H A DUiModeManager.java111 private IUiModeManager mService; field in class:UiModeManager
114 mService = IUiModeManager.Stub.asInterface(
134 if (mService != null) {
136 mService.enableCarMode(flags);
157 if (mService != null) {
159 mService.disableCarMode(flags);
174 if (mService != null) {
176 return mService.getCurrentModeType();
199 if (mService != null) {
201 mService
[all...]
H A DStatusBarManager.java67 private IStatusBarService mService; field in class:StatusBarManager
75 if (mService == null) {
76 mService = IStatusBarService.Stub.asInterface(
78 if (mService == null) {
82 return mService;
H A DWallpaperInfo.java52 final ResolveInfo mService; field in class:WallpaperInfo
84 mService = service;
150 mService = ResolveInfo.CREATOR.createFromParcel(source);
157 return mService.serviceInfo.packageName;
165 return mService.serviceInfo.name;
173 return mService.serviceInfo;
180 return new ComponentName(mService.serviceInfo.packageName,
181 mService.serviceInfo.name);
191 return mService.loadLabel(pm);
201 return mService
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DBinderThreadPriorityTest.java35 private IBinderThreadPriorityService mService; field in class:BinderThreadPriorityTest
41 mService = IBinderThreadPriorityService.Stub.asInterface(service);
47 mService = null;
68 if (mService == null) {
74 assertNotNull("Gave up waiting for BinderThreadPriorityService", mService);
124 assertEquals(prio, mService.getThreadPriority());
125 assertEquals(expectedSchedulerGroup(prio), mService.getThreadSchedulerGroup());
132 mService.setPriorityAndCallBack(prio, new ServiceStub() {
/frameworks/base/libs/usb/src/com/android/future/usb/
H A DUsbManager.java67 private final IUsbManager mService; field in class:UsbManager
71 mService = service;
111 android.hardware.usb.UsbAccessory accessory = mService.getCurrentAccessory();
131 return mService.openAccessory(new android.hardware.usb.UsbAccessory(
152 return mService.hasAccessoryPermission(new android.hardware.usb.UsbAccessory(
177 mService.requestAccessoryPermission(new android.hardware.usb.UsbAccessory(
/frameworks/base/services/java/com/android/server/wm/
H A DFakeWindowImpl.java32 final WindowManagerService mService; field in class:FakeWindowImpl
45 mService = service;
50 mService.mInputManager.registerInputChannel(mServerChannel, null);
96 synchronized (mService.mWindowMap) {
97 if (mService.removeFakeWindowLocked(this)) {
99 mService.mInputManager.unregisterInputChannel(mServerChannel);
107 return mService.mPolicy.windowTypeToLayerLw(windowType)
/frameworks/base/test-runner/src/android/test/
H A DServiceTestCase.java114 private T mService; field in class:ServiceTestCase
127 return mService;
154 mService = null;
156 mService = mServiceClass.newInstance();
158 assertNotNull(mService);
163 mService.attach(
172 assertNotNull(mService);
192 assertNotNull(mService);
195 mService.onCreate();
198 mService
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxManagerService.java45 static private IBordeauxService mService = null; field in class:BordeauxManagerService
67 mService = null;
73 if (mService == null) bindServices(context);
74 return mService;
78 if (mService == null) {
84 mService.getAggregatorManager());
92 if (mService == null) {
97 mPredictor = IPredictor.Stub.asInterface(mService.getPredictor(name));
106 if (mService == null) {
113 mService
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.h78 sp<SensorService> const mService; member in class:android::SensorService::SensorEventConnection
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java109 private IBluetoothA2dp mService; field in class:BluetoothA2dp
120 mService = null;
129 if (mService == null) {
177 if (mService != null) {
179 mService = null;
215 if (mService != null && isEnabled() &&
218 return mService.connect(device);
224 if (mService == null) Log.w(TAG, "Proxy not attached to service");
256 if (mService != null && isEnabled() &&
259 return mService
[all...]
H A DBluetoothPbap.java71 private IBluetoothPbap mService; field in class:BluetoothPbap
121 mService = null;
130 if (mService == null) {
191 if (mService != null) {
193 mService = null;
211 if (mService != null) {
213 return mService.getState();
230 if (mService != null) {
232 return mService.getClient();
248 if (mService !
[all...]

Completed in 1623 milliseconds

1234