Home
last modified time | relevance | path

Searched refs:objs (Results 1 – 19 of 19) sorted by relevance

/build/soong/cc/
Dobject.go80 flags Flags, deps PathDeps, objs Objects) android.Path {
82 objs = objs.Append(deps.Objs)
87 if len(objs.objFiles) == 1 {
88 outputFile = objs.objFiles[0]
107 TransformObjsToObj(ctx, objs.objFiles, builderFlags, output)
Dlibrary.go424objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Stubs.Symbol_file)…
426 return objs
457 objs := library.baseCompiler.compile(ctx, flags, deps)
458 library.reuseObjects = objs
463 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary,
467 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary,
471 return objs
477 objs() Objects methodSpec
609 flags Flags, deps PathDeps, objs Objects) android.Path {
612 library.objects = library.objects.Append(objs)
[all …]
Dvendor_public_library.go99objs, versionScript := compileStubLibrary(ctx, flags, String(stub.Properties.Symbol_file), "curren…
101 return objs
117 objs Objects) android.Path {
122 return stub.libraryDecorator.link(ctx, flags, deps, objs)
Dkernel_headers.go25 func (stub *kernelHeadersDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, objs Object…
32 return stub.libraryDecorator.linkStatic(ctx, flags, deps, objs)
Dbinary.go302 flags Flags, deps PathDeps, objs Objects) android.Path {
382 linkerDeps = append(linkerDeps, objs.tidyFiles...)
385 TransformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs, deps.StaticLibs,
389 objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...)
390 objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...)
391 …binary.coverageOutputFile = TransformCoverageFilesToLib(ctx, objs, builderFlags, binary.getStem(ct…
Dllndk_library.go89objs, versionScript := compileStubLibrary(ctx, flags, String(stub.Properties.Symbol_file), vndk_ve…
91 return objs
132 objs Objects) android.Path {
161 return stub.libraryDecorator.link(ctx, flags, deps, objs)
Dndk_library.go306 objs, versionScript := compileStubLibrary(ctx, flags, String(c.properties.Symbol_file),
309 return objs
326 objs Objects) android.Path {
338 return stub.libraryDecorator.link(ctx, flags, deps, objs)
Dcc_test.go222 var objs []string
224 objs = append(objs, o.Base())
226 if len(objs) != 2 || objs[0] != "foo.o" || objs[1] != "bar.o" {
227 t.Errorf("inputs of libTest must be []string{\"foo.o\", \"bar.o\"}, but was %#v.", objs)
249 var objs []string
251 objs = append(objs, o.Base())
253 if len(objs) != 2 || objs[0] != "foo.o" || objs[1] != "bar.o" {
254 t.Errorf("inputs of libTest must be []string{\"foo.o\", \"bar.o\"}, but was %#v.", objs)
Dndk_prebuilt.go79 deps PathDeps, objs Objects) android.Path {
134 deps PathDeps, objs Objects) android.Path {
Dtoolchain_library.go73 flags Flags, deps PathDeps, objs Objects) android.Path {
Dprebuilt.go85 flags Flags, deps PathDeps, objs Objects) android.Path {
188 flags Flags, deps PathDeps, objs Objects) android.Path {
Dvndk_prebuilt.go124 flags Flags, deps PathDeps, objs Objects) android.Path {
Dcc.go309 link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects) android.Path
978 var objs Objects
980 objs = c.compiler.compile(ctx, flags, deps)
987 outputFile := c.linker.link(ctx, flags, deps, objs)
1613 objs, flags, deps := l.reuseObjs()
1614 depPaths.Objs = depPaths.Objs.Append(objs)
1738 depPaths.WholeStaticLibObjs = depPaths.WholeStaticLibObjs.Append(staticLib.objs())
1763 staticLib.objs().coverageFiles...)
1765 staticLib.objs().sAbiDumpFiles...)
Dcompiler.go572 objs := compileObjs(ctx, buildFlags, "", srcs, pathDeps, compiler.cFlagsDeps)
578 return objs
Dlinker.go469 flags Flags, deps PathDeps, objs Objects) android.Path {
/build/kati/testcase/
Dstatic_pattern.mk3 objs := $(patsubst ./%.cc,./%.o,$(srcs))
7 out: $(objs)
9 $(objs): ./%.o: ./%.cc
/build/soong/bpf/
Dbpf.go57 objs android.Paths member
94 bpf.objs = append(bpf.objs, obj.WithoutRel())
105 for _, obj := range bpf.objs {
128 return bpf.objs
/build/make/core/
Dbinary.mk881 $(call include-depfiles-for-objs, $(cpp_objects))
902 $(call include-depfiles-for-objs, $(gen_cpp_objects))
917 $(call include-depfiles-for-objs, $(gen_S_objects))
966 $(call include-depfiles-for-objs, $(c_objects))
986 $(call include-depfiles-for-objs, $(gen_c_objects))
1002 $(call include-depfiles-for-objs, $(objc_objects))
1017 $(call include-depfiles-for-objs, $(objcpp_objects))
1041 $(call include-depfiles-for-objs, $(asm_objects_S))
Ddefinitions.mk1371 $$(call include-depfiles-for-objs, $$(o))
1384 $$(call include-depfiles-for-objs, $$(o))
1397 $$(call include-depfiles-for-objs, $$(o))
1615 define create-dummy.o-if-no-objs
1619 define get-dummy.o-if-no-objs
1623 define delete-dummy.o-if-no-objs
1628 create-dummy.o-if-no-objs =
1629 get-dummy.o-if-no-objs =
1630 delete-dummy.o-if-no-objs =
1640 $(call create-dummy.o-if-no-objs,$@.tmp)
[all …]