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.java859 final Path path = mProvider.findDocumentPath(null, "15");
873 final Path path = mProvider.findDocumentPath("3", "18");
888 final Path path = mProvider.findDocumentPath(null, "16");
904 final Path path = mProvider.findDocumentPath("4", "19");
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java419 public Path findDocumentPath(@Nullable String parentDocId, String childDocId) method in class:ExternalStorageProvider
429 return new Path(parentDocId == null ? root.rootId : null, findDocumentPath(parent, child));
/frameworks/base/core/java/android/provider/
H A DDocumentsContract.java706 public static final String METHOD_FIND_DOCUMENT_PATH = "android:findDocumentPath";
1391 * @see DocumentsProvider#findDocumentPath(String, String)
1393 public static Path findDocumentPath(ContentResolver resolver, Uri treeUri) method in class:DocumentsContract
1400 return findDocumentPath(client, treeUri);
1423 * @see DocumentsProvider#findDocumentPath(String, String)
1427 public static Path findDocumentPath(ContentProviderClient client, Uri uri) method in class:DocumentsContract
H A DDocumentsProvider.java388 public Path findDocumentPath(@Nullable String parentDocumentId, String childDocumentId) method in class:DocumentsProvider
390 throw new UnsupportedOperationException("findDocumentPath not supported.");
1116 Path path = findDocumentPath(parentDocumentId, documentId);
/frameworks/base/core/java/com/android/internal/content/
H A DFileSystemProvider.java101 protected final List<String> findDocumentPath(File parent, File doc) method in class:FileSystemProvider
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpDocumentsProvider.java489 public Path findDocumentPath(String parentDocumentId, String childDocumentId) method in class:MtpDocumentsProvider

Completed in 211 milliseconds