Searched refs:traceFile (Results 1 – 3 of 3) sorted by relevance
/build/blueprint/bootstrap/ |
D | command.go | 41 traceFile string var 61 flag.StringVar(&traceFile, "trace", "", "write trace to file") 93 if traceFile != "" { 94 f, err := os.Create(absolutePath(traceFile))
|
/build/soong/zip/cmd/ |
D | main.go | 143 traceFile := flags.String("trace", "", "write trace to file") 171 if *traceFile != "" { 172 f, err := os.Create(*traceFile)
|
/build/blueprint/microfactory/ |
D | microfactory.go | 642 if traceFile, err := os.OpenFile(tracePath, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666); err == nil { 643 defer traceFile.Close() 645 fmt.Fprintf(traceFile, "%d B %s\n", time.Now().UnixNano()/1000, name) 647 fmt.Fprintf(traceFile, "%d E %s\n", time.Now().UnixNano()/1000, name)
|