Home
last modified time | relevance | path

Searched refs:info (Results 1 – 25 of 46) sorted by relevance

12

/build/core/
Ddumpvar.mk67 $(info ============================================)
68 $(info PLATFORM_VERSION_CODENAME=$(PLATFORM_VERSION_CODENAME))
69 $(info PLATFORM_VERSION=$(PLATFORM_VERSION))
70 $(info TARGET_PRODUCT=$(TARGET_PRODUCT))
71 $(info TARGET_BUILD_VARIANT=$(TARGET_BUILD_VARIANT))
72 $(info TARGET_BUILD_TYPE=$(TARGET_BUILD_TYPE))
73 $(info TARGET_BUILD_APPS=$(TARGET_BUILD_APPS))
74 $(info TARGET_ARCH=$(TARGET_ARCH))
75 $(info TARGET_ARCH_VARIANT=$(TARGET_ARCH_VARIANT))
76 $(info TARGET_CPU_VARIANT=$(TARGET_CPU_VARIANT))
[all …]
Dmain.mk112 $(info Checking build tools versions...)
161 $(info ************************************************************)
162 $(info You are attempting to build with the incorrect version)
163 $(info of java.)
164 $(info $(space))
165 $(info Your version is: $(java_version_str).)
166 $(info The required version is: $(required_version))
167 $(info $(space))
168 $(info Please follow the machine setup instructions at)
169 $(info $(space)$(space)$(space)$(space)https://source.android.com/source/initializing.html)
[all …]
Dcleanbuild.mk72 $(info *** A clean build is required because of a recent change.)
74 $(info *** Done with the cleaning, now starting the real build.)
81 $(info Clean step: $(INTERNAL_CLEAN_STEP.$(step))) \
93 $(info Clean step: $(_crs_new_cmd))\
151 $(info *** Build configuration changed: "$(PREVIOUS_BUILD_CONFIG)" -> "$(current_build_config)")
155 …$(info DISABLE_AUTO_INSTALLCLEAN is set; skipping auto-clean. Your tree may be in an inconsistent …
244 $(info *** Forcing "make installclean"...)
245 $(info *** rm -rf $(dataclean_files) $(installclean_files))
247 $(info *** Done with the cleaning, now starting the real build.)
286 $(info *** build type changed, clean host tools...)
[all …]
Dpost_clean.mk41 $(info *** Overlay change detected, clean shared intermediate files...)
42 $(info *** $(overlay_cleanup_cmd))
77 $(info *** Obsolete aidl-generated files detected, clean intermediate files...)
78 $(info *** rm -rf $(intermediates_to_clean))
Ddevice.mk23 $(info ==== $(1) ====)\
25 $(info DEVICES.$(1).$(v) := $(DEVICES.$(1).$(v))))\
26 $(info --------)
Dpdk_config.mk32 $(info $(PDK_FUSION_PLATFORM_ZIP) found, do a PDK fusion build.)
179 $(info PDK TARGET_BUILD_JAVA_SUPPORT_LEVEL $(TARGET_BUILD_JAVA_SUPPORT_LEVEL))
184 $(info PDK Build uses SDK $(PDK_BUILD_SDK_VERSION))
188 $(info PDK Build uses the current platform API)
Dproduct.mk116 $(info ==== $(1) ====)\
118 $(info PRODUCTS.$(1).$(v) := $(PRODUCTS.$(1).$(v))))\
119 $(info --------)
Dconfig.mk367 $(info *** If you use envsetup/lunch/choosecombo:)
368 $(info *** - Re-execute envsetup (". envsetup.sh"))
369 $(info *** - Re-run lunch or choosecombo)
370 $(info *** If you use buildspec.mk:)
371 $(info *** - Look at buildspec.mk.default to see what has changed)
372 $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)")
Ddex_preopt_libart_boot.mk65 …ODUCT_OUT)/system --include-patch-information --runtime-arg -Xnorelocate --no-generate-debug-info \
Ddex_preopt_libart.mk108 --include-patch-information --runtime-arg -Xnorelocate --no-generate-debug-info \
/build/tools/releasetools/
Dsign_target_files_apks117 for info in input_tf_zip.infolist():
118 if info.filename.endswith(".apk"):
119 name = os.path.basename(info.filename)
171 for info in input_tf_zip.infolist():
172 if info.filename.startswith("IMAGES/"):
175 data = input_tf_zip.read(info.filename)
176 out_info = copy.copy(info)
178 if (info.filename == "META/misc_info.txt" and
182 elif (info.filename == "BOOT/RAMDISK/verity_key" and
186 write_to_temp(info.filename, info.external_attr, new_data)
[all …]
Dsign_target_files_apks.py117 for info in input_tf_zip.infolist():
118 if info.filename.endswith(".apk"):
119 name = os.path.basename(info.filename)
171 for info in input_tf_zip.infolist():
172 if info.filename.startswith("IMAGES/"):
175 data = input_tf_zip.read(info.filename)
176 out_info = copy.copy(info)
178 if (info.filename == "META/misc_info.txt" and
182 elif (info.filename == "BOOT/RAMDISK/verity_key" and
186 write_to_temp(info.filename, info.external_attr, new_data)
[all …]
Dedify_generator.py23 def __init__(self, version, info, fstab=None): argument
27 self.info = info
29 self.fstab = self.info.get("fstab", None)
37 x = EdifyGenerator(self.version, self.info)
234 size = self.info.get(partition.lstrip("/") + "_size", None)
257 if self.info.get("update_rename_support", False):
310 if not self.info.get("use_set_metadata", False):
325 if not self.info.get("use_set_metadata", False):
Dcheck_target_files_signatures186 for info in apk.infolist():
187 if info.filename.startswith("META-INF/") and \
188 (info.filename.endswith(".DSA") or info.filename.endswith(".RSA")):
189 pkcs7 = apk.read(info.filename)
190 cert = CertFromPKCS7(pkcs7, info.filename)
Dcheck_target_files_signatures.py186 for info in apk.infolist():
187 if info.filename.startswith("META-INF/") and \
188 (info.filename.endswith(".DSA") or info.filename.endswith(".RSA")):
189 pkcs7 = apk.read(info.filename)
190 cert = CertFromPKCS7(pkcs7, info.filename)
Dota_from_target_files136 def IsSymlink(info): argument
139 return (info.external_attr >> 16) == 0o120777
141 def IsRegular(info): argument
144 return (info.external_attr >> 28) == 0o10
365 for info in input_zip.infolist():
367 if info.filename.startswith(prefix):
368 basefilename = info.filename[len(prefix):]
369 if IsSymlink(info):
370 symlinks.append((input_zip.read(info.filename),
374 info2 = copy.copy(info)
[all …]
Dota_from_target_files.py136 def IsSymlink(info): argument
139 return (info.external_attr >> 16) == 0o120777
141 def IsRegular(info): argument
144 return (info.external_attr >> 28) == 0o10
365 for info in input_zip.infolist():
367 if info.filename.startswith(prefix):
368 basefilename = info.filename[len(prefix):]
369 if IsSymlink(info):
370 symlinks.append((input_zip.read(info.filename),
374 info2 = copy.copy(info)
[all …]
Dtest_common.py59 info = zip_file.getinfo(arcname)
60 self.assertEqual(info.date_time, (2009, 1, 1, 0, 0, 0))
63 mode = (info.external_attr >> 16) & 0o777
67 self.assertEqual(info.compress_type, expected_compress_type)
/build/tools/
Dfilter-product-graph.py28 def info(m): function
33 (info, re.compile(r'"(.*)"(\s*\[.*\])')),
56 infos = [info for info in infos if info[0] in included]
62 for info in infos:
63 print '"%s"%s' % info
/build/tools/droiddoc/templates-ndk/assets/css/
Ddefault.css2428 #api-info-block {
2432 #api-info-block a, #api-info-block a:active, #api-info-block a:visited {
2435 #api-info-block a:hover, #api-info-block a:focus {
3459 #api-info-block {
3472 #api-info-block div.api-level {
5353 .card-info {
5366 .card-info .section {
5372 .card-info .title {
5381 .card-info .description {
5384 .card-info .description .text {
[all …]
/build/tools/droiddoc/templates-sdk-dev/assets/css/
Ddefault.css2428 #api-info-block {
2432 #api-info-block a, #api-info-block a:active, #api-info-block a:visited {
2435 #api-info-block a:hover, #api-info-block a:focus {
3470 #api-info-block {
3483 #api-info-block div.api-level {
5365 .card-info {
5378 .card-info .section {
5384 .card-info .title {
5393 .card-info .description {
5396 .card-info .description .text {
[all …]
/build/target/board/
DAndroid.mk15 INSTALLED_ANDROID_INFO_TXT_TARGET := $(PRODUCT_OUT)/android-info.txt
18 board_info_txt := $(wildcard $(TARGET_DEVICE_DIR)/board-info.txt)
/build/tools/droiddoc/templates-sdk/assets/css/
Ddefault.css2044 #api-info-block {
2048 #api-info-block a, #api-info-block a:active, #api-info-block a:visited {
2051 #api-info-block a:hover, #api-info-block a:focus {
3171 #api-info-block {
3184 #api-info-block div.api-level {
5339 .tab-carousel .resource .info .title {
5344 .tab-carousel .resource .info .summary,
5345 .tab-carousel .resource .info .cta {
5366 .tab-carousel .resource-card-18x12 .info {
5370 .tab-carousel .resource-card-18x12 .info .title {
[all …]
/build/core/tasks/
Ddeps_licenses.mk48 $(info $(m) :: $(m_p) :: $(ALL_DEPS.$(m).LICENSE))\
52 $(info $(space)$(space)$(space)$(space)$(d) :: $(d_p) :: $(ALL_DEPS.$(d).LICENSE))))))
/build/core/combo/
Djavac.mk45 $(info CUSTOM_JAVA_COMPILER=eclipse)

12