HomeSort by relevance Sort by last modified time
    Searched refs:appUri (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/provider/
Applications.java 84 * @param appUri A URI of the form
90 public static ComponentName uriToComponentName(Uri appUri) {
91 if (appUri == null) return null;
92 if (!ContentResolver.SCHEME_CONTENT.equals(appUri.getScheme())) return null;
93 if (!AUTHORITY.equals(appUri.getAuthority())) return null;
94 List<String> pathSegments = appUri.getPathSegments();
  /packages/apps/Nfc/src/com/android/nfc/
P2pLinkManager.java 332 NdefRecord appUri = NdefRecord.createUri(Uri.parse(
335 return new NdefMessage(new NdefRecord[] { appUri, appRecord });

Completed in 156 milliseconds