Searched refs:objs (Results 1 – 18 of 18) sorted by relevance
/build/soong/bpf/ |
D | bpf.go | 70 objs android.Paths member 113 bpf.objs = append(bpf.objs, obj.WithoutRel()) 124 for _, obj := range bpf.objs { 151 return bpf.objs, nil
|
/build/soong/cc/ |
D | kernel_headers.go | 25 func (stub *kernelHeadersDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, objs Object… 31 return stub.libraryDecorator.linkStatic(ctx, flags, deps, objs)
|
D | object.go | 229 flags Flags, deps PathDeps, objs Objects) android.Path { 231 objs = objs.Append(deps.Objs) 236 if len(objs.objFiles) == 1 && String(object.Properties.Linker_script) == "" { 237 outputFile = objs.objFiles[0] 256 transformObjsToObj(ctx, objs.objFiles, builderFlags, output, flags.LdFlagsDeps)
|
D | library.go | 820 …objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Llndk.Symbol_file)… 824 return objs 827 …objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Vendor_public_libr… 831 return objs 839 …objs, versionScript := compileStubLibrary(ctx, flags, String(library.Properties.Stubs.Symbol_file)… 841 return objs 872 objs := library.baseCompiler.compile(ctx, flags, deps) 873 library.reuseObjects = objs 878 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary, 882 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary, [all …]
|
D | binary.go | 340 flags Flags, deps PathDeps, objs Objects) android.Path { 427 linkerDeps = append(linkerDeps, objs.tidyFiles...) 431 transformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs, deps.StaticLibs, 435 objs.coverageFiles = append(objs.coverageFiles, deps.StaticLibObjs.coverageFiles...) 436 objs.coverageFiles = append(objs.coverageFiles, deps.WholeStaticLibObjs.coverageFiles...) 437 binary.coverageOutputFile = transformCoverageFilesToZip(ctx, objs, binary.getStem(ctx))
|
D | ndk_library.go | 267 objs, versionScript := compileStubLibrary(ctx, flags, symbolFile, 273 return objs 290 objs Objects) android.Path { 304 return stub.libraryDecorator.link(ctx, flags, deps, objs)
|
D | ndk_prebuilt.go | 85 deps PathDeps, objs Objects) android.Path { 161 deps PathDeps, objs Objects) android.Path {
|
D | toolchain_library.go | 80 flags Flags, deps PathDeps, objs Objects) android.Path {
|
D | prebuilt.go | 100 flags Flags, deps PathDeps, objs Objects) android.Path { 381 flags Flags, deps PathDeps, objs Objects) android.Path { 425 flags Flags, deps PathDeps, objs Objects) android.Path {
|
D | snapshot_prebuilt.go | 568 func (p *snapshotLibraryDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects… 572 return p.libraryDecorator.link(ctx, flags, deps, objs) 786 func (p *snapshotBinaryDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects)… 881 func (p *snapshotObjectLinker) link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects) an…
|
D | vndk_prebuilt.go | 134 flags Flags, deps PathDeps, objs Objects) android.Path {
|
D | cc_test.go | 213 var objs []string 215 objs = append(objs, o.Base()) 217 android.AssertArrayString(t, "libTest inputs", []string{"foo.o", "bar.o"}, objs) 238 var objs []string 240 objs = append(objs, o.Base()) 242 if len(objs) != 2 || objs[0] != "foo.o" || objs[1] != "bar.o" { 243 t.Errorf("inputs of libTest must be []string{\"foo.o\", \"bar.o\"}, but was %#v.", objs)
|
D | cc.go | 553 link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects) android.Path 1000 return library.objs().coverageFiles 1760 var objs Objects 1762 objs = c.compiler.compile(ctx, flags, deps) 1766 c.kytheFiles = objs.kytheFiles 1770 outputFile := c.linker.link(ctx, flags, deps, objs) 2581 objs := staticAnalogue.ReuseObjects 2582 depPaths.Objs = depPaths.Objs.Append(objs) 2775 staticLib.objs().coverageFiles...) 2777 staticLib.objs().sAbiDumpFiles...)
|
D | compiler.go | 653 objs := compileObjs(ctx, buildFlags, "", srcs, pathDeps, compiler.cFlagsDeps) 659 return objs
|
D | linker.go | 550 flags Flags, deps PathDeps, objs Objects) android.Path {
|
/build/make/core/ |
D | binary.mk | 894 $(call include-depfiles-for-objs, $(cpp_objects)) 916 $(call include-depfiles-for-objs, $(gen_cpp_objects)) 932 $(call include-depfiles-for-objs, $(gen_S_objects)) 984 $(call include-depfiles-for-objs, $(c_objects)) 1005 $(call include-depfiles-for-objs, $(gen_c_objects)) 1022 $(call include-depfiles-for-objs, $(objc_objects)) 1038 $(call include-depfiles-for-objs, $(objcpp_objects)) 1064 $(call include-depfiles-for-objs, $(asm_objects_S))
|
D | definitions.mk | 1527 $$(call include-depfiles-for-objs, $$(o)) 1542 $$(call include-depfiles-for-objs, $$(o)) 1557 $$(call include-depfiles-for-objs, $$(o)) 1694 define create-dummy.o-if-no-objs 1698 define get-dummy.o-if-no-objs 1702 define delete-dummy.o-if-no-objs 1707 create-dummy.o-if-no-objs = 1708 get-dummy.o-if-no-objs = 1709 delete-dummy.o-if-no-objs = 1719 $(call create-dummy.o-if-no-objs,$@.tmp) [all …]
|
/build/soong/bp2build/ |
D | cc_object_conversion_test.go | 130 objs: ["bar"],
|