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

1234

/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DObbBackupService.java51 IObbBackupService mService = new IObbBackupService.Stub() { field in class:ObbBackupService
149 return mService.asBinder();
/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);
H A DConsumerIrManager.java38 private final IConsumerIrService mService; field in class:ConsumerIrManager
45 mService = IConsumerIrService.Stub.asInterface(
55 if (mService == null) {
61 return mService.hasIrEmitter();
79 if (mService == null) {
85 mService.transmit(mPackageName, carrierFrequency, pattern);
134 if (mService == null) {
140 int[] freqs = mService.getCarrierFrequencies();
/frameworks/base/core/java/android/os/
H A DSystemVibrator.java32 private final IVibratorService mService; field in class:SystemVibrator
37 mService = IVibratorService.Stub.asInterface(
43 mService = IVibratorService.Stub.asInterface(
49 if (mService == null) {
54 return mService.hasVibrator();
75 if (mService == null) {
80 mService.vibrate(owningUid, owningPackage, milliseconds, mToken);
91 if (mService == null) {
100 mService.vibratePattern(owningUid, owningPackage, pattern, repeat, mToken);
111 if (mService
[all...]
/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)) {
100 if (which == DialogInterface.BUTTON_POSITIVE && mService.prepareVpn(null, mPackage)) {
H A DManageDialog.java48 private IConnectivityManager mService; field in class:ManageDialog
69 mService = IConnectivityManager.Stub.asInterface(
72 mConfig = mService.getVpnConfig();
134 mService.prepareVpn(VpnConfig.LEGACY_VPN, VpnConfig.LEGACY_VPN);
136 mService.prepareVpn(mConfig.user, VpnConfig.LEGACY_VPN);
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorDialog.java27 private final ActivityManagerService mService; field in class:AppErrorDialog
44 mService = service;
90 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.java37 private final ActivityManagerService mService; field in class:AppNotRespondingDialog
44 mService = service;
111 mService.killAppAtUsersRequest(mProc, AppNotRespondingDialog.this);
116 synchronized (mService) {
120 appErrorIntent = mService.createAppErrorIntentLocked(app,
129 mService.mServices.scheduleServiceTimeoutLocked(app);
H A DStrictModeViolationDialog.java30 private final ActivityManagerService mService; field in class:StrictModeViolationDialog
48 mService = service;
88 synchronized (mService) {
/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/services/java/com/android/server/wm/
H A DStackTapPointerEventListener.java35 private final WindowManagerService mService; field in class:StackTapPointerEventListener
40 mService = service;
78 mService.mH.obtainMessage(H.TAP_OUTSIDE_STACK, x, y,
H A DFakeWindowImpl.java32 final WindowManagerService mService; field in class:FakeWindowImpl
45 mService = service;
50 mService.mInputManager.registerInputChannel(mServerChannel, null);
97 synchronized (mService.mWindowMap) {
98 if (mService.removeFakeWindowLocked(this)) {
100 mService.mInputManager.unregisterInputChannel(mServerChannel);
108 return mService.mPolicy.windowTypeToLayerLw(windowType)
/frameworks/base/core/java/android/app/
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 DAlarmManager.java102 private final IAlarmManager mService; field in class:AlarmManager
110 mService = service;
363 mService.set(type, triggerAtMillis, windowMillis, intervalMillis, operation,
479 mService.remove(operation);
492 mService.setTime(millis);
505 mService.setTimeZone(timeZone);
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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardTouchDelegate.java46 private volatile IKeyguardService mService; field in class:KeyguardTouchDelegate
55 mService = IKeyguardService.Stub.asInterface(service);
62 mService = null;
88 final IKeyguardService service = mService;
102 final IKeyguardService service = mService;
118 final IKeyguardService service = mService;
132 final IKeyguardService service = mService;
146 final IKeyguardService service = mService;
160 final IKeyguardService service = mService;
174 final IKeyguardService service = mService;
[all...]
H A DStatusBarWindowView.java47 PhoneStatusBar mService; field in class:StatusBarWindowView
81 mService.animateCollapsePanels();
117 mService.setInteracting(StatusBarManager.WINDOW_STATUS_BAR, false);
/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
66 mService = null;
72 if (mService == null) bindServices(context);
73 return mService;
77 if (mService == null) {
83 mService.getAggregatorManager());
91 if (mService == null) {
96 mPredictor = IPredictor.Stub.asInterface(mService.getPredictor(name));
105 if (mService == null) {
112 mService
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothPbap.java71 private IBluetoothPbap mService; field in class:BluetoothPbap
121 mService = null;
130 if (mService == null) {
196 if (mService != null) {
198 mService = null;
215 if (mService != null) {
217 return mService.getState();
234 if (mService != null) {
236 return mService.getClient();
252 if (mService !
[all...]

Completed in 891 milliseconds

1234