Home
last modified time | relevance | path

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

12

/build/soong/ui/build/
Dbuild.go133 func help(ctx Context, config Config, what int) {
141 func Build(ctx Context, config Config, what int) {
170 what = what & (BuildSoong | BuildNinja)
174 help(ctx, config, what)
177 clean(ctx, config, what)
205 if what&BuildProductConfig != 0 {
212 installClean(ctx, config, what)
217 dataClean(ctx, config, what)
222 if what&BuildSoong != 0 {
227 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
218 func CheckAvailableForApex(what string, apex_available []string) bool {
222 return what == AvailableToPlatform
224 return InList(what, apex_available) ||
225 (what != AvailableToPlatform && InList(AvailableToAnyApex, apex_available))
228 func (m *ApexModuleBase) AvailableFor(what string) bool {
229 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_files.py398 def CreateImage(input_dir, info_dict, what, output_file, block_list=None): argument
399 logger.info("creating %s.img...", what)
401 image_props = build_image.ImagePropFromGlobalDict(info_dict, what)
404 if what == "system":
407 fs_config_prefix = what + "_"
423 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what)
429 os.path.join(input_dir, what.upper()), image_props, output_file.name)
443 image_size_key = what + "_image_size"
448 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip()))
450 info_dict.update(build_image.GlobalDictFromImageProp(image_props, what))
Dadd_img_to_target_files398 def CreateImage(input_dir, info_dict, what, output_file, block_list=None):
399 logger.info("creating %s.img...", what)
401 image_props = build_image.ImagePropFromGlobalDict(info_dict, what)
404 if what == "system":
407 fs_config_prefix = what + "_"
423 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what)
429 os.path.join(input_dir, what.upper()), image_props, output_file.name)
443 image_size_key = what + "_image_size"
448 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip()))
450 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.go2818 func (c *Module) AvailableFor(what string) bool {
2822 return c.ApexModuleBase.AvailableFor(what) || linker.availableFor(what)
2824 return c.ApexModuleBase.AvailableFor(what)
Dlibrary.go1355 func (library *libraryDecorator) availableFor(what string) bool {
1365 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.md333 on a `.PHONY` target, it can get quite expensive for what should be a tiny
342 obvious when reading makefiles what is happening, and will help the build
595 root of the source tree, so this can just be replaced with '.' (which is what
/build/make/tools/droiddoc/templates-ndk/
Dsampleindex.cs73 # <p>Decide what to do with this ...</p>
/build/make/tools/acp/
DREADME37 to work when what is actually meant is "cp foo.exe bar.exe". Unlike the
/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.mk424 $(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.go1104 `You have tried to change the API from what has been previously approved.\n\n`+
1172 `You have tried to change the API from what has been previously released in\n` +
1759 `You have tried to change the API from what has been previously approved.\n\n`+
Djava.go712 func (j *Module) AvailableFor(what string) bool {
713 if what == android.AvailableToPlatform && Bool(j.deviceProperties.Hostdex) {
719 return j.ApexModuleBase.AvailableFor(what)
/build/soong/docs/
Dperf.md139 Kati prints out what triggered the slow path to be taken -- this can be a

12