Home
last modified time | relevance | path

Searched refs:mBasePath (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DFileRotator.java57 private final File mBasePath; field in FileRotator
102 mBasePath = Objects.requireNonNull(basePath); in FileRotator()
108 mBasePath.mkdirs(); in FileRotator()
111 for (String name : mBasePath.list()) { in FileRotator()
143 for (String name : mBasePath.list()) { in deleteAll()
146 new File(mBasePath, name).delete(); in deleteAll()
158 for (String name : mBasePath.list()) { in dumpAll()
222 for (String name : mBasePath.list()) { in rewriteAll()
305 for (String name : mBasePath.list()) { in readMatching()
326 for (String name : mBasePath.list()) { in getActiveName()
[all …]
/aosp14/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DFileRotatorTest.java53 private File mBasePath; field in FileRotatorTest
66 mBasePath = getContext().getFilesDir(); in setUp()
67 FsUtil.deleteContents(mBasePath); in setUp()
72 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS); in testEmpty()
90 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS); in testCombine()
111 mBasePath, PREFIX, DAY_IN_MILLIS, WEEK_IN_MILLIS); in testRotate()
143 mBasePath, PREFIX, MINUTE_IN_MILLIS, DAY_IN_MILLIS); in testDelete()
282 mBasePath, PREFIX, DAY_IN_MILLIS, YEAR_IN_MILLIS); in testClockRollingBackwards()
331 mBasePath, PREFIX, HOUR_IN_MILLIS, DAY_IN_MILLIS); in testFuzz()
352 Log.d(TAG, Arrays.toString(mBasePath.list())); in testFuzz()
[all …]
/aosp14/frameworks/base/tools/aapt/
H A DDirectoryWalker.h45 String8 mBasePath; variable
58 mBasePath = path; in openDir()
60 dir = opendir(mBasePath.string() ); in openDir()
80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name); in nextEntry()
/aosp14/frameworks/base/tools/aapt/tests/
H A DMockDirectoryWalker.h25 : mPos(0), mBasePath(path), mData(data) { in StringDirectoryWalker()
34 return path == mBasePath; in openDir()
80 String8 mBasePath; variable
/aosp14/frameworks/base/core/java/com/android/internal/content/om/
H A DOverlayManagerImpl.java79 private Path mBasePath; field in OverlayManagerImpl
177 mBasePath = baseFile.toPath(); in ensureBaseDir()
245 final Path frroPath = mBasePath.resolve(overlayName + FRRO_EXTENSION); in registerFabricatedOverlay()
246 final Path idmapPath = mBasePath.resolve(overlayName + IDMAP_EXTENSION); in registerFabricatedOverlay()
278 final Path frroPath = mBasePath.resolve(overlayName + FRRO_EXTENSION); in unregisterFabricatedOverlay()
279 final Path idmapPath = mBasePath.resolve(overlayName + IDMAP_EXTENSION); in unregisterFabricatedOverlay()
338 final File base = mBasePath.toFile(); in getOverlayInfosForTarget()