Home
last modified time | relevance | path

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

/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/backends/
DJavaFileBackend.java151 public Iterable<Uri> children(Uri parentUri) throws IOException { in children() argument
152 File parent = FileUriAdapter.instance().toFile(parentUri); in children()
154 throw new FileNotFoundException(String.format("%s is not a directory", parentUri)); in children()
159 String.format("Not a directory or I/O error (unexpected): %s", parentUri)); in children()
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/
DSynchronousFileStorage.java299 public Iterable<Uri> children(Uri parentUri) throws IOException { in children() argument
300 Backend backend = getBackend(parentUri.getScheme()); in children()
301 List<Transform> enabledTransforms = getEnabledTransforms(parentUri); in children()
303 String encodedFragment = parentUri.getEncodedFragment(); in children()
304 for (Uri child : backend.children(stripFragment(parentUri))) { in children()
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/spi/
DForwardingBackend.java121 public Iterable<Uri> children(Uri parentUri) throws IOException { in children() argument
123 for (Uri child : delegate().children(rewriteUri(parentUri))) { in children()
DBackend.java169 default Iterable<Uri> children(Uri parentUri) throws IOException { in children() argument
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/common/testing/
DFakeFileBackend.java240 public Iterable<Uri> children(Uri parentUri) throws IOException { in children() argument
242 return delegate.children(parentUri); in children()