Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/pm/pkg/component/
DParsedMainComponentUtils.java119 ParseResult<ParsedIntentInfoImpl> intentResult = ParsedIntentInfoUtils.parseIntentInfo( in parseIntentFilter() local
122 if (intentResult.isError()) { in parseIntentFilter()
123 return input.error(intentResult); in parseIntentFilter()
126 ParsedIntentInfo intent = intentResult.getResult(); in parseIntentFilter()
147 return input.success(intentResult.getResult()); in parseIntentFilter()
DParsedServiceUtils.java148 ParseResult<ParsedIntentInfoImpl> intentResult = ParsedMainComponentUtils in parseService() local
153 parseResult = intentResult; in parseService()
154 if (intentResult.isSuccess()) { in parseService()
155 ParsedIntentInfoImpl intent = intentResult.getResult(); in parseService()
DParsedActivityUtils.java402 ParseResult<ParsedIntentInfoImpl> intentResult = parseIntentFilter(pkg, activity, in parseActivityOrAlias() local
404 if (intentResult.isSuccess()) { in parseActivityOrAlias()
405 ParsedIntentInfoImpl intentInfo = intentResult.getResult(); in parseActivityOrAlias()
429 result = intentResult; in parseActivityOrAlias()
435 ParseResult<ParsedIntentInfoImpl> intentResult = parseIntentFilter(pkg, activity, in parseActivityOrAlias() local
438 if (intentResult.isSuccess()) { in parseActivityOrAlias()
439 ParsedIntentInfoImpl intent = intentResult.getResult(); in parseActivityOrAlias()
444 result = intentResult; in parseActivityOrAlias()
DParsedProviderUtils.java185 ParseResult<ParsedIntentInfoImpl> intentResult = ParsedMainComponentUtils in parseProviderTags() local
190 result = intentResult; in parseProviderTags()
191 if (intentResult.isSuccess()) { in parseProviderTags()
192 ParsedIntentInfoImpl intent = intentResult.getResult(); in parseProviderTags()
/frameworks/base/core/java/android/content/pm/parsing/result/
DParseTypeImpl.java212 public <ResultType> ParseResult<ResultType> error(ParseResult<?> intentResult) {
213 return error(intentResult.getErrorCode(), intentResult.getErrorMessage(),
214 intentResult.getException());