Home
last modified time | relevance | path

Searched refs:what (Results 1 – 25 of 26) sorted by relevance

12

/build/soong/ui/build/
Dbuild.go134 func help(ctx Context, config Config, what int) {
142 func Build(ctx Context, config Config, what int) {
171 what = what & (BuildSoong | BuildNinja)
175 help(ctx, config, what)
178 clean(ctx, config, what)
206 if what&BuildProductConfig != 0 {
213 installClean(ctx, config, what)
218 dataClean(ctx, config, what)
223 if what&BuildSoong != 0 {
228 if what&BuildKati != 0 {
[all …]
Dcleanbuild.go48 func clean(ctx Context, config Config, what int) {
53 func dataClean(ctx Context, config Config, what int) {
64 func installClean(ctx Context, config Config, what int) {
65 dataClean(ctx, config, what)
/build/soong/python/tests/testpkg/
Dpycmd_test.py22 def assert_equal(what, a, b): argument
25 print("Expected %s('%s') == '%s'" % (what, a, b))
Dpar_test.py22 def assert_equal(what, a, b): argument
25 print("Expected %s('%s') == '%s'" % (what, a, b))
/build/soong/android/
Dapex.go103 AvailableFor(what string) bool
217 func CheckAvailableForApex(what string, apex_available []string) bool {
221 return what == AvailableToPlatform
223 return InList(what, apex_available) ||
224 (what != AvailableToPlatform && InList(AvailableToAnyApex, apex_available))
227 func (m *ApexModuleBase) AvailableFor(what string) bool {
228 return CheckAvailableForApex(what, m.ApexProperties.Apex_available)
/build/soong/python/tests/
Dpar_test.py23 def assert_equal(what, a, b): argument
26 print("Expected %s('%s') == '%s'" % (what, a, b))
Dpy-cmd_test.py23 def assert_equal(what, a, b): argument
26 print("Expected %s('%s') == '%s'" % (what, a, b))
/build/make/tools/releasetools/
Dadd_img_to_target_files367 def CreateImage(input_dir, info_dict, what, output_file, block_list=None):
368 logger.info("creating %s.img...", what)
370 image_props = build_image.ImagePropFromGlobalDict(info_dict, what)
373 if what == "system":
376 fs_config_prefix = what + "_"
392 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what)
398 os.path.join(input_dir, what.upper()), image_props, output_file.name)
412 image_size_key = what + "_image_size"
417 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip()))
419 info_dict.update(build_image.GlobalDictFromImageProp(image_props, what))
Dadd_img_to_target_files.py367 def CreateImage(input_dir, info_dict, what, output_file, block_list=None): argument
368 logger.info("creating %s.img...", what)
370 image_props = build_image.ImagePropFromGlobalDict(info_dict, what)
373 if what == "system":
376 fs_config_prefix = what + "_"
392 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what)
398 os.path.join(input_dir, what.upper()), image_props, output_file.name)
412 image_size_key = what + "_image_size"
417 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip()))
419 info_dict.update(build_image.GlobalDictFromImageProp(image_props, what))
/build/soong/cc/
Dndk_prebuilt.go95 func (*ndkPrebuiltObjectLinker) availableFor(what string) bool {
113 func (*ndkPrebuiltStlLinker) availableFor(what string) bool {
Dcc.go2789 func (c *Module) AvailableFor(what string) bool {
2793 return c.ApexModuleBase.AvailableFor(what) || linker.availableFor(what)
2795 return c.ApexModuleBase.AvailableFor(what)
Dlibrary.go1344 func (library *libraryDecorator) availableFor(what string) bool {
1354 return android.CheckAvailableForApex(what, list)
/build/make/
DUsage.txt6 Ways to specify what to build:
7 The common way to specify what to build is to set that information in the
Dbuildspec.mk.default31 # User is what we ship. Userdebug is that, with a few flags turned on
DChanges.md233 on a `.PHONY` target, it can get quite expensive for what should be a tiny
242 obvious when reading makefiles what is happening, and will help the build
495 root of the source tree, so this can just be replaced with '.' (which is what
/build/make/tools/acp/
DREADME37 to work when what is actually meant is "cp foo.exe bar.exe". Unlike the
/build/make/tools/droiddoc/templates-ndk/
Dsampleindex.cs73 # <p>Decide what to do with this ...</p>
/build/make/core/
DLINUX_KERNEL_COPYING62 want its recipients to know that what they have is not the original, so
93 Whether that is true depends on what the Program does.
242 This section is intended to make thoroughly clear what is believed to
309 <one line to give the program's name and a brief idea of what it does.>
355 library. If this is what you want to do, use the GNU Library General
Dconfig.mk412 $(info *** - Look at buildspec.mk.default to see what has changed)
/build/make/tools/droiddoc/templates-pdk/
Dsdkpage.cs87 href="<?cs var:toroot ?>sdk/ndk/overview.html">What is the NDK?</a> for more information about what
/build/
Dbuildspec.mk.default31 # User is what we ship. Userdebug is that, with a few flags turned on
/build/make/tools/droiddoc/templates-ndk/assets/
DGPL-LICENSE.txt46 want its recipients to know that what they have is not the original, so
77 Whether that is true depends on what the Program does.
226 This section is intended to make thoroughly clear what is believed to
/build/soong/java/
Ddroiddoc.go1087 `You have tried to change the API from what has been previously approved.\n\n`+
1155 `You have tried to change the API from what has been previously released in\n` +
1753 `You have tried to change the API from what has been previously approved.\n\n`+
Djava.go673 func (j *Module) AvailableFor(what string) bool {
674 if what == android.AvailableToPlatform && Bool(j.deviceProperties.Hostdex) {
680 return j.ApexModuleBase.AvailableFor(what)
/build/soong/docs/
Dperf.md104 Kati prints out what triggered the slow path to be taken -- this can be a

12