HomeSort by relevance Sort by last modified time
    Searched defs:mService (Results 176 - 200 of 244) sorted by null

1 2 3 4 5 6 78 910

  /cts/hostsidetests/devicepolicy/app/LauncherTests/src/com/android/cts/launchertests/
LauncherAppsTests.java 73 private Messenger mService;
200 mService = new Messenger(service);
206 mService = null;
283 mService.send(message);
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 36 private SoftKeyboard mService;
128 mService = listener;
282 mService.pickSuggestionManually(mSelectedIndex);
291 mService.pickSuggestionManually(mSelectedIndex);
312 mService.pickSuggestionManually(mSelectedIndex);
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
Display.java 153 private volatile IBrailleService mService;
163 mService = localService;
178 mService = null;
238 return localConnection.mService;
  /frameworks/av/services/audiopolicy/
AudioPolicyService.h 369 wp<AudioPolicyService> mService;
493 const wp<AudioPolicyService> mService;
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCharacteristic.java 210 protected BluetoothGattService mService;
252 mService = service;
303 return mService;
311 mService = service;
BluetoothHealth.java 108 mService = null;
117 if (mService == null) {
180 if (mService != null) {
182 result = mService.registerAppConfiguration(config, wrapper);
204 if (mService != null && isEnabled() && config != null) {
206 result = mService.unregisterAppConfiguration(config);
232 if (mService != null && isEnabled() && isValidDevice(device) &&
235 return mService.connectChannelToSource(device, config);
261 if (mService != null && isEnabled() && isValidDevice(device) &&
264 return mService.connectChannelToSink(device, config, channelType)
    [all...]
BluetoothInputDevice.java 205 private IBluetoothInputDevice mService;
215 mService = null;
224 if (mService == null) {
282 if (mService != null) {
284 mService = null;
316 if (mService != null && isEnabled() && isValidDevice(device)) {
318 return mService.connect(device);
324 if (mService == null) Log.w(TAG, "Proxy not attached to service");
356 if (mService != null && isEnabled() && isValidDevice(device)) {
358 return mService.disconnect(device)
    [all...]
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardware.java 52 private IGeofenceHardware mService;
171 mService = service;
188 return mService.getMonitoringTypes();
211 return mService.getStatusOfMonitoringType(monitoringType);
271 return mService.addCircularFence(
307 return mService.removeGeofence(geofenceId, monitoringType);
337 return mService.pauseGeofence(geofenceId, monitoringType);
369 return mService.resumeGeofence(geofenceId, monitoringType, monitorTransition);
400 return mService.registerForMonitorStateChangeCallback(monitoringType,
429 result = mService.unregisterForMonitorStateChangeCallback(monitoringType
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityManager.java 97 private IAccessibilityManager mService;
222 mService = service;
614 if (mService == null) {
617 return mService;
629 mService = service;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ServiceMonitor.java 115 private IBinder mService;
120 mService = service;
130 boolean unlinked = mService.unlinkToDeath(this, 0);
  /frameworks/base/services/backup/java/com/android/server/backup/
Trampoline.java 52 volatile BackupManagerService mService;
74 mService = new BackupManagerService(mContext, this);
101 mService = new BackupManagerService(mContext, this);
104 mService = null;
125 return mService != null;
134 BackupManagerService svc = mService;
143 BackupManagerService svc = mService;
151 BackupManagerService svc = mService;
159 BackupManagerService svc = mService;
167 BackupManagerService svc = mService;
    [all...]
  /frameworks/base/services/core/java/com/android/server/
MmsServiceBroker.java 69 private volatile IMms mService;
94 mService = IMms.Stub.asInterface(service);
103 mService = null;
117 mService = null;
132 if (mService != null) {
150 if (mService == null) {
165 if (mService != null) {
180 * Making sure when we obtain the mService instance it is always valid.
185 return mService;
BluetoothManagerService.java 592 IBinder mService;
597 mService = null;
603 if (mIntent != null && mService == null &&
616 if (mService != null) {
618 proxy.onServiceConnected(mClassName, mService);
654 mService = service;
657 mService.linkToDeath(this, 0);
674 if (mService == null) {
677 mService.unlinkToDeath(this, 0);
678 mService = null
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AppWindowToken.java 269 win.mService.removeWindowLocked(win.mSession, win);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetPhoneState.java 42 private int mService = HeadsetHalConstants.NETWORK_STATE_NOT_AVAILABLE;
144 return mService;
218 int signal = mService == HeadsetHalConstants.NETWORK_STATE_AVAILABLE ? mSignal : 0;
220 Log.d(TAG, "sendDeviceStateChanged. mService="+ mService +
226 new HeadsetDeviceState(mService, mRoam, signal, mBatteryCharge));
236 mService = (serviceState.getState() == ServiceState.STATE_IN_SERVICE) ?
249 if (mService == HeadsetHalConstants.NETWORK_STATE_NOT_AVAILABLE) {
351 int mService;
357 mService = service
    [all...]
HeadsetService.java 121 private HeadsetService mService;
124 mService = svc;
127 mService = null;
132 if (!Utils.checkCallerAllowManagedProfiles(mService)) {
137 if (mService != null && mService.isAvailable()) {
138 return mService;
HeadsetStateMachine.java 145 private HeadsetService mService;
206 mService = context;
217 mPhonebook = new AtPhonebook(mService, this);
274 mService.unbindService(mConnection);
414 Log.i(TAG,"Incoming Hf rejected. priority=" + mService.getPriority(device)+
444 Log.i(TAG,"Incoming Hf rejected. priority=" + mService.getPriority(device) +
665 mService.getPriority(device) + " bondState=" +
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientService.java 123 private HeadsetClientService mService;
126 mService = svc;
131 mService = null;
141 if (mService != null && mService.isAvailable()) {
142 return mService;
HeadsetClientStateMachine.java 112 private final HeadsetClientService mService;
318 mService.sendBroadcast(intent, ProfileService.BLUETOOTH_PERM);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 49 protected Class<AsyncQueryService> mService = AsyncQueryService.class;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 57 private final AndroidSpellCheckerService mService;
105 mService = service;
126 final ContentResolver cres = mService.getContentResolver();
197 if (mService.isValidWord(mLocale, text)) return true;
204 if (mService.isValidWord(mLocale, lowerCaseText)) return true;
210 return mService.isValidWord(mLocale,
245 if (!mService.isValidWord(mLocale, word)) {
257 return mService.isValidWord(mLocale, inText) ?
266 if (!mService.hasMainDictionaryForLocale(mLocale)) {
270 final Keyboard keyboard = mService.getKeyboardForLocale(mLocale)
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CreateConnectionProcessor.java 356 private final ConnectionServiceWrapper mService;
359 mService = service;
369 mService.abort(mCall);
  /frameworks/base/services/core/java/com/android/server/am/
TaskRecord.java 166 final ActivityManagerService mService;
170 mService = service;
185 mService = service;
222 mService = service;
395 mService.notifyTaskPersisterLocked(this, false);
434 mService.mTaskPersister.saveImage(thumbnail, mFilename);
445 thumbs.mainThumbnail = mService.mTaskPersister.getImageFromWriteQueue(mFilename);
569 mService.notifyTaskPersisterLocked(this, false);
580 mService.notifyTaskPersisterLocked(this, false);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleServerService.java 89 private BluetoothGattService mService;
103 mService = createService();
105 mGattServer.addService(mService);
206 mService.getCharacteristic(uuid);
251 mService.getCharacteristic(UPDATE_CHARACTERISTIC_UUID);
  /cts/tests/tests/os/src/android/os/cts/
BinderTest.java 47 private Intent mService;
52 mService = new Intent(
129 mContext.stopService(mService);
210 getContext().bindService(mService, conn1, 0);
211 getContext().startService(mService);
215 getContext().bindService(mService, conn2, 0);
223 getContext().stopService(mService);
234 getContext().stopService(mService);
246 getContext().bindService(mService, conn1, 0);
247 getContext().startService(mService);
    [all...]

Completed in 333 milliseconds

1 2 3 4 5 6 78 910