Searched refs:findDocumentPath (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/provider/
H A DDocumentsProviderTest.java63 final Path actual = DocumentsContract.findDocumentPath(client, docUri);
76 final Path actual = DocumentsContract.findDocumentPath(mResolver, docUri);
87 assertNull(DocumentsContract.findDocumentPath(mResolver, docUri));
97 Path path = DocumentsContract.findDocumentPath(mResolver, docUri);
110 Path path = DocumentsContract.findDocumentPath(mResolver, docUri);
H A DTestDocumentsProvider.java88 public Path findDocumentPath(@Nullable String parentDocumentId, String documentId) { method in class:TestDocumentsProvider
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
H A DMtpDocumentsProviderTest.java861 final Path path = mProvider.findDocumentPath(null, "15");
875 final Path path = mProvider.findDocumentPath("3", "18");
890 final Path path = mProvider.findDocumentPath(null, "16");
906 final Path path = mProvider.findDocumentPath("4", "19");
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java465 public Path findDocumentPath(@Nullable String parentDocId, String childDocId) method in class:ExternalStorageProvider
475 return new Path(parentDocId == null ? root.rootId : null, findDocumentPath(parent, child));
/frameworks/base/core/java/android/provider/
H A DDocumentsContract.java719 public static final String METHOD_FIND_DOCUMENT_PATH = "android:findDocumentPath";
1499 * @see DocumentsProvider#findDocumentPath(String, String)
1501 public static Path findDocumentPath(ContentResolver resolver, Uri treeUri) method in class:DocumentsContract
1508 return findDocumentPath(client, treeUri);
1531 * @see DocumentsProvider#findDocumentPath(String, String)
1535 public static Path findDocumentPath(ContentProviderClient client, Uri uri) method in class:DocumentsContract
H A DDocumentsProvider.java387 public Path findDocumentPath(@Nullable String parentDocumentId, String childDocumentId) method in class:DocumentsProvider
389 throw new UnsupportedOperationException("findDocumentPath not supported.");
1123 Path path = findDocumentPath(parentDocumentId, documentId);
/frameworks/base/core/java/com/android/internal/content/
H A DFileSystemProvider.java158 protected final List<String> findDocumentPath(File parent, File doc) method in class:FileSystemProvider
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpDocumentsProvider.java493 public Path findDocumentPath(String parentDocumentId, String childDocumentId) method in class:MtpDocumentsProvider

Completed in 82 milliseconds