Home
last modified time | relevance | path

Searched defs:DepNode (Results 1 – 5 of 5) sorted by relevance

/build/kati/
Ddep.h32 struct DepNode { struct
37 vector<DepNode*> deps; argument
38 vector<DepNode*> order_onlys; argument
39 vector<DepNode*> parents; argument
61 vector<DepNode*>* nodes); argument
Ddep.go27 type DepNode struct { struct
28 Output string
29 Cmds []string
30 Deps []*DepNode
31 OrderOnlys []*DepNode
32 Parents []*DepNode
33 HasRule bool
34 IsPhony bool
35 ActualInputs []string
36 TargetSpecificVars Vars
[all …]
Dquery.go22 func showDeps(w io.Writer, n *DepNode, indent int, seen map[string]int) {
43 func showNode(w io.Writer, n *DepNode) {
67 func handleNodeQuery(w io.Writer, q string, nodes []*DepNode) {
Devalcmd.go290 func createRunners(ctx *execContext, n *DepNode) ([]runner, bool, error) {
345 func evalCommands(nodes []*DepNode, vars Vars) error {
Ddep.cc263 DepNode::DepNode(Symbol o, bool p, bool r) in DepNode() function in DepNode