Home
last modified time | relevance | path

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

/tools/treble/hacksaw/git/
Drepo.go34 listFile, err := os.Open(listPath)
38 defer listFile.Close()
39 scanner := bufio.NewScanner(listFile)
Drepo_test.go37 listFile := path.Join(testCodebaseDir, ".repo/project.list")
38 if err = ioutil.WriteFile(listFile, listContents, os.ModePerm); err != nil {
/tools/metalava/src/main/java/com/android/tools/metalava/
DOptions.kt1807 val listFile = File(file.path.substring(1)) in <lambda>() constant
1808 if (!allowDirs && !listFile.isFile) { in <lambda>()
1809 throw DriverException("$listFile is not a file") in <lambda>()
1811 val contents = Files.asCharSource(listFile, UTF_8).read() in <lambda>()