Home
last modified time | relevance | path

Searched refs:install (Results 1 – 25 of 55) sorted by relevance

123

/build/soong/java/
Ddexpreopt.go51 func (install *dexpreopterInstall) FullModuleName() string {
52 return install.moduleName + install.SubModuleName()
56 func (install *dexpreopterInstall) SubModuleName() string {
57 return "-dexpreopt-" + install.name
64 func (install dexpreopterInstall) ToMakeEntries() android.AndroidMkEntries {
67 SubName: install.SubModuleName(),
68 OutputFile: android.OptionalPathForPath(install.outputPathOnHost),
71 entries.SetString("LOCAL_MODULE_PATH", install.installDirOnDevice.String())
72 entries.SetString("LOCAL_INSTALLED_MODULE_STEM", install.installFileOnDevice)
367 for _, install := range dexpreoptRule.Installs() {
[all …]
Dbootclasspath_fragment.go589 for _, install := range variant.deviceInstalls {
591 installDir := strings.TrimPrefix(filepath.Dir(install.To), "/")
592 installBase := filepath.Base(install.To)
598 outputPathOnHost: install.From,
908 for _, install := range b.bootImageDeviceInstalls {
909 entriesList = append(entriesList, install.ToMakeEntries())
917 for _, install := range b.bootImageDeviceInstalls {
918 makeModules = append(makeModules, install.FullModuleName())
/build/make/target/product/
Druntime_libart.mk126 pm.dexopt.install?=speed-profile \
127 pm.dexopt.install-fast?=skip \
128 pm.dexopt.install-bulk?=speed-profile \
129 pm.dexopt.install-bulk-secondary?=verify \
130 pm.dexopt.install-bulk-downgraded?=verify \
131 pm.dexopt.install-bulk-secondary-downgraded?=extract \
/build/soong/third_party/zip/testdata/
Dreadme.notzip16 For documentation about how to install and use Go,
17 visit https://golang.org/ or load doc/install.html in your web browser.
20 doc/install.html by running godoc --http=:6060
21 and then visiting http://localhost:6060/doc/install.html.
34 from sources by running all.bash (see doc/install.html).
44 See doc/install.html for more details.
/build/soong/android/
Dhooks.go141 h.install = append(h.install, hook)
166 if len(x.install) > 0 {
173 for _, x := range x.install {
183 install []func(InstallHookContext) member
Dmakevars.go441 # Values written by Soong to generate install rules that can be amended by Kati.
451 for _, install := range installs {
455 fmt.Fprintf(buf, "%s: %s", install.to.String(), install.from.String())
456 for _, dep := range install.implicitDeps {
459 if extraFiles := install.extraFiles; extraFiles != nil {
462 if len(install.orderOnlyDeps) > 0 {
465 for _, dep := range install.orderOnlyDeps {
471 if install.executable {
474 if extraFiles := install.extraFiles; extraFiles != nil {
/build/make/core/
Ddex_preopt_libart.mk30 define vdex-shared-install-path
37 $(foreach v,$(1),$(call word-colon,1,$(v)):$(call vdex-shared-install-path,$(call word-colon,2,$(v)…
45 $(call vdex-shared-install-path,$(1)),\
Ddex_preopt.mk11 install-on-system-other =
13 install-on-system-other = $(filter-out $(PRODUCT_DEXPREOPT_SPEED_APPS) $(PRODUCT_SYSTEM_SERVER_APPS…
/build/soong/rust/
Dbenchmark.go114 func (benchmark *benchmarkDecorator) install(ctx ModuleContext) { func
129 benchmark.binaryDecorator.install(ctx)
Dfuzz.go177 func (fuzz *fuzzDecorator) install(ctx ModuleContext) { func
182 fuzz.binaryDecorator.baseCompiler.install(ctx)
Dtest.go122 func (test *testDecorator) install(ctx ModuleContext) { func
187 test.binaryDecorator.install(ctx)
/build/soong/python/
Dtest.go75 func (test *testDecorator) install(ctx android.ModuleContext, file android.Path) { func
85 test.binaryDecorator.pythonInstaller.install(ctx, file)
Dinstaller.go61 func (installer *pythonInstaller) install(ctx android.ModuleContext, file android.Path) { func
/build/soong/dexpreopt/dexpreopt_gen/
Ddexpreopt_gen.go217 for _, install := range dexpreoptRule.Installs() {
218 installPath := installDir.Join(ctx, strings.TrimPrefix(install.To, "/"))
220 dexpreoptRule.Command().Text("cp -f").Input(install.From).Output(installPath)
/build/soong/cc/symbolfile/
D.gitignore95 # having no cross-platform support, pipenv may install dependencies that don't work, or not
96 # install all needed dependencies.
/build/soong/cc/ndk_api_coverage_parser/
D.gitignore95 # having no cross-platform support, pipenv may install dependencies that don't work, or not
96 # install all needed dependencies.
/build/soong/cc/ndkstubgen/
D.gitignore95 # having no cross-platform support, pipenv may install dependencies that don't work, or not
96 # install all needed dependencies.
/build/make/tools/docker/
DDockerfile6 RUN apt-get update && apt-get install -y git-core gnupg flex bison gperf build-essential zip curl z…
/build/bazel/rules/
Dsh_binary.bzl4 "sub_dir": "Optional subdirectory to install into",
/build/soong/cc/
Dinstaller.go99 func (installer *baseInstaller) install(ctx ModuleContext, file android.Path) { func
Dtest.go374 func (test *testBinary) install(ctx ModuleContext, file android.Path) { func
473 test.binaryDecorator.baseInstaller.install(ctx, file)
601 func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Path) { func
613 benchmark.binaryDecorator.baseInstaller.install(ctx, file)
/build/make/tools/releasetools/
Dota_metadata.proto86 // and prerequisite to install the update correctly.
102 // The required device state in order to install the package.
/build/soong/provenance/provenance_metadata_proto/
Dprovenance_metadata.proto35 // The install path of the artifact in filesystem images.
/build/soong/cmd/extract_apks/bundle_proto/
Dcommands.proto95 // Indicates the delivery type for persistent install.
109 // Indicates the delivery type for instant install.
/build/soong/etc/
Dprebuilt_etc.go711 if install := module.properties.Installable; install != nil {
712 installable.Value = install

123