Home
last modified time | relevance | path

Searched refs:sharedLibs (Results 1 – 14 of 14) sorted by relevance

/aosp12/build/soong/cc/
H A Dbinary.go416 var sharedLibs android.Paths
419 sharedLibs = deps.EarlySharedLibs
420 sharedLibs = append(sharedLibs, deps.SharedLibs...)
421 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
431 transformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs, deps.StaticLibs,
H A Dbp2build.go333 sharedLibs := baseLinkerProps.Shared_libs
334 dynamicDeps = bazel.MakeLabelListAttribute(android.BazelLabelForModuleDeps(ctx, sharedLibs))
356 sharedLibs := baseLinkerProps.Shared_libs
357 dynamicDeps.SetValueForArch(arch.Name, android.BazelLabelForModuleDeps(ctx, sharedLibs))
373 sharedLibs := baseLinkerProps.Shared_libs
374 dynamicDeps.SetValueForOS(os.Name, android.BazelLabelForModuleDeps(ctx, sharedLibs))
H A Dlibrary.go1115 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, properties.Shared_libs...)
1125 specifiedDeps.sharedLibs = android.FirstUniqueStrings(specifiedDeps.sharedLibs)
1278 sharedLibs := deps.EarlySharedLibs
1279 sharedLibs = append(sharedLibs, deps.SharedLibs...)
1280 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
1289 transformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
1299 transformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
H A Dbinary_sdk_member.go137 p.SharedLibs = specifiedDeps.sharedLibs
H A Dsnapshot_prebuilt.go355 sharedLibs := collectSnapshotMap(s.properties.Shared_libs, snapshotSuffix, snapshotSharedSuffix)
358 sharedLibs[k] = v
366 SharedLibs: sharedLibs,
H A Dbuilder.go733 objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps android.Paths, argument
770 for _, lib := range sharedLibs {
807 OrderOnly: sharedLibs,
H A Dlinker.go574 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, linker.Properties.Shared_libs...)
H A Dlibrary_sdk_member.go455 p.SharedLibs = specifiedDeps.sharedLibs
H A Dcc.go566 sharedLibs []string member
/aosp12/build/soong/java/
H A Daar.go403 var sharedLibs android.Paths
413 sharedLibs = append(sharedLibs, sdkDep.jars...)
430 sharedLibs = append(sharedLibs, exportPackage)
434 sharedLibs = append(sharedLibs, exportPackage)
460 deps = append(deps, sharedLibs...)
467 for _, sharedLib := range sharedLibs {
/aosp12/build/soong/python/
H A Dinstaller.go65 func (installer *pythonInstaller) setAndroidMkSharedLibs(sharedLibs []string) {
66 installer.androidMkSharedLibs = sharedLibs
H A Dpython.go193 setAndroidMkSharedLibs(sharedLibs []string)
444 var sharedLibs []string
448 sharedLibs = append(sharedLibs, ctx.OtherModuleName(dep))
451 p.installer.setAndroidMkSharedLibs(sharedLibs)
/aosp12/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java583 ParceledListSlice<SharedLibraryInfo> sharedLibs = mPM.getSharedLibraries( in getSharedLibrariesAsUser() local
585 if (sharedLibs == null) { in getSharedLibrariesAsUser()
588 return sharedLibs.getList(); in getSharedLibrariesAsUser()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java1855 public final WatchedArrayMap<String, WatchedLongSparseArray<SharedLibraryInfo>> sharedLibs; field in PackageManagerService.Snapshot
1875 sharedLibs = mSharedLibrariesSnapshot.snapshot(); in Snapshot()
1898 sharedLibs = mSharedLibraries; in Snapshot()
2212 mSharedLibraries = args.sharedLibs; in ComputerEngine()