Home
last modified time | relevance | path

Searched refs:filePath (Results 1 – 4 of 4) sorted by relevance

/system/apex/tests/src/com/android/tests/apex/host/
DApexCompressionTests.java287 String filePath = Paths.get(DECOMPRESSED_DIR_PATH, in testUnusedDecompressedApexIsCleanedUp_HigherVersion() local
289 mHostUtils.waitForFileDeleted(filePath, Duration.ofSeconds(15)); in testUnusedDecompressedApexIsCleanedUp_HigherVersion()
306 String filePath = Paths.get(DECOMPRESSED_DIR_PATH, in testUnusedDecompressedApexIsCleanedUp_SameVersion() local
308 mHostUtils.waitForFileDeleted(filePath, Duration.ofSeconds(15)); in testUnusedDecompressedApexIsCleanedUp_SameVersion()
381 String filePath = Paths.get(DECOMPRESSED_DIR_PATH, in testCapexToApexSwitch() local
383 mHostUtils.waitForFileDeleted(filePath, Duration.ofSeconds(15)); in testCapexToApexSwitch()
435 String filePath = Paths.get(DECOMPRESSED_DIR_PATH, in testOrphanedDecompressedApexInActiveDirIsIgnored() local
437 mHostUtils.waitForFileDeleted(filePath, Duration.ofSeconds(15)); in testOrphanedDecompressedApexInActiveDirIsIgnored()
/system/timezone/input_tools/android/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
DTzLookupGeneratorTest.java1185 Path filePath = Paths.get(fileName); in checkFileExists() local
1186 assertTrue("File " + filePath + " unexpectedly missing", Files.exists(filePath)); in checkFileExists()
1187 return filePath; in checkFileExists()
1191 Path filePath = Paths.get(fileName); in assertFileMissing() local
1192 assertFalse("File " + filePath + " unexpectedly exists", Files.exists(filePath)); in assertFileMissing()
/system/hardware/interfaces/suspend/1.0/default/
DSystemSuspend.cpp280 string filePath = android::base::StringPrintf("/proc/self/fd/%d", fd); in reopenFileUsingFd() local
282 unique_fd tempFd{TEMP_FAILURE_RETRY(open(filePath.c_str(), permission))}; in reopenFileUsingFd()
284 PLOG(ERROR) << "SystemSuspend: Error opening file, using path: " << filePath; in reopenFileUsingFd()
/system/timezone/distro/installer/src/test/com/android/timezone/distro/installer/
DTimeZoneDistroInstallerTest.java720 public FileVisitResult visitFile(Path filePath, BasicFileAttributes attrs) in assertFileCount()
722 paths.add(filePath); in assertFileCount()