Searched refs:mBasePath (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
H A DFileRotator.java54 private final File mBasePath; field in class:FileRotator
99 mBasePath = Preconditions.checkNotNull(basePath);
105 mBasePath.mkdirs();
108 for (String name : mBasePath.list()) {
114 final File backupFile = new File(mBasePath, name);
116 mBasePath, name.substring(0, name.length() - SUFFIX_BACKUP.length()));
124 final File noBackupFile = new File(mBasePath, name);
126 mBasePath, name.substring(0, name.length() - SUFFIX_NO_BACKUP.length()));
140 for (String name : mBasePath.list()) {
143 new File(mBasePath, nam
[all...]
/frameworks/base/tools/aapt/
H A DDirectoryWalker.h45 String8 mBasePath; member in class:DirectoryWalker
58 mBasePath = path;
60 dir = opendir(mBasePath.string() );
80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name);
/frameworks/base/tools/aapt/tests/
H A DMockDirectoryWalker.h25 : mPos(0), mBasePath(path), mData(data) {
27 // mBasePath.string());
34 return path == mBasePath;
80 String8 mBasePath; member in class:StringDirectoryWalker
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DFileRotatorTest.java56 private File mBasePath; field in class:FileRotatorTest
69 mBasePath = getContext().getFilesDir();
70 IoUtils.deleteContents(mBasePath);
75 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
77 mBasePath, ANOTHER_PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
93 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
114 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
146 mBasePath, PREFIX, MINUTE_IN_MILLIS, DAY_IN_MILLIS);
176 mBasePath, PREFIX, MINUTE_IN_MILLIS, DAY_IN_MILLIS);
209 mBasePath, PREFI
[all...]

Completed in 2274 milliseconds