Home | History | Annotate | Download | only in app

Lines Matching defs:subPath

465          * @param subPath the path within the external directory, including the destination filename
469 String subPath) {
470 setDestinationFromBase(context.getExternalFilesDir(dirType), subPath);
484 * @param subPath the path within the external directory, including the destination filename
487 public Request setDestinationInExternalPublicDir(String dirType, String subPath) {
500 setDestinationFromBase(file, subPath);
504 private void setDestinationFromBase(File base, String subPath) {
505 if (subPath == null) {
506 throw new NullPointerException("subPath cannot be null");
508 mDestinationUri = Uri.withAppendedPath(Uri.fromFile(base), subPath);