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

1 2 3 4 5 6

  /cts/tests/tests/tv/src/android/media/tv/cts/
TvInputInfoTest.java 42 && TextUtils.equals(info1.getServiceInfo().packageName,
43 info2.getServiceInfo().packageName)
44 && TextUtils.equals(info1.getServiceInfo().name, info2.getServiceInfo().name)
62 if (info.getServiceInfo().name.equals(
87 // Test getServiceInfo
88 assertEquals(getContext().getPackageManager().getServiceInfo(componentName, 0).name,
89 mStubInfo.getServiceInfo().name);
108 assertEquals(mStubInfo.getServiceInfo().name, infoFromParcel.getServiceInfo().name)
    [all...]
StubTunerTvInputService.java 49 if (!info.getServiceInfo().name.equals(StubTunerTvInputService.class.getName())) {
72 if (!info.getServiceInfo().name.equals(StubTunerTvInputService.class.getName())) {
  /cts/tests/accessibility/src/android/view/accessibility/cts/
SpeakingAccessibilityService.java 38 final AccessibilityServiceInfo info = getServiceInfo();
VibratingAccessibilityService.java 38 final AccessibilityServiceInfo info = 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/services/core/java/com/android/server/accounts/
IAccountAuthenticatorCache.java 42 RegisteredServicesCache.ServiceInfo<AuthenticatorDescription> getServiceInfo(
  /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/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...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityActivityTestCase.java 54 AccessibilityServiceInfo info = getInstrumentation().getUiAutomation().getServiceInfo();
AccessibilityWindowReportingTest.java 45 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo();
  /cts/tests/tests/content/src/android/content/pm/cts/
ServiceInfoTest.java 39 ServiceInfo serviceInfo = pm.getServiceInfo(componentName, 0);
  /packages/providers/TvProvider/tests/src/com/android/providers/tv/
MockTvProviderContext.java 35 public ServiceInfo getServiceInfo(ComponentName className, int flags) {
  /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();
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 64 AccessibilityServiceInfo getServiceInfo();
  /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/Email/src/com/android/email/activity/setup/
AccountSetupABFragment.java 83 EmailServiceUtils.getServiceInfo(context, mUserProtocol).name;
85 EmailServiceUtils.getServiceInfo(context, mProviderProtocol).name;
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
Utils.java 81 return info.getServiceInfo().name;
90 ServiceInfo si = info.getServiceInfo();
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
MagnificationService.java 142 final AccessibilityServiceInfo info = getServiceInfo();
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
UiAutomationShellWrapper.java 75 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo();
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
VoiceInteractionManagerServiceImpl.java 152 mUser, mContext, this, mInfo.getServiceInfo().applicationInfo.uid, mHandler);
237 int activeUid = mInfo.getServiceInfo().applicationInfo.uid;
246 int activeUid = mInfo.getServiceInfo().applicationInfo.uid;
255 int activeUid = mInfo.getServiceInfo().applicationInfo.uid;
281 mInfo.getServiceInfo().dump(new PrintWriterPrinter(pw), " ");
VoiceInteractionManagerService.java 263 + curInteractorInfo.getServiceInfo().name);
299 recognizerInfo = pm.getServiceInfo(curRecognizer, 0, userHandle);
301 interactorInfo = pm.getServiceInfo(curInteractor, 0, userHandle);
321 setCurInteractor(new ComponentName(curInteractorInfo.getServiceInfo().packageName,
322 curInteractorInfo.getServiceInfo().name), userHandle);
325 new ComponentName(curInteractorInfo.getServiceInfo().packageName,
389 .getServiceInfo(serviceComponent, 0, mCurUser);
438 if (packageName == null || info.getServiceInfo().packageName.equals(
446 foundInfo.getServiceInfo().packageName,
447 foundInfo.getServiceInfo().name
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
TvInputManagerHelper.java 199 && (inputInfo.getServiceInfo().applicationInfo.flags
209 inputInfo.getServiceInfo().applicationInfo.packageName);
259 return info == null ? null : info.getServiceInfo().applicationInfo;
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 78 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo();
  /packages/apps/TV/src/com/android/tv/
SetupPassthroughActivity.java 68 SetupUtils.grantEpgPermission(this, mTvInputInfo.getServiceInfo().packageName);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
SpellCheckersSettings.java 148 getActivity(), sci.getPackageName(), sci.getServiceInfo().applicationInfo);
164 (sci.getServiceInfo().applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;

Completed in 713 milliseconds

1 2 3 4 5 6