Searched refs:outFile (Results 1 – 7 of 7) sorted by relevance
/build/soong/cc/ |
D | gen.go | 69 outFile android.ModuleGenPath, props *YaccProperties) (headerFiles android.Paths) { 79 rule.Command().Text(sedCmd).Input(outFile) 87 locationHeader := outFile.InSameDir(ctx, "location.hh") 93 positionHeader := outFile.InSameDir(ctx, "position.hh") 106 Flag("-o").Output(outFile).Input(yaccFile) 112 outFile, depFile android.ModuleGenPath, aidlFlags string) android.Paths { argument 142 Output(outFile). 156 func genLex(ctx android.ModuleContext, lexFile android.Path, outFile android.ModuleGenPath) { 160 Output: outFile,
|
/build/blueprint/bootstrap/ |
D | command.go | 35 outFile string var 54 flag.StringVar(&outFile, "o", "build.ninja", "the Ninja file to output") 188 if err := ioutil.WriteFile(absolutePath(outFile), []byte(nil), outFilePermissions); err != nil { 194 …f, err = os.OpenFile(absolutePath(outFile), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, outFilePermissions) 217 err := deptools.WriteDepFile(absolutePath(depFile), outFile, deps)
|
/build/soong/android/ |
D | rule_builder_test.go | 524 outFile := filepath.Join(buildDir, ".intermediates", "foo", "foo") 526 "cp bar "+outFile, 527 outFile, outFile+".d", true, nil) 531 outFile := filepath.Join(outDir, "foo_sbox") 539 cmd, outFile, depFile, false, []string{sbox}) 542 outFile := filepath.Join(buildDir, "baz") 544 "cp bar "+outFile, outFile, outFile+".d", true, nil)
|
D | makevars.go | 186 outFile := absolutePath(PathForOutput(ctx, 218 if err := pathtools.WriteFileIfChanged(outFile, outBytes, 0666); err != nil {
|
/build/soong/cmd/extract_apks/ |
D | main.go | 421 func (apkSet *ApkSet) extractAndCopySingle(selected SelectionResult, outFile *os.File) error { 430 _, err := io.Copy(outFile, inputReader) 536 outFile, err := os.Create(*outputFile) 540 defer outFile.Close() 543 err = apkSet.extractAndCopySingle(sel, outFile) 545 writer := zip.NewWriter(outFile)
|
/build/soong/rust/ |
D | androidmk.go | 162 outFile := sourceProvider.outputFile 164 ret.OutputFile = android.OptionalPathForPath(outFile) 166 _, file := filepath.Split(outFile.String())
|
/build/soong/genrule/ |
D | genrule.go | 624 outFile := android.GenPathWithExt(ctx, "gensrcs", in, String(properties.Output_extension)) 625 sandboxOutfile := pathToSandboxOut(outFile, genDir) 629 copyTo = append(copyTo, outFile) 630 outFile = shardFile 633 outFiles = append(outFiles, outFile)
|