Home
last modified time | relevance | path

Searched refs:intentResult (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/pm/parsing/component/
DParsedMainComponentUtils.java114 ParseResult<ParsedIntentInfo> intentResult = ParsedIntentInfoUtils.parseIntentInfo( in parseIntentFilter() local
117 if (intentResult.isError()) { in parseIntentFilter()
118 return input.error(intentResult); in parseIntentFilter()
121 ParsedIntentInfo intent = intentResult.getResult(); in parseIntentFilter()
141 return input.success(intentResult.getResult()); in parseIntentFilter()
DParsedServiceUtils.java134 ParseResult<ParsedIntentInfo> intentResult = ParsedMainComponentUtils in parseService() local
139 parseResult = intentResult; in parseService()
140 if (intentResult.isSuccess()) { in parseService()
141 ParsedIntentInfo intent = intentResult.getResult(); in parseService()
DParsedActivityUtils.java353 ParseResult<ParsedIntentInfo> intentResult = parseIntentFilter(pkg, activity, in parseActivityOrAlias() local
355 if (intentResult.isSuccess()) { in parseActivityOrAlias()
356 ParsedIntentInfo intent = intentResult.getResult(); in parseActivityOrAlias()
379 result = intentResult; in parseActivityOrAlias()
385 ParseResult<ParsedIntentInfo> intentResult = parseIntentFilter(pkg, activity, in parseActivityOrAlias() local
388 if (intentResult.isSuccess()) { in parseActivityOrAlias()
389 ParsedIntentInfo intent = intentResult.getResult(); in parseActivityOrAlias()
394 result = intentResult; in parseActivityOrAlias()
DParsedProviderUtils.java169 ParseResult<ParsedIntentInfo> intentResult = ParsedMainComponentUtils in parseProviderTags() local
174 result = intentResult; in parseProviderTags()
175 if (intentResult.isSuccess()) { in parseProviderTags()
176 ParsedIntentInfo intent = intentResult.getResult(); in parseProviderTags()
/frameworks/base/core/java/android/content/pm/parsing/result/
DParseTypeImpl.java214 public <ResultType> ParseResult<ResultType> error(ParseResult<?> intentResult) {
215 return error(intentResult.getErrorCode(), intentResult.getErrorMessage(),
216 intentResult.getException());