Lines Matching refs:fmt
124 cfgFile := filepath.Join(os.Getenv("TOP"), configDir, fmt.Sprintf("%s.%s", bc, jsonSuffix))
128 …fmt.Fprintf(os.Stderr, "\033[33mWARNING:\033[0m failed to open config file %s: %s\n", cfgFile, err…
134 return fmt.Errorf("env vars config file: %s did not parse correctly: %s", cfgFile, err.Error())
160 fmt.Fprintf(os.Stderr, "Error parsing `soong` args: %s.\n", err)
209 fmt.Fprintf(os.Stderr, "failed to parse env config files: %v", err)
308 fmt.Fprintf(ctx.Writer, "usage: %s --dumpvar-mode [--abs] <VAR>\n\n", os.Args[0])
309 …fmt.Fprintln(ctx.Writer, "In dumpvar mode, print the value of the legacy make variable VAR to stdo…
310 fmt.Fprintln(ctx.Writer, "")
312 …fmt.Fprintln(ctx.Writer, "'report_config' is a special case that prints the human-readable config …
313 fmt.Fprintln(ctx.Writer, "from the beginning of the build.")
314 fmt.Fprintln(ctx.Writer, "")
332 fmt.Println(build.Banner(varData))
348 fmt.Println(strings.Join(res, " "))
350 fmt.Println(varData[varName])
358 fmt.Fprintf(ctx.Writer, "usage: %s --dumpvars-mode [--vars=\"VAR VAR ...\"]\n\n", os.Args[0])
359 …fmt.Fprintln(ctx.Writer, "In dumpvars mode, dump the values of one or more legacy make variables, …
360 …fmt.Fprintln(ctx.Writer, "shell syntax. The resulting output may be sourced directly into a shell …
361 fmt.Fprintln(ctx.Writer, "set corresponding shell variables.")
362 fmt.Fprintln(ctx.Writer, "")
364 fmt.Fprintln(ctx.Writer, "'report_config' is a special case that dumps a variable containing the")
365 fmt.Fprintln(ctx.Writer, "human-readable config banner from the beginning of the build.")
366 fmt.Fprintln(ctx.Writer, "")
405 fmt.Printf("%sreport_config='%s'\n", *varPrefix, build.Banner(varData))
407 fmt.Printf("%s%s='%s'\n", *varPrefix, name, varData[name])
419 fmt.Printf("%s%s='%s'\n", *absVarPrefix, name, strings.Join(res, " "))
441 …fmt.Fprintf(ctx.Writer, "usage: %s --build-mode --dir=<path> <build action> [<build arg 1> <build …
442 fmt.Fprintln(ctx.Writer, "In build mode, build the set of modules based on the specified build")
443 fmt.Fprintln(ctx.Writer, "action. The --dir flag is required to determine what is needed to")
444 fmt.Fprintln(ctx.Writer, "build in the source tree based on the build action. See below for")
445 fmt.Fprintln(ctx.Writer, "the list of acceptable build action flags.")
446 fmt.Fprintln(ctx.Writer, "")
521 fmt.Fprintln(writer, "! The argument `showcommands` is no longer supported.")
522 …fmt.Fprintln(writer, "! Instead, the verbose log is always written to a compressed file in the out…
523 fmt.Fprintln(writer, "!")
524 fmt.Fprintf(writer, "! gzip -cd %s/verbose.log.gz | less -R\n", logsDir)
525 fmt.Fprintln(writer, "!")
526 fmt.Fprintln(writer, "! Older versions are saved in verbose.log.#.gz files")
527 fmt.Fprintln(writer, "")
537 fmt.Fprintln(writer, "! The variable `ONE_SHOT_MAKEFILE` is obsolete.")
538 fmt.Fprintln(writer, "!")
539 …fmt.Fprintln(writer, "! If you're using `mm`, you'll need to run `source build/envsetup.sh` to upd…
540 fmt.Fprintln(writer, "!")
541 …fmt.Fprintln(writer, "! Otherwise, either specify a module name with m, or use mma / MODULES-IN-..…
542 fmt.Fprintln(writer, "")
553 return nil, nil, fmt.Errorf("Too few arguments: %q", args)
563 return nil, nil, fmt.Errorf("Command not found: %q", args)