HomeSort by relevance Sort by last modified time
    Searched defs:getService (Results 1 - 25 of 51) sorted by null

1 2 3

  /frameworks/base/include/binder/
IServiceManager.h 39 virtual sp<IBinder> getService( const String16& name) const = 0;
68 status_t getService(const String16& name, sp<INTERFACE>* outService)
72 *outService = interface_cast<INTERFACE>(sm->getService(name));
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
ServiceManager.java 29 public static IBinder getService(String name) {
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
SecurityAccess.java 48 * Access to Provider.getService(String type)
53 public Provider.Service getService(Provider p, String type);
  /packages/apps/Email/src/com/android/email/mail/store/
ExchangeStore.java 52 protected IEmailService getService() {
ServiceStore.java 36 protected abstract IEmailService getService();
53 IEmailService svc = getService();
72 return getService().autoDiscover(username, password);
  /cts/tests/src/android/app/cts/
MockService.java 29 MockService getService() {
  /frameworks/base/core/java/android/os/
IServiceManager.java 36 public IBinder getService(String name) throws RemoteException;
ServiceManager.java 49 public static IBinder getService(String name) {
55 return getIServiceManager().getService(name);
58 Log.e(TAG, "error in getService", e);
ServiceManagerNative.java 57 IBinder service = getService(name);
115 public IBinder getService(String name) throws RemoteException {
  /frameworks/base/media/libmedia/
mediametadataretriever.cpp 35 const sp<IMediaPlayerService>& MediaMetadataRetriever::getService()
42 binder = sm->getService(String16("media.player"));
62 const sp<IMediaPlayerService>& service(getService());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/
Activator.java 58 public static <T> T getService(Class<T> clazz) {
61 return (ref != null) ? (T) context.getService(ref) : null;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalService.java 58 LocalService getService() {
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
ProviderTest.java 78 p.getService(null, "algorithm");
83 p.getService("type", null);
92 if (p.getService("Type", "AlgoRithM") != s) {
93 fail("Case 1. getService() failed");
96 Provider.Service s1 = p.getService("MessageDigest", "AbC");
98 fail("Case 2. getService() failed");
104 if (s1 == p.getService("MessageDigest", "SHA-1")) {
105 fail("Case 3. getService() failed");
108 if (p.getService("MessageDigest", "SHA1") == null) {
109 fail("Case 4. getService() failed")
    [all...]
  /frameworks/base/core/java/android/app/
NotificationManager.java 76 static public INotificationManager getService()
81 IBinder b = ServiceManager.getService("notification");
120 INotificationManager service = getService();
149 INotificationManager service = getService();
164 INotificationManager service = getService();
StatusBarManager.java 67 private synchronized IStatusBarService getService() {
70 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
84 final IStatusBarService svc = getService();
99 final IStatusBarService svc = getService();
114 final IStatusBarService svc = getService();
126 final IStatusBarService svc = getService();
139 final IStatusBarService svc = getService();
151 final IStatusBarService svc = getService();
PendingIntent.java 35 * {@link #getBroadcast}, {@link #getService}; the returned object can be
62 * {@link #getService}: this
70 * {@link #getService}: if the described PendingIntent does not already
76 * {@link #getService}: if the described PendingIntent already exists,
87 * {@link #getService}: if the described PendingIntent already exists,
324 public static PendingIntent getService(Context context, int requestCode,
438 * {@link #getBroadcast}, or {@link #getService}.
474 * {@link #getBroadcast}, or {@link #getService}.
559 * {@link #getBroadcast}, or {@link #getService} multiple times (even
  /frameworks/base/libs/binder/
IServiceManager.cpp 133 virtual sp<IBinder> getService(const String16& name) const
194 sp<IBinder> b = const_cast<BnServiceManager*>(this)->getService(which);
  /frameworks/base/core/java/android/content/
ClipboardManager.java 77 static private IClipboard getService() {
82 IBinder b = ServiceManager.getService("clipboard");
101 getService().setPrimaryClip(clip);
111 return getService().getPrimaryClip(mContext.getPackageName());
123 return getService().getPrimaryClipDescription();
134 return getService().hasPrimaryClip();
144 getService().addPrimaryClipChangedListener(
158 getService().removePrimaryClipChangedListener(
192 return getService().hasClipboardText();
  /frameworks/base/core/java/android/net/
VpnService.java 118 private static IConnectivityManager getService() {
120 ServiceManager.getService(Context.CONNECTIVITY_SERVICE));
143 if (getService().prepareVpn(context.getPackageName(), null)) {
169 return getService().protectVpn(dup);
472 return getService().establishVpn(mConfig);
  /frameworks/base/nfc-extras/java/com/android/nfc_extras/
NfcAdapterExtras.java 168 INfcAdapterExtras getService() {
  /packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java 51 public static IEmailService getService(Context context, String intentAction,
69 return getService(context, EmailServiceProxy.EXCHANGE_INTENT, callback);
  /packages/apps/Phone/src/com/android/phone/
NetworkQueryService.java 67 INetworkQueryService getService() {
  /external/icu4c/common/
brkiter.cpp 284 getService(void)
318 ICULocaleService *service = getService();
345 ICULocaleService *service = getService();
  /frameworks/base/keystore/java/android/security/
KeyChain.java 295 IKeyChainService keyChainService = keyChainConnection.getService();
326 IKeyChainService keyChainService = keyChainConnection.getService();
396 public IKeyChainService getService() {
  /frameworks/base/test-runner/src/android/test/
ServiceTestCase.java 120 public T getService() {
217 * Note: To be able to use bindService in a test, the service must implement getService()

Completed in 3699 milliseconds

1 2 3