Searched defs:mService (Results 26 - 50 of 55) sorted by relevance

123

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidWordLevelSpellCheckerSession.java49 private final AndroidSpellCheckerService mService; field in class:AndroidWordLevelSpellCheckerSession
97 mService = service;
112 mDictionaryPool = mService.getDictionaryPool(localeString);
119 final ContentResolver cres = mService.getContentResolver();
240 //mService.mSuggestionThreshold, mService.mRecommendedThreshold,
242 final SuggestionsGatherer suggestionsGatherer = mService.newSuggestionsGatherer(
/packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
H A DMagicSmokeSelector.java145 IWallpaperService mService; field in class:MagicSmokeSelector.WallpaperConnection
176 mService = null;
182 mService = IWallpaperService.Stub.asInterface(service);
186 mService.attach(this, view.getWindowToken(),
196 mService = null;
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetService.java117 private HeadsetService mService; field in class:HeadsetService.BluetoothHeadsetBinder
120 mService = svc;
123 mService = null;
133 if (mService != null && mService.isAvailable()) {
134 return mService;
H A DHeadsetPhoneState.java38 private int mService = HeadsetHalConstants.NETWORK_STATE_NOT_AVAILABLE; field in class:HeadsetPhoneState
92 return mService;
164 Log.d(TAG, "sendDeviceStateChanged. mService="+ mService +
170 new HeadsetDeviceState(mService, mRoam, mSignal, mBatteryCharge));
178 mService = (serviceState.getState() == ServiceState.STATE_IN_SERVICE) ?
272 int mService; field in class:HeadsetDeviceState
278 mService = service;
/packages/apps/Calendar/src/com/android/calendar/
H A DAsyncQueryServiceHelper.java49 protected Class<AsyncQueryService> mService = AsyncQueryService.class; field in class:AsyncQueryServiceHelper
H A DDeleteEventHelper.java93 private AsyncQueryService mService; field in class:DeleteEventHelper
110 mService = new AsyncQueryService(mContext) {
139 mService.startDelete(mService.getNextToken(), null, uri, null, null, Utils.UNDO_DELAY);
211 mService.startQuery(mService.getNextToken(), null, uri, EditEventHelper.EVENT_PROJECTION,
350 mService.startUpdate(mService.getNextToken(), null, uri, values, null, null,
391 mService.startInsert(mService
[all...]
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectVisibleCalendarsFragment.java67 private AsyncQueryService mService; field in class:SelectVisibleCalendarsFragment
81 mService = new AsyncQueryService(activity) {
143 mQueryToken = mService.getNextToken();
144 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION,
153 mUpdateToken = mService.getNextToken();
159 mService.startUpdate(mUpdateToken, null, uri, values, null, null, 0);
165 if (mService != null) {
166 mService.cancelOperation(mQueryToken);
167 mQueryToken = mService.getNextToken();
168 mService
[all...]
/packages/apps/Email/tests/src/com/android/email/service/
H A DAttachmentDownloadServiceTests.java44 private AttachmentDownloadService mService; field in class:AttachmentDownloadServiceTests
71 mService = new AttachmentDownloadService();
72 mService.mContext = mMockContext;
73 mService.addServiceIntentForTest(mAccountId, new Intent(mContext,
76 mService.mAccountManagerStub = mAccountManagerStub;
77 mService.mConnectivityManager = new MockConnectivityManager(mContext, "mock");
78 mDownloadSet = mService.mDownloadSet;
80 new MockDirectory(mService.mContext.getCacheDir().getAbsolutePath());
149 mService.dequeue(att2.mId);
151 assertTrue(mService
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DAbstractSyncAdapter.java58 public EasSyncService mService; field in class:AbstractSyncAdapter
86 mService = service;
96 mService.userLog(strings);
100 mService.mChangeCount++;
219 synchronized (mService.getSynchronizer()) {
220 if (!mService.isStopped()) {
223 mService.userLog("Results: " + result.length);
295 mService.userLog("Try to execute ", ops.size(), " CPO's for " + authority);
302 mService.userLog("Transaction too large; spliting!");
311 mService
[all...]
H A DProvisionParser.java41 private final EasSyncService mService; field in class:ProvisionParser
51 mService = service;
106 mService.mContext.getSystemService(Context.DEVICE_POLICY_SERVICE);
241 StorageManager sm = (StorageManager)mService.mContext.getSystemService(
250 log("Removable: " + volume.getDescription(mService.mContext));
253 log("Not Removable: " + volume.getDescription(mService.mContext));
544 mService.userLog("Policy type: ", policyType);
550 mService.userLog("Policy status: ", getValue());
580 mService.userLog("DeviceInformation status: " + getValue());
597 mService
[all...]
/packages/apps/Nfc/src/com/android/nfc/echoserver/
H A DEchoServer.java74 NfcService mService; field in class:EchoServer
81 mService = NfcService.getInstance();
207 serverSocket = mService.createLlcpServerSocket(DEFAULT_CO_SAP,
294 socket = mService.createLlcpConnectionLessSocket(
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DHeadsetProfile.java41 private BluetoothHeadset mService; field in class:HeadsetProfile
64 mService = (BluetoothHeadset) proxy;
67 List<BluetoothDevice> deviceList = mService.getConnectedDevices();
114 if (mService == null) return false;
115 List<BluetoothDevice> sinks = mService.getConnectedDevices();
118 mService.disconnect(sink);
121 return mService.connect(device);
125 if (mService == null) return false;
126 List<BluetoothDevice> deviceList = mService.getConnectedDevices();
129 if (mService
[all...]
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
H A DLiveWallpaperPreview.java229 IWallpaperService mService; field in class:LiveWallpaperPreview.WallpaperConnection
260 mService = null;
266 mService = IWallpaperService.Stub.asInterface(service);
270 mService.attach(this, view.getWindowToken(),
280 mService = null;
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
H A DA2dpStateMachine.java73 private A2dpService mService; field in class:A2dpStateMachine
120 mService = svc;
637 int priority = mService.getPriority(device);
747 mService.notifyProfileConnectionStateChanged(device, BluetoothProfile.A2DP, state, prevState);
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterProperties.java55 private AdapterService mService; field in class:AdapterProperties
66 mService = service;
84 mService = null;
108 return mService.setAdapterPropertyNative(
138 return mService.setAdapterPropertyNative(
159 return mService.setAdapterPropertyNative(
270 return mService.setAdapterPropertyNative(
315 mService.sendBroadcastAsUser(intent, UserHandle.ALL,
316 mService.BLUETOOTH_PERM);
448 mService
[all...]
H A DAdapterService.java481 private AdapterService mService; field in class:AdapterService.AdapterServiceBinder
484 mService = svc;
487 mService = null;
492 if (mService != null && mService.isAvailable()) {
493 return mService;
/packages/apps/Bluetooth/src/com/android/bluetooth/pan/
H A DPanService.java173 private PanService mService; field in class:PanService.BluetoothPanBinder
175 mService = svc;
178 mService = null;
187 if (mService != null && mService.isAvailable()) {
188 return mService;
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DEmailServiceProxy.java68 private IEmailService mService; field in class:EmailServiceProxy
117 mService = IEmailService.Stub.asInterface(binder);
146 if (mCallback != null) mService.setCallback(mCallback);
147 mService.loadAttachment(attachmentId, background);
175 if (mCallback != null) mService.setCallback(mCallback);
176 mService.startSync(mailboxId, userRequest);
194 if (mCallback != null) mService.setCallback(mCallback);
195 mService.stopSync(mailboxId);
215 if (mCallback != null) mService.setCallback(mCallback);
216 mReturn = mService
[all...]
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DHandoverManager.java81 Messenger mService = null; field in class:HandoverManager
123 mService = new Messenger(service);
129 mService.send(msg);
143 mService.send(msg);
148 mService = null;
306 mService.send(msg);
346 mService.send(msg);
373 mService.send(msg);
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnSettings.java71 private final IConnectivityManager mService = IConnectivityManager.Stub field in class:VpnSettings
345 LegacyVpnInfo info = mService.getLegacyVpnInfo();
370 mService.startLegacyVpn(profile);
379 mService.prepareVpn(VpnConfig.LEGACY_VPN, VpnConfig.LEGACY_VPN);
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DSkbContainer.java70 private InputMethodService mService; field in class:SkbContainer
205 mService = service;
313 ((PinyinIME) mService).responseSoftKeyEvent(sKey);
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/
H A DHidService.java279 private HidService mService; field in class:HidService.BluetoothInputDeviceBinder
281 mService = svc;
285 mService = null;
295 if (mService != null && mService.isAvailable()) {
296 return mService;
/packages/apps/Settings/src/com/android/settings/applications/
H A DRunningProcessesView.java93 ActivityManager.RunningServiceInfo mService; field in class:RunningProcessesView.ActiveItem
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java284 private HealthService mService; field in class:HealthService.BluetoothHealthDeathRecipient
287 mService = service;
293 mService.unregisterAppConfiguration(mConfig);
297 mService = null;
306 private HealthService mService; field in class:HealthService.BluetoothHealthBinder
309 mService = svc;
313 mService = null;
323 if (mService != null && mService.isAvailable()) {
324 return mService;
[all...]
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventHelper.java138 private final AsyncQueryService mService; field in class:EditEventHelper
223 mService = ((AbstractCalendarActivity)context).getAsyncQueryService();
534 mService.startBatch(mService.getNextToken(), null, android.provider.CalendarContract.AUTHORITY, ops,

Completed in 413 milliseconds

123