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

  /frameworks/base/core/tests/coretests/src/android/provider/
DocumentsProviderTest.java 63 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);
TestDocumentsProvider.java 88 public Path findDocumentPath(@Nullable String parentDocumentId, String documentId) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DocumentsAccess.java 50 @Nullable Path findDocumentPath(Uri uri) throws RemoteException;
123 public Path findDocumentPath(Uri docUri) throws RemoteException {
127 return DocumentsContract.findDocumentPath(client, docUri);
LoadDocStackTask.java 75 final Path path = mDocs.findDocumentPath(docUri);
79 Log.i(TAG, "Remote provider doesn't support findDocumentPath.");
Metrics.java 445 * support {@link DocumentsProvider#findDocumentPath(String, String)}
706 final Path path = DocumentsContract.findDocumentPath(client, docUri);
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestDocumentsAccess.java 87 public Path findDocumentPath(Uri docUri) throws RemoteException {
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
MtpDocumentsProviderTest.java     [all...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 465 public Path findDocumentPath(@Nullable String parentDocId, String childDocId)
475 return new Path(parentDocId == null ? root.rootId : null, findDocumentPath(parent, child));
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 134 public Path findDocumentPath(@Nullable String parentDocId, String docId) throws FileNotFoundException {
148 return new Path(rootId, findDocumentPath(parent, doc));
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 719 public static final String METHOD_FIND_DOCUMENT_PATH = "android:findDocumentPath";
    [all...]
DocumentsProvider.java 387 public Path findDocumentPath(@Nullable String parentDocumentId, String childDocumentId)
389 throw new UnsupportedOperationException("findDocumentPath not supported.");
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTest.java 500 Path path = DocumentsContract.findDocumentPath(resolver, dirPic);
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 300 public Path findDocumentPath(String parentDocumentId, String documentId)
  /frameworks/base/core/java/com/android/internal/content/
FileSystemProvider.java 158 protected final List<String> findDocumentPath(File parent, File doc)
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDocumentsProvider.java 493 public Path findDocumentPath(String parentDocumentId, String childDocumentId)
    [all...]

Completed in 409 milliseconds