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

1 2 3

  /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/services/java/com/android/server/accounts/
IAccountAuthenticatorCache.java 42 RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> getServiceInfo(
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 56 AccessibilityServiceInfo getServiceInfo();
AccessibilityService.java 492 public final AccessibilityServiceInfo getServiceInfo() {
497 return connection.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...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityActivityTestCase.java 53 AccessibilityServiceInfo info = getInstrumentation().getUiAutomation().getServiceInfo();
AccessibilityWindowQueryTest.java 74 AccessibilityServiceInfo info = getInstrumentation().getUiAutomation().getServiceInfo();
119 AccessibilityServiceInfo info = getInstrumentation().getUiAutomation().getServiceInfo();
396 AccessibilityServiceInfo info = getInstrumentation().getUiAutomation().getServiceInfo();
417 AccessibilityServiceInfo info = getInstrumentation().getUiAutomation().getServiceInfo();
  /cts/tests/tests/content/src/android/content/pm/cts/
ServiceInfoTest.java 39 ServiceInfo serviceInfo = pm.getServiceInfo(componentName, 0);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
MetaDataTest.java 126 ServiceInfo si = mContext.getPackageManager().getServiceInfo(
131 si = mContext.getPackageManager().getServiceInfo(cn, 0);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
SpellCheckersSettings.java 142 scp.getSpellCheckerInfo().getServiceInfo().applicationInfo.loadLabel(
157 return (sci.getServiceInfo().applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
InputMethodPreference.java 230 mImi.getPackageName(), mImi.getServiceInfo().applicationInfo);
287 imi.getServiceInfo().applicationInfo.loadLabel(
InputMethodAndSubtypeEnabler.java 197 selImi.getServiceInfo().applicationInfo.loadLabel(getPackageManager())));
265 imi.getPackageName(), imi.getServiceInfo().applicationInfo);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 100 assertService(resolveInfo.serviceInfo, mInputMethodInfo.getServiceInfo());
173 assertService(mInputMethodInfo.getServiceInfo(), imi.getServiceInfo());
205 if ((imi.getServiceInfo().applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/
UiAutomationShellWrapper.java 75 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo();
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 78 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo();
  /frameworks/uiautomator/src/com/android/uiautomator/core/
UiAutomatorBridge.java 78 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo();
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupType.java 118 final EmailServiceInfo info = EmailServiceUtils.getServiceInfo(this, protocol);
127 final EmailServiceInfo info = EmailServiceUtils.getServiceInfo(this, recvAuth.mProtocol);
AccountSetupIncoming.java 69 mServiceInfo = EmailServiceUtils.getServiceInfo(this, hostAuth.mProtocol);
  /packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java 83 EmailServiceInfo info = getServiceInfo(context, protocol);
95 EmailServiceInfo info = getServiceInfo(context, protocol);
149 EmailServiceInfo info = getServiceInfo(context, protocol);
224 info = getServiceInfo(context, protocol);
245 return getServiceInfo(context, protocol);
248 public static EmailServiceInfo getServiceInfo(Context context, String protocol) {
295 final EmailServiceInfo info = getServiceInfo(context, hostAuthRecv.mProtocol);
    [all...]
  /development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 111 imi.getServiceInfo().applicationInfo));
  /frameworks/base/services/java/com/android/server/
RecognitionManagerService.java 96 info = mIPm.getServiceInfo(comp, 0, userHandle);
  /frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 105 imi.getServiceInfo().applicationInfo));
  /frameworks/base/core/java/android/app/
UiAutomation.java 304 public final AccessibilityServiceInfo getServiceInfo() {
314 return connection.getServiceInfo();
WallpaperInfo.java 172 public ServiceInfo getServiceInfo() {

Completed in 950 milliseconds

1 2 3