Home
last modified time | relevance | path

Searched refs:fileContexts (Results 1 – 3 of 3) sorted by relevance

/build/soong/apex/
Dbuilder.go258 var fileContexts android.Path
260fileContexts = android.PathForSource(ctx, "system/sepolicy/apex", ctx.ModuleName()+"-file_contexts…
262 fileContexts = android.PathForModuleSrc(ctx, *a.properties.File_contexts)
265 …if matched, err := path.Match("system/sepolicy/**/*", fileContexts.String()); err != nil || !match…
266 ctx.PropertyErrorf("file_contexts", "should be under system/sepolicy, but %q", fileContexts)
269 if !android.ExistentPathForSource(ctx, fileContexts.String()).Valid() {
270 ctx.PropertyErrorf("file_contexts", "cannot find file_contexts file: %q", fileContexts.String())
281 rule.Command().Text("cat").Input(fileContexts).Text(">>").Output(output)
296 …"awk").Text(`'/object_r/{printf("` + apexPath + `%s\n", $0)}'`).Input(fileContexts).Text(">").Outp…
579 fileContexts := a.buildFileContexts(ctx)
[all …]
Dandroidmk.go307 fmt.Fprintln(w, "LOCAL_FILE_CONTEXTS :=", a.fileContexts)
Dapex.go376 fileContexts android.WritablePath member