Searched refs:rawCommand (Results 1 – 2 of 2) sorted by relevance
/build/soong/cmd/sbox/ |
D | sbox.go | 35 rawCommand string var 45 flag.StringVar(&rawCommand, "c", "", 106 if rawCommand == "" { 161 …rawCommand = strings.Replace(rawCommand, "__SBOX_DEPFILE__", filepath.Join(tempDir, sandboxedDepfi… 179 if strings.Contains(rawCommand, "__SBOX_OUT_DIR__") { 180 rawCommand = strings.Replace(rawCommand, "__SBOX_OUT_DIR__", tempDir, -1) 183 if strings.Contains(rawCommand, "__SBOX_OUT_FILES__") { 191 rawCommand = strings.Replace(rawCommand, "__SBOX_OUT_FILES__", pathsText, -1) 202 commandDescription := rawCommand 204 cmd := exec.Command("bash", "-c", rawCommand)
|
/build/soong/genrule/ |
D | genrule.go | 148 type taskFunc func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []generate… 318 rawCommand, err := android.ExpandNinjaEscaped(task.cmd, func(name string) (string, bool, error) { 404 rawCommand = "'" + strings.Replace(rawCommand, "'", `'\''`, -1) + "'" 405 g.rawCommands = append(g.rawCommands, rawCommand) 415 rawCommand, depfilePlaceholder) 600 …taskGenerator := func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []gene… 636 command, err := android.Expand(rawCommand, func(name string) (string, error) { 695 …taskGenerator := func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []gene… 708 cmd: rawCommand,
|