Searched defs:subPath (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/app/
H A DDownloadManager.java486 * @param subPath the path within the external directory, including the
493 String subPath) {
508 setDestinationFromBase(file, subPath);
521 * @param subPath the path within the external directory, including the
527 public Request setDestinationInExternalPublicDir(String dirType, String subPath) { argument
542 setDestinationFromBase(file, subPath);
546 private void setDestinationFromBase(File base, String subPath) { argument
547 if (subPath == null) {
548 throw new NullPointerException("subPath cannot be null");
550 mDestinationUri = Uri.withAppendedPath(Uri.fromFile(base), subPath);
492 setDestinationInExternalFilesDir(Context context, String dirType, String subPath) argument
[all...]

Completed in 68 milliseconds