HomeSort by relevance Sort by last modified time
    Searched refs:service (Results 351 - 375 of 910) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/app/
WallpaperInfo.java 36 import android.service.wallpaper.WallpaperService;
44 * This class is used to specify meta information of a wallpaper service.
50 * The Service that implements this wallpaper component.
79 * @param service The ResolveInfo returned from the package manager about
82 public WallpaperInfo(Context context, ResolveInfo service)
84 mService = service;
85 ServiceInfo si = service.serviceInfo;
161 * Return the class name of the service component that implements
169 * Return the raw information about the Service implementing this
177 * Return the component of the service that implements this wallpaper
    [all...]
  /frameworks/base/core/java/android/content/
BroadcastReceiver.java 182 * <p>In particular, you may <i>not</i> show a dialog or bind to a service from
186 * send a command to the service.
206 * a {@link android.app.Service} in conjunction with a BroadcastReceiver to keep
467 * to interact with a service that is already running, you can use
504 * Provide a binder to an already-running service. This method is synchronous
505 * and will not start the target service if it is not present, so it is safe
509 * @param service The Intent indicating the service you wish to use. See {@link
512 public IBinder peekService(Context myContext, Intent service) {
516 service.setAllowFds(false)
    [all...]
  /frameworks/base/core/java/android/server/
BluetoothInputProfileHandler.java 37 * All functions are called by BluetoothService, as Bluetooth Service
38 * is the Service handler for the HID profile.
50 private BluetoothInputProfileHandler(Context context, BluetoothService service) {
52 mBluetoothService = service;
59 BluetoothService service) {
60 if (sInstance == null) sInstance = new BluetoothInputProfileHandler(context, service);
  /frameworks/base/core/java/android/service/dreams/
DreamManagerService.java 1 package android.service.dreams;
134 Slog.w(TAG, "unable to bind service: " + componentName);
151 public void onServiceConnected(ComponentName name, IBinder service) {
152 if (DEBUG) Slog.v(TAG, "connected to dream: " + name + " binder=" + service + " thread=" + Thread.currentThread().getId());
154 mCurrentDream = IDreamService.Stub.asInterface(service);
165 if (DEBUG) Slog.v(TAG, "disconnected: " + name + " service: " + mCurrentDream);
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityManager.java 40 * System level service that serves as an event dispatch for {@link AccessibilityEvent}s,
45 * events implement and register an accessibility service which extends
140 IAccessibilityManager service = IAccessibilityManager.Stub.asInterface(iBinder); local
141 sInstance = new AccessibilityManager(context, service);
151 * @param service An interface to the backing service.
155 public AccessibilityManager(Context context, IAccessibilityManager service) {
157 mService = service;
191 * the centralized accessibility manager service.
221 // it is possible that this manager is in the same process as the service bu
    [all...]
  /frameworks/base/core/java/android/webkit/
UrlInterceptRegistry.java 132 CacheResult result = handler.service(url, headers);
  /frameworks/base/core/tests/coretests/src/android/webkit/
UrlInterceptRegistryTest.java 47 public CacheResult service(String url, Map<String, String> headers) { method in class:UrlInterceptRegistryTest.MockUrlInterceptHandler
  /frameworks/base/services/java/com/android/server/am/
ConnectionRecord.java 25 * Description of a single binding to a service.
28 final AppBindRecord binding; // The application/service binding.
68 sb.append(binding.service.shortName);
  /frameworks/native/include/binder/
IServiceManager.h 36 * Retrieve an existing service, blocking for a few seconds
42 * Retrieve an existing service, non-blocking.
47 * Register a service.
50 const sp<IBinder>& service,
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 59 Set<Provider.Service> services = provider.getServices();
63 for (Provider.Service service : services) {
64 String type = service.getType();
65 String algorithm = service.getAlgorithm().toUpperCase();
66 String className = service.getClassName();
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
LegacyPolicySet.java 16 package com.android.emailcommon.service;
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 17 package com.android.email.service;
22 import android.app.Service;
44 import com.android.emailcommon.service.EmailServiceProxy;
45 import com.android.emailcommon.service.EmailServiceStatus;
46 import com.android.emailcommon.service.IEmailServiceCallback;
59 public class AttachmentDownloadService extends Service implements Runnable {
152 * stalled, as determined by the timing of the most recent service callback
413 // If our service instance is gone, just leave
512 * @param statusCode the EmailServiceStatus code returned by the Service
711 // TODO: We should have some more data-driven way of determining the service intent
758 AttachmentDownloadService service = sRunningService; local
771 AttachmentDownloadService service = sRunningService; local
784 AttachmentDownloadService service = sRunningService; local
792 AttachmentDownloadService service = sRunningService; local
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MockFolder.java 19 import com.android.emailcommon.service.SearchParams;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java 17 package com.android.exchange.service;
30 * The service that really handles broadcast intents on a worker thread.
32 * We make it a service, because:
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java 19 import android.app.Service;
36 public class KeyChainServiceTest extends Service {
49 @Override public void onServiceConnected(ComponentName name, IBinder service) {
51 mSupport = IKeyChainServiceTestSupport.Stub.asInterface(service);
64 @Override public void onServiceConnected(ComponentName name, IBinder service) {
66 mService = IKeyChainService.Stub.asInterface(service);
194 Log.d(TAG, "test_KeyChainService bind service");
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 73 // Processes that are hosting a service we are interested in, organized
75 // service restarts, and during a restart there will still be a process
80 // Processes that are hosting a service we are interested in, organized
90 // there is no service running in them.
333 // service info.
354 ActivityManager.RunningServiceInfo service) {
358 ServiceItem si = mServices.get(service.service);
362 si.mRunningService = service;
364 si.mServiceInfo = pm.getServiceInfo(service.service, 0)
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayTitleTemplatePicker.java 25 import com.android.videoeditor.service.MovieOverlay;
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
IntentPool.java 17 package com.android.videoeditor.service;
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java 90 * Context passed to the provider and the service. Allows most methods to pass through to the
140 public ComponentName startService(Intent service) {
141 if (service.getComponent().getClassName().equals(DownloadService.class.getName())) {
143 return service.getComponent();
145 throw new UnsupportedOperationException("Unexpected service: " + service);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 51 * The Service that implements this input method component.
86 * @param service The ResolveInfo returned from the package manager about
89 public InputMethodInfo(Context context, ResolveInfo service)
91 this(context, service, null);
98 * @param service The ResolveInfo returned from the package manager about
103 public InputMethodInfo(Context context, ResolveInfo service,
106 mService = service;
107 ServiceInfo si = service.serviceInfo;
253 * Return the class name of the service component that implements
261 * Return the raw information about the Service implementing thi
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
AppWindowToken.java 106 mAnimator = service.mAnimator;
190 Message m = service.mH.obtainMessage(
192 service.mH.sendMessage(m);
201 Message m = service.mH.obtainMessage(
206 service.mH.sendMessage(m);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 85 public AbstractSyncAdapter(EasSyncService service) {
86 mService = service;
87 mMailbox = service.mMailbox;
88 mContext = service.mContext;
89 mAccount = service.mAccount;
213 * We apply the batch of CPO's here. We synchronize on the service to avoid thread-nasties,
214 * and we just return quickly if the service has already been stopped.
  /external/chromium/chrome/browser/themes/
theme_service.cc 322 ExtensionService* service = profile_->GetExtensionService();
323 if (!service)
327 const ExtensionList* extensions = service->extensions();
335 service->UninstallExtension(remove_list[i], false, NULL);
578 ExtensionService* service = profile_->GetExtensionService(); local
579 if (service) {
581 service->GetExtensionById(current_id, false);
600 NotificationService* service = NotificationService::current(); local
601 service->Notify(NotificationType::BROWSER_THEME_CHANGED,
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 177 * Value type that describes a Service. The information within can be used
178 * to bind to the service.
263 Log.w(TAG, "Unable to load service info " + resolveInfo.toString());
268 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
270 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
292 changes.append(" New service added: ").append(info).append("\n");
300 changes.append(" Existing service (nop): ").append(info).append("\n");
306 changes.append(" System service replacing existing: ").append(info)
309 changes.append(" Existing service replacing a removed service: "
438 V service = mSerializerAndParser.createFromXml(parser); local
    [all...]
  /external/quake/quake/src/WinQuake/
mplpc.cpp 32 short service; // service # requested member in struct:__anon11970
374 FARPOKL(&(lpc->service), 0);
390 FARPOKL(&p->service, LPC_SOCKBIND);
427 FARPOKL(&p->service, LPC_SOCKCLOSE);
508 FARPOKL(&p->service, LPC_SOCKGETSOCKNAME);
550 FARPOKL(&p->service,LPC_SOCKGETHOSTNAME);
598 FARPOKL(&p->service, LPC_SOCKGETHOSTBYNAME);
637 FARPOKL(&p->service, LPC_SOCKGETHOSTBYADDR);
680 FARPOKL(&p->service, LPC_SOCKSOCKET);
    [all...]

Completed in 721 milliseconds

<<11121314151617181920>>