HomeSort by relevance Sort by last modified time
    Searched refs:mBasePath (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 54 private final File mBasePath;
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, name).delete()
    [all...]
  /frameworks/base/tools/aapt/
DirectoryWalker.h 45 String8 mBasePath;
58 mBasePath = path;
60 dir = opendir(mBasePath.string() );
80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name);
  /frameworks/base/tools/aapt/tests/
MockDirectoryWalker.h 25 : mPos(0), mBasePath(path), mData(data) {
27 // mBasePath.string());
34 return path == mBasePath;
80 String8 mBasePath;
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
FileRotatorTest.java 54 private File mBasePath;
67 mBasePath = getContext().getFilesDir();
68 IoUtils.deleteContents(mBasePath);
73 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
75 mBasePath, ANOTHER_PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
91 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
112 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS);
144 mBasePath, PREFIX, MINUTE_IN_MILLIS, DAY_IN_MILLIS);
174 mBasePath, PREFIX, MINUTE_IN_MILLIS, DAY_IN_MILLIS);
207 mBasePath, PREFIX, SECOND_IN_MILLIS, SECOND_IN_MILLIS)
    [all...]

Completed in 86 milliseconds