Home | History | Annotate | Download | only in backup

Lines Matching defs:basePath

520         String basePath = null;
528 basePath = getFilesDir().getCanonicalPath();
530 basePath = getDatabasePath("foo").getParentFile().getCanonicalPath();
532 basePath = new File(getApplicationInfo().dataDir).getCanonicalPath();
534 basePath = getSharedPrefsFile("foo").getParentFile().getCanonicalPath();
536 basePath = getCacheDir().getCanonicalPath();
542 basePath = getExternalFilesDir(null).getCanonicalPath();
547 basePath = getNoBackupFilesDir().getCanonicalPath();
554 if (basePath != null) {
556 File outFile = new File(basePath, path);
558 if (outPath.startsWith(basePath + File.separatorChar)) {