Searched refs:commands (Results 1 – 14 of 14) sorted by relevance
/build/soong/android/ |
D | rule_builder.go | 29 commands []*RuleBuilderCommand member 92 r.commands = append(r.commands, command) 125 for _, c := range r.commands { 147 for _, c := range r.commands { 179 for _, c := range r.commands { 195 for _, c := range r.commands { 222 var commands []string 223 for _, c := range r.commands { 224 commands = append(commands, string(c.buf)) 226 return commands [all …]
|
/build/kati/ |
D | exec.cc | 98 vector<Command*> commands; in ExecNode() local 99 ce_.Eval(n, &commands); in ExecNode() 100 for (Command* command : commands) { in ExecNode()
|
D | command.cc | 186 void CommandEvaluator::Eval(DepNode* n, vector<Command*>* commands) { in Eval() argument 215 commands->push_back(command); in Eval() 233 commands->swap(output_commands); in Eval() 235 back_inserter(*commands)); in Eval()
|
D | ninja.cc | 173 vector<Command*> commands; member 248 ce_.Eval(node, &nn->commands); in PopulateNinjaNode() 249 nn->rule_id = nn->commands.empty() ? -1 : rule_id_++; in PopulateNinjaNode() 400 const vector<Command*>& commands, in GenShellScript() argument 405 auto command_count = commands.size(); in GenShellScript() 406 for (const Command* c : commands) { in GenShellScript() 482 const vector<Command*>& commands = nn->commands; in EmitNode() local 493 if (!commands.empty()) { in EmitNode() 499 use_local_pool |= GenShellScript(node->output.c_str(), commands, &cmd_buf, in EmitNode()
|
D | command.h | 38 void Eval(DepNode* n, vector<Command*>* commands);
|
D | INTERNALS.md | 42 Currently, kati's main mode is --ninja mode. Instead of executing build commands 44 [ninja](https://github.com/martine/ninja) actually runs commands. There were 240 There is nothing tricky around commands and make directives. A rule statement 326 define variable which can be referenced only from commands in a specified 339 be used even in build commands of prerequisite targets. 350 If you run make for the target *hello*, *CFLAGS* is applied for both commands: 382 optimization only for this function and $(wildcard ...) in commands seem to be 383 evaluated before the evaluation phase for commands. Both C++ kati and Go kati 391 directory tree. Then the find emulator returns results of find commands using 395 The implementations of some IO-related functions in commands are tricky in the [all …]
|
D | README.md | 18 All Android's build commands (m, mmm, mmma, etc.) should just work.
|
/build/soong/docs/ |
D | perf.md | 33 `$(shell)` commands need to be re-executed to determine if their output changed. 59 All the longest commands in this case are all variants of a call to `find`, but 65 There are some optimizations in place for find commands -- if Kati can 68 that the output may change). Many of the common macros produce find commands 152 commands are taking than having extra dependencies, or slowdowns in 158 for build commands to impact unrelated build commands. This is an area we'd
|
/build/blueprint/ |
D | README.md | 7 [Ninja](https://ninja-build.org/) manifest describing the commands that
|
/build/soong/genrule/ |
D | genrule.go | 487 commands := []string{} 514 commands = append(commands, command) 516 fullCommand := strings.Join(commands, " && ")
|
/build/make/target/product/security/ |
D | README | 12 The following commands were used to generate the test key pairs:
|
/build/make/core/ |
D | LINUX_KERNEL_COPYING | 119 c) If the modified program normally reads commands interactively 337 The hypothetical commands `show w' and `show c' should show the appropriate 338 parts of the General Public License. Of course, the commands you use may
|
/build/make/tools/droiddoc/templates-ndk/assets/ |
D | GPL-LICENSE.txt | 103 c) If the modified program normally reads commands interactively
|
/build/make/ |
D | Changes.md | 216 Instead, write the export commands into the rule command lines themselves:
|