Home
last modified time | relevance | path

Searched refs:parentDir (Results 1 – 3 of 3) sorted by relevance

/system/timezone/distro/core/src/main/com/android/timezone/distro/
DFileUtils.java41 public static File createSubFile(File parentDir, String name) throws IOException { in createSubFile() argument
44 File subFile = new File(parentDir, name).getCanonicalFile(); in createSubFile()
45 if (!subFile.getPath().startsWith(parentDir.getCanonicalPath())) { in createSubFile()
46 throw new IOException(name + " must exist beneath " + parentDir + in createSubFile()
/system/timezone/distro/core/src/test/com/android/timezone/distro/
DFileUtilsTest.java310 private static void assertCreateSubFileThrows(File parentDir, String name) { in assertCreateSubFileThrows() argument
312 FileUtils.createSubFile(parentDir, name); in assertCreateSubFileThrows()
353 private File createDir(File parentDir, String name) { in createDir() argument
354 File dir = new File(parentDir, name); in createDir()
/system/timezone/tzdatacheck/
Dtzdatacheck.cpp154 std::string parentDir = dirname(cMutableDirName); in getParentDir() local
156 return parentDir; in getParentDir()