Searched refs:basePath (Results 1 - 6 of 6) sorted by path

/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java424 String basePath = null;
432 basePath = getFilesDir().getCanonicalPath();
434 basePath = getDatabasePath("foo").getParentFile().getCanonicalPath();
436 basePath = new File(getApplicationInfo().dataDir).getCanonicalPath();
438 basePath = getSharedPrefsFile("foo").getParentFile().getCanonicalPath();
440 basePath = getCacheDir().getCanonicalPath();
447 if (basePath != null) {
448 File outFile = new File(basePath, path);
/frameworks/base/core/java/com/android/internal/util/
H A DFileRotator.java91 * @param basePath Directory under which all files will be placed.
98 public FileRotator(File basePath, String prefix, long rotateAgeMillis, long deleteAgeMillis) { argument
99 mBasePath = Preconditions.checkNotNull(basePath);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java964 final File basePath = new File(mStatsDir, "netstats");
966 assertTrue(basePath.list().length > 0);
968 assertTrue(basePath.list().length == 0);
/frameworks/base/tools/aapt/
H A DFileFinder.cpp41 bool SystemFileFinder::findFiles(String8 basePath, Vector<String8>& extensions, argument
45 // Scan the directory pointed to by basePath
47 if (!dw->openDir(basePath)) {
60 String8 fullPath = basePath.appendPathCopy(entryName);
H A DFileFinder.h25 virtual bool findFiles(String8 basePath, Vector<String8>& extensions,
56 virtual bool findFiles(String8 basePath, Vector<String8>& extensions,
/frameworks/base/tools/aapt/tests/
H A DMockFileFinder.h28 * path matching basePath.
32 * to the basePath.
35 virtual bool findFiles(String8 basePath, Vector<String8>& extensions, argument
39 const KeyedVector<String8,time_t>* payload(&mFiles.valueFor(basePath));

Completed in 7085 milliseconds