Searched defs:service (Results 101 - 114 of 114) sorted by relevance

12345

/packages/apps/Exchange/src/com/android/exchange/
H A DEasSyncService.java52 import com.android.emailcommon.service.EmailServiceConstants;
53 import com.android.emailcommon.service.EmailServiceProxy;
54 import com.android.emailcommon.service.EmailServiceStatus;
55 import com.android.emailcommon.service.PolicyServiceProxy;
176 // Whether or not the sync service is valid (usable)
343 void setupProtocolVersion(EasSyncService service, Header versionHeader) argument
373 service.mProtocolVersion = ourVersion;
374 service.mProtocolVersionDouble = Eas.getProtocolVersionDouble(ourVersion);
375 Account account = service.mAccount;
379 if (service
[all...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DEmailSyncAdapter.java58 import com.android.emailcommon.service.SyncWindow;
132 public EmailSyncAdapter(EasSyncService service) { argument
133 super(service);
260 // Hold on to the parser's value for isLooping() to pass back to the service
/packages/apps/Music/src/com/android/music/
H A DArtistAlbumBrowserActivity.java862 public void onServiceConnected(ComponentName name, IBinder service) { argument
H A DMusicUtils.java179 Log.e("Music", "Failed to bind to service");
196 // presumably there is nobody interested in the service at this point,
208 public void onServiceConnected(ComponentName className, android.os.IBinder service) { argument
209 sService = IMediaPlaybackService.Stub.asInterface(service);
212 mCallback.onServiceConnected(className, service);
H A DMediaPlaybackService.java160 // interval after which we stop the service when idle
363 // If the service was idle, but got killed before it stopped itself, the
443 //Log.i("@@@@ service", "created queue string in " + (System.currentTimeMillis() - start) + " ms");
474 //Log.i("@@@@ service", "saved state in " + (System.currentTimeMillis() - start) + " ms");
493 //Log.i("@@@@ service", "loaded queue: " + q);
554 // - music service is restarted, service restores state, doesn't find
678 // make sure the service will shut down on its own if it was
695 // an in-progress action requesting audio focus ends, so don't stop the service now.
700 // before stopping the service, s
2083 ServiceStub(MediaPlaybackService service) argument
[all...]
H A DTrackBrowserActivity.java191 public void onServiceConnected(ComponentName name, IBinder service) argument
236 // we can't really function without the service, so don't
602 // The service could disappear while the broadcast was in flight,
1097 public NowPlayingCursor(IMediaPlaybackService service, String [] cols) argument
1100 mService = service;
/packages/apps/Settings/src/com/android/settings/applications/
H A DRunningState.java85 // Processes that are hosting a service we are interested in, organized
87 // service restarts, and during a restart there will still be a process
92 // Processes that are hosting a service we are interested in, organized
102 // there is no service running in them.
431 // service info.
453 boolean updateService(Context context, ActivityManager.RunningServiceInfo service) { argument
457 ServiceItem si = mServices.get(service.service);
461 si.mRunningService = service;
464 service
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DVideoEditorProject.java17 package com.android.videoeditor.service;
H A DApiService.java17 package com.android.videoeditor.service;
81 * VideoEditor service API
216 logd("Stop runnable: Stopping service");
439 * Checks if the service is busy modifying the timeline. While
1346 * Start the service (if it is not running) with the specified Intent
3068 // This operation is for the service internal use only
4006 * change and stops this service if there are no more pending intents.
4027 // Start a timer which will stop the service if the queue of
4029 // This prevents the service from starting & stopping too often.
4031 logd("completeRequest: Stopping service i
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetStateMachine.java232 if (DBG) Log.d(TAG,"Unbinding service...");
1030 public void onServiceConnected(ComponentName className, IBinder service) {
1032 mPhoneProxy = IBluetoothHeadsetPhone.Stub.asInterface(service);
2075 private native boolean cindResponseNative(int service, int numActive, int numHeld, argument
/packages/apps/Email/emailsync/src/com/android/emailsync/
H A DSyncManager.java59 import com.android.emailcommon.service.AccountServiceProxy;
60 import com.android.emailcommon.service.EmailServiceProxy;
61 import com.android.emailcommon.service.IEmailServiceCallback.Stub;
62 import com.android.emailcommon.service.PolicyServiceProxy;
168 // We synchronize on this for all actions affecting the service and error maps
255 * Returns an appropriate sync service for the passed in mailbox
258 * @return a service that will sync the Mailbox
273 * Returns the AccountManager type (e.g. com.android.exchange) for this sync service
278 * Returns the intent used for this sync service
288 * Called when a sync service ha
1213 startServiceThread(AbstractSyncService service) argument
[all...]
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DPinyinIME.java146 * Connection used to bind the decoding service.
912 // Bind service
1486 * Connection used for binding to the Pinyin decoding service.
1489 public void onServiceConnected(ComponentName name, IBinder service) { argument
1491 .asInterface(service);
1578 * Remote Pinyin-to-Hanzi decoding engine service.
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java70 * to start a service). We the next best thing, which is copy the relevant code
141 public ComponentName startService(Intent service) { argument
146 public boolean stopService(Intent service) { argument
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java446 Log.i(TAG, "Starting NFC service");
664 * us to service software I2C too slow for firmware download
1136 public boolean isDefaultServiceForCategory(int userId, ComponentName service, argument
1143 return mAidCache.isDefaultServiceForCategory(userId, category, service);
1147 public boolean isDefaultServiceForAid(int userId, ComponentName service, String aid) argument
1154 return mAidCache.isDefaultServiceForAid(userId, service, aid);
1158 public boolean setDefaultServiceForCategory(int userId, ComponentName service, argument
1165 return mAidCache.setDefaultServiceForCategory(userId, service, category);
1169 public boolean setDefaultForNextTap(int userId, ComponentName service) argument
1176 mHostEmulationManager.setDefaultForNextTap(service);
[all...]

Completed in 219 milliseconds

12345