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

1 2 3

  /frameworks/base/services/core/java/com/android/server/accounts/
IAccountAuthenticatorCache.java 42 RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> getServiceInfo(
  /external/jmdns/src/javax/jmdns/
JmDNS.java 185 public abstract ServiceInfo getServiceInfo(String type, String name);
200 public abstract ServiceInfo getServiceInfo(String type, String name, long timeout);
215 public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent);
232 public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent, long timeout);
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionServiceInfo.java 52 this(pm, pm.getServiceInfo(comp, PackageManager.GET_META_DATA));
63 ServiceInfo si = AppGlobals.getPackageManager().getServiceInfo(comp,
159 public ServiceInfo getServiceInfo() {
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/
RcsPresenceInfo.java 197 return getServiceInfo(serviceType, ServiceInfoKey.STATE, ServiceState.UNKNOWN);
211 return getServiceInfo(serviceType, ServiceInfoKey.SERVICE_CONTACT, "");
225 return getServiceInfo(serviceType, ServiceInfoKey.TIMESTAMP, 0L);
308 private String getServiceInfo(int serviceType, String infoKey, String defaultValue) {
317 private long getServiceInfo(int serviceType, String infoKey, long defaultValue) {
326 private int getServiceInfo(int serviceType, String infoType, int defaultValue) {
334 private Uri getServiceInfo(int serviceType, String infoKey, Uri defaultValue) {
  /frameworks/base/core/java/android/app/
WallpaperInfo.java 195 public ServiceInfo getServiceInfo() {
UiAutomation.java 396 public final AccessibilityServiceInfo getServiceInfo() {
406 return connection.getServiceInfo();
    [all...]
ApplicationPackageManager.java 404 public ServiceInfo getServiceInfo(ComponentName className, int flags)
407 ServiceInfo si = mPM.getServiceInfo(className, flags, mContext.getUserId());
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 340 public ServiceInfo getServiceInfo() {
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerInfo.java 232 public ServiceInfo getServiceInfo() {
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 99 assertService(resolveInfo.serviceInfo, mInputMethodInfo.getServiceInfo());
173 assertService(mInputMethodInfo.getServiceInfo(), imi.getServiceInfo());
210 if ((imi.getServiceInfo().applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
250 final ServiceInfo serviceInfo = imi.getServiceInfo();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/pm/
StubPackageManager.java 80 public ServiceInfo getServiceInfo(ComponentName className, int flags) throws NameNotFoundException {
  /cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationTest.java 58 AccessibilityServiceInfo info = uiAutomation.getServiceInfo();
272 uiAutomation.getServiceInfo();
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 203 * @see javax.jmdns.impl.DNSRecord#getServiceInfo(boolean)
206 public ServiceInfo getServiceInfo(boolean persistent) {
208 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent);
248 * @see javax.jmdns.impl.DNSRecord#getServiceInfo(boolean)
251 public ServiceInfo getServiceInfo(boolean persistent) {
253 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent);
390 * @see javax.jmdns.impl.DNSRecord#getServiceInfo(boolean)
393 public ServiceInfo getServiceInfo(boolean persistent) {
405 ServiceInfo info = this.getServiceInfo(false);
490 * @see javax.jmdns.impl.DNSRecord#getServiceInfo(boolean
    [all...]
JmDNSImpl.java 710 public ServiceInfo getServiceInfo(String type, String name) {
711 return this.getServiceInfo(type, name, false, DNSConstants.SERVICE_INFO_TIMEOUT);
718 public ServiceInfo getServiceInfo(String type, String name, long timeout) {
719 return this.getServiceInfo(type, name, false, timeout);
726 public ServiceInfo getServiceInfo(String type, String name, boolean persistent) {
727 return this.getServiceInfo(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT);
734 public ServiceInfo getServiceInfo(String type, String name, boolean persistent, long timeout) {
761 ServiceInfoImpl cachedInfo = (ServiceInfoImpl) ((DNSRecord) pointerEntry).getServiceInfo(persistent);
770 ServiceInfo cachedServiceEntryInfo = ((DNSRecord) serviceEntry).getServiceInfo(persistent);
779 ServiceInfo cachedAddressInfo = ((DNSRecord) addressEntry).getServiceInfo(persistent)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
ComponentTest.java 349 mPackageManager.getServiceInfo(DISABLED_SERVICE_COMPONENTNAME, 0);
356 mPackageManager.getServiceInfo(DISABLED_SERVICE_COMPONENTNAME,
369 mPackageManager.getServiceInfo(ENABLED_SERVICE_COMPONENTNAME, 0);
    [all...]
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityService.java     [all...]
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 74 * {@link #getServiceInfo} method.
322 public ServiceInfo<V> getServiceInfo(V type, int userId) {
  /frameworks/base/media/java/android/media/tv/
TvInputInfo.java 316 public ServiceInfo getServiceInfo() {
    [all...]
  /frameworks/base/services/core/java/com/android/server/dreams/
DreamManagerService.java 273 final ServiceInfo serviceInfo = getServiceInfo(component);
341 private ServiceInfo getServiceInfo(ComponentName name) {
343 return name != null ? mContext.getPackageManager().getServiceInfo(name,
  /frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
AccountManagerServiceTest.java 316 public ServiceInfo<AuthenticatorDescription> getServiceInfo(
  /frameworks/base/test-runner/src/android/test/mock/
MockPackageManager.java 180 public ServiceInfo getServiceInfo(ComponentName className, int flags)
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgePackageManager.java 165 public ServiceInfo getServiceInfo(ComponentName component, int flags)
  /packages/apps/Email/provider_src/com/android/email/service/
EmailServiceUtils.java 90 EmailServiceInfo info = getServiceInfo(context, protocol);
102 EmailServiceInfo info = getServiceInfo(context, protocol);
156 EmailServiceInfo info = getServiceInfo(context, protocol);
233 info = getServiceInfo(context, protocol);
254 return getServiceInfo(context, protocol);
257 public static EmailServiceInfo getServiceInfo(Context context, String protocol) {
323 final EmailServiceInfo info = getServiceInfo(context, hostAuth.mProtocol);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeHelper.java 282 ServiceInfo owner = getServiceInfo(automaticZenRule.getOwner());
415 private ServiceInfo getServiceInfo(ComponentName owner) {
    [all...]
  /frameworks/base/services/midi/java/com/android/server/midi/
MidiService.java 380 public ServiceInfo getServiceInfo() {
742 ServiceInfo serviceInfo = device.getServiceInfo();
    [all...]

Completed in 553 milliseconds

1 2 3