Lines Matching refs:w
220 Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
222 fmt.Fprintln(w)
223 fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
224 fmt.Fprintln(w)
237 fmt.Fprintln(w, "include $(CLEAR_VARS)", " # bpf.bpf.obj")
238 fmt.Fprintln(w, "LOCAL_MODULE := ", objName)
239 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", obj.String())
240 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", obj.Base())
241 fmt.Fprintln(w, "LOCAL_MODULE_CLASS := ETC")
242 fmt.Fprintln(w, localModulePath)
245 extra(w, nil)
247 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
248 fmt.Fprintln(w)
250 fmt.Fprintln(w, "include $(CLEAR_VARS)", " # bpf.bpf")
251 fmt.Fprintln(w, "LOCAL_MODULE := ", name)
252 android.AndroidMkEmitAssignList(w, "LOCAL_REQUIRED_MODULES", names)
253 fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)")