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

123

/frameworks/base/core/java/android/os/
H A DVibrator.java31 IVibratorService mService; field in class:Vibrator
37 mService = IVibratorService.Stub.asInterface(
46 if (mService == null) {
51 return mService.hasVibrator();
64 if (mService == null) {
69 mService.vibrate(milliseconds, mToken);
95 if (mService == null) {
104 mService.vibratePattern(pattern, repeat, mToken);
118 if (mService == null) {
122 mService
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCloseDragHandle.java26 PhoneStatusBar mService; field in class:CloseDragHandle
40 mService.interceptTouchEvent(event);
47 return mService.interceptTouchEvent(event)
H A DExpandedView.java25 PhoneStatusBar mService; field in class:ExpandedView
53 mService.updateExpandedViewPos(PhoneStatusBar.EXPANDED_LEAVE_ALONE);
H A DTrackingView.java29 PhoneStatusBar mService; field in class:TrackingView
49 //mService.deactivate();
59 mService.onTrackingViewAttached();
68 mService.updateExpandedViewPos(PhoneStatusBar.EXPANDED_LEAVE_ALONE);
/frameworks/base/services/java/com/android/server/am/
H A DAppWaitingForDebuggerDialog.java25 final ActivityManagerService mService; field in class:AppWaitingForDebuggerDialog
32 mService = service;
66 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;
107 mService.killAppAtUsersRequest(mProc, AppNotRespondingDialog.this);
112 synchronized (mService) {
116 appErrorIntent = mService.createAppErrorIntentLocked(app,
/frameworks/base/core/java/android/server/
H A DBluetoothAdapterProperties.java31 private final BluetoothService mService; field in class:BluetoothAdapterProperties
36 mService = service;
68 String properties[] = (String[]) mService
100 String adapterPath = mService.getAdapterPathNative();
H A DBluetoothDeviceProperties.java31 private final BluetoothService mService; field in class:BluetoothDeviceProperties
35 mService = service;
80 mService.updateDeviceServiceChannelCache(address);
134 String[] propValues = mService.getRemoteDeviceProperties(address);
/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,
H A DLocationProvider.java43 private final ILocationManager mService; field in class:LocationProvider
63 mService = service;
79 return mService.providerMeetsCriteria(mName, criteria);
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DConfirmDialog.java41 private IConnectivityManager mService; field in class:ConfirmDialog
52 mService = IConnectivityManager.Stub.asInterface(
55 if (mService.prepareVpn(mPackage, null)) {
106 if (which == AlertDialog.BUTTON_POSITIVE && mService.prepareVpn(null, mPackage)) {
H A DManageDialog.java49 private IConnectivityManager mService; field in class:ManageDialog
71 mService = IConnectivityManager.Stub.asInterface(
134 mService.prepareVpn(mConfig.user, VpnConfig.LEGACY_VPN);
/frameworks/base/core/java/android/app/
H A DAlarmManager.java85 private final IAlarmManager mService; field in class:AlarmManager
91 mService = service;
139 mService.set(type, triggerAtTime, operation);
193 mService.setRepeating(type, triggerAtTime, interval, operation);
259 mService.setInexactRepeating(type, triggerAtTime, interval, operation);
276 mService.remove(operation);
289 mService.setTime(millis);
302 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.java60 private IStatusBarService mService; field in class:StatusBarManager
68 if (mService == null) {
69 mService = IStatusBarService.Stub.asInterface(
71 if (mService == null) {
75 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.java28 final WindowManagerService mService; field in class:FakeWindowImpl
39 mService = service;
44 mService.mInputManager.registerInputChannel(mServerChannel, null);
88 synchronized (mService.mWindowMap) {
89 if (mService.removeFakeWindowLocked(this)) {
90 mService.mInputManager.unregisterInputChannel(mServerChannel);
99 return mService.mPolicy.windowTypeToLayerLw(windowType)
/frameworks/base/services/sensorservice/
H A DSensorService.h78 sp<SensorService> const mService; member in class:android::SensorService::SensorEventConnection
/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/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java106 private IBluetoothA2dp mService; field in class:BluetoothA2dp
119 mService = IBluetoothA2dp.Stub.asInterface(b);
128 mService = null;
160 if (mService != null && isEnabled() &&
163 return mService.connect(device);
169 if (mService == null) Log.w(TAG, "Proxy not attached to service");
201 if (mService != null && isEnabled() &&
204 return mService.disconnect(device);
210 if (mService == null) Log.w(TAG, "Proxy not attached to service");
219 if (mService !
[all...]
H A DBluetoothInputDevice.java96 private IBluetooth mService; field in class:BluetoothInputDevice
108 mService = IBluetooth.Stub.asInterface(b);
117 mService = null;
147 if (mService != null && isEnabled() &&
150 return mService.connectInputDevice(device);
156 if (mService == null) Log.w(TAG, "Proxy not attached to service");
188 if (mService != null && isEnabled() &&
191 return mService.disconnectInputDevice(device);
197 if (mService == null) Log.w(TAG, "Proxy not attached to service");
206 if (mService !
[all...]

Completed in 5997 milliseconds

123