Searched refs:rawCommand (Results 1 – 2 of 2) sorted by relevance
/build/soong/cmd/sbox/ |
D | sbox.go | 215 func createCommandScript(rawCommand, scriptPath, scriptPathInSandbox string) (*exec.Cmd, error) { argument 216 err := os.WriteFile(scriptPath, []byte(rawCommand), 0644) 219 rawCommand[0:40], scriptPath) 244 rawCommand := command.GetCommand() 245 if rawCommand == "" { 275 if strings.Contains(rawCommand, depFilePlaceholder) { 277 rawCommand = strings.Replace(rawCommand, depFilePlaceholder, depFile, -1) 280 if strings.Contains(rawCommand, sandboxDirPlaceholder) { 281 rawCommand = strings.Replace(rawCommand, sandboxDirPlaceholder, pathToTempDirInSbox, -1) 294 cmd, err := createCommandScript(rawCommand, scriptPath, scriptPathInSandbox) [all …]
|
/build/soong/genrule/ |
D | genrule.go | 185 type taskFunc func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []generate… 452 rawCommand, err := android.Expand(task.cmd, func(name string) (string, error) { 522 g.rawCommands = append(g.rawCommands, rawCommand) 524 cmd.Text(rawCommand) 664 …taskGenerator := func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []gene… 711 command, err := android.Expand(rawCommand, func(name string) (string, error) { 778 …taskGenerator := func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []gene… 787 cmd: rawCommand,
|