Home | History | Annotate | Download | only in backup

Lines Matching defs:basePath

482         String basePath = null;
490 basePath = getFilesDir().getCanonicalPath();
492 basePath = getDatabasePath("foo").getParentFile().getCanonicalPath();
494 basePath = new File(getApplicationInfo().dataDir).getCanonicalPath();
496 basePath = getSharedPrefsFile("foo").getParentFile().getCanonicalPath();
498 basePath = getCacheDir().getCanonicalPath();
504 basePath = getExternalFilesDir(null).getCanonicalPath();
514 if (basePath != null) {
516 File outFile = new File(basePath, path);
518 if (outPath.startsWith(basePath + File.separatorChar)) {