Searched refs:rawCommand (Results 1 – 2 of 2) sorted by relevance
/build/soong/cmd/sbox/ |
D | sbox.go | 212 func createCommandScript(rawCommand, scriptPath, scriptPathInSandbox string) (*exec.Cmd, error) { argument 213 err := os.WriteFile(scriptPath, []byte(rawCommand), 0644) 216 rawCommand[0:40], scriptPath) 241 rawCommand := command.GetCommand() 242 if rawCommand == "" { 272 if strings.Contains(rawCommand, depFilePlaceholder) { 274 rawCommand = strings.Replace(rawCommand, depFilePlaceholder, depFile, -1) 277 if strings.Contains(rawCommand, sandboxDirPlaceholder) { 278 rawCommand = strings.Replace(rawCommand, sandboxDirPlaceholder, pathToTempDirInSbox, -1) 291 cmd, err := createCommandScript(rawCommand, scriptPath, scriptPathInSandbox) [all …]
|
/build/soong/genrule/ |
D | genrule.go | 192 type taskFunc func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []generate… 451 rawCommand, err := android.Expand(task.cmd, func(name string) (string, error) { 530 g.rawCommands = append(g.rawCommands, rawCommand) 532 cmd.Text(rawCommand) 678 …taskGenerator := func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []gene… 726 command, err := android.Expand(rawCommand, func(name string) (string, error) { 806 …taskGenerator := func(ctx android.ModuleContext, rawCommand string, srcFiles android.Paths) []gene… 821 cmd: rawCommand,
|