Home
last modified time | relevance | path

Searched refs:BuildPath (Results 1 – 8 of 8) sorted by relevance

/tools/treble/build/treble_build/local/
Dninja_test.go73 res *app.BuildPath
77 res []*app.BuildPath
113 res: &app.BuildPath{Target: "test", Dependency: "dependency",
118 res: []*app.BuildPath{
119 …&app.BuildPath{Target: "test", Dependency: "dependency", Paths: []string{"test", "mid1", "mid2", "…
120 …&app.BuildPath{Target: "test", Dependency: "dependency", Paths: []string{"test", "mid4", "dependen…
Dninja.go111 func parsePath(target string, dependency string, data *bytes.Buffer) (*app.BuildPath, error) {
112 out := &app.BuildPath{Target: target, Dependency: dependency, Paths: []string{}}
119 func parsePaths(target string, dependency string, data *bytes.Buffer) ([]*app.BuildPath, error) {
120 out := []*app.BuildPath{}
124 out = append(out, &app.BuildPath{Target: target, Dependency: dependency, Paths: path})
273 func (cli *ninjaCli) Path(ctx context.Context, target string, dependency string) (*app.BuildPath, e…
282 func (cli *ninjaCli) Paths(ctx context.Context, target string, dependency string) ([]*app.BuildPath
/tools/treble/build/treble_build/report/
Ddependencies.go27 Path(ctx context.Context, target string, dependency string) (*app.BuildPath, error)
28 Paths(ctx context.Context, target string, dependency string) ([]*app.BuildPath, error)
Dreport_test.go33 paths map[string]map[string]*app.BuildPath
34 multipaths map[string]map[string][]*app.BuildPath
77 func (r *reportTest) Path(ctx context.Context, target string, dependency string) (*app.BuildPath, e…
81 func (r *reportTest) Paths(ctx context.Context, target string, dependency string) ([]*app.BuildPath
Drun.go173 …x context.Context, rtx *Context, target string, singlePath bool, files []string) []*app.BuildPath {
174 out := []*app.BuildPath{}
Dbuild.go38 path *app.BuildPath
/tools/treble/build/treble_build/app/
Dbuild.go36 type BuildPath struct { struct
/tools/treble/build/treble_build/cmd/
Dmain.go111 Paths []*app.BuildPath `json:"build_paths,omitempty"`