• Home
  • Raw
  • Download

Lines Matching refs:fmt

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