/build/common/asan/ |
D | asan_helper.c | 52 typedef void* (*dlopen_fn_t)(const char *file, int mode); 53 static void *trap_dlopen(const char *file, int mode); 55 static void *trap_dlopen(const char *file, int mode) in trap_dlopen() argument 60 return fn(file, mode); in trap_dlopen() 65 void *dlopen(const char *file, int mode) in dlopen() argument 79 void *ret = real_dlopen(f, mode); in dlopen() 87 return real_dlopen(file, mode); in dlopen()
|
/build/hb/util/loader/ |
D | generate_targets_gn.py | 93 …"generate part list gni file to '{}/parts_list.gni'".format(config_output_dir), mode=Config.log_mo… 105 config_output_dir), mode=Config.log_mode) 117 config_output_dir), mode=Config.log_mode) 129 config_output_dir), mode=Config.log_mode) 134 "generate build gn file to '{}/BUILD.gn'".format(config_output_dir), mode=Config.log_mode) 159 config_output_dir), mode=Config.log_mode) 220 config_output_dir, platform), mode=Config.log_mode) 228 config_output_dir, platform), mode=Config.log_mode)
|
D | load_ohos_build.py | 728 LogUtil.hb_info("generate parts info to '{}'".format(parts_info_file), mode=Config.log_mode) 740 _part_subsystem_file), mode=Config.log_mode) 752 subsystem_parts_file), mode=Config.log_mode) 764 config_output_path), mode=Config.log_mode) 773 parts_variants_info_file), mode=Config.log_mode) 782 parts_inner_kits_info_file), mode=Config.log_mode) 791 parts_targets_info_file), mode=Config.log_mode) 800 phony_target_info_file), mode=Config.log_mode) 809 "generate parts path info to '{}'".format(parts_path_info_file), mode=Config.log_mode) 819 "generate path to parts to '{}'".format(path_to_parts_file), mode=Config.log_mode) [all …]
|
D | platforms_loader.py | 196 "generate all parts of platforms info to '{}'".format(all_parts_file), mode=Config.log_mode) 208 toolchain_variant_info_file), mode=Config.log_mode)
|
/build/hb/services/ |
D | preloader.py | 78 self._dirs.preloader_output_dir), mode=self.config.log_mode) 108 self._dirs.preloader_output_dir), mode=self.config.log_mode) 132 self._dirs.preloader_output_dir), mode=self.config.log_mode) 154 self._dirs.preloader_output_dir), mode=self.config.log_mode) 172 self._dirs.preloader_output_dir), mode=self.config.log_mode) 184 self._dirs.preloader_output_dir), mode=self.config.log_mode) 200 self._dirs.preloader_output_dir), mode=self.config.log_mode) 212 self._dirs.preloader_output_dir), mode=self.config.log_mode) 230 self._dirs.preloader_output_dir), mode=self.config.log_mode) 247 self._dirs.preloader_output_dir), mode=self.config.log_mode) [all …]
|
D | loader.py | 305 "generate syscap info file to '{}'".format(syscap_info_json), mode=self.config.log_mode) 313 syscap_info_with_part_name_file), mode=self.config.log_mode) 321 target_syscap_for_init_file), mode=self.config.log_mode) 344 infos_for_testfwk_file), mode=self.config.log_mode) 359 target_platform_parts_file), mode=self.config.log_mode) 375 parts_different_info_file), mode=self.config.log_mode) 394 platforms_list_gni_file), mode=self.config.log_mode) 413 auto_install_list_file), mode=self.config.log_mode) 429 self.config_output_dir), mode=self.config.log_mode) 443 build_targets_list_file), mode=self.config.log_mode) [all …]
|
/build/test/example/ |
D | mylogger.py | 29 def __init__(self, filename, mode="a", encoding="utf-8", delay=0, suffix="%Y-%m-%d_%H"): argument 33 FileHandler.__init__(self, filename + "." + current_time, mode, encoding, delay) 37 self.mode = mode 76 self.stream = open(self.baseFilename, self.mode, encoding=self.encoding)
|
/build/lite/config/ |
D | hap_pack.gni | 58 if (defined(invoker.mode)) { 60 "--mode", 61 invoker.mode,
|
/build/toolchain/ |
D | clang_static_analyzer_wrapper.py | 57 prefix = '-Xclang' if parsed_args.mode == 'cl' else '-Xanalyzer'
|
/build/ohos/packages/ |
D | fs_process.py | 127 def chmod(cls, file, mode): argument 128 mode = int(str(mode), base=8) 130 os.chmod(file, mode)
|
/build/hb/util/ |
D | log_util.py | 40 def hb_info(msg, mode='normal'): argument 42 if mode == 'silent': 48 elif mode == 'normal':
|
D | system_util.py | 56 LogUtil.hb_info(info[0], mode=log_mode)
|
/build/lite/ |
D | build_ext_components.py | 67 temp_file = NamedTemporaryFile(mode='wt', delete=False)
|
D | hap_pack.py | 70 '--mode': args.mode,
|
/build/config/ |
D | arm.gni | 25 # The ARM floating point mode. This is either the string "hard", "soft", or 30 # The ARM variant-specific tuning mode. This will be a string like "armv6"
|
D | BUILDCONFIG.gn | 372 # The runtime mode ("debug", "profile", "release") 391 # Full Debug mode. Setting optimize level to "-O0" and symbol level to "-g3". 775 # mode).
|
/build/ohos/images/mkimage/ |
D | dac.txt | 1 # path, mode(oct), uid, gid, cap
|
/build/config/sanitizers/ |
D | sanitizers.gni | 208 # whether it links, one would normally never run a sanitizer in debug mode. 209 # Running in debug mode probably indicates you forgot to set the "is_debug = 210 # false" flag in the build args. ASan seems to run fine in debug mode. 212 # If you find a use-case where you want to compile a sanitizer in debug mode 227 # ASAN build on Windows is not working in debug mode. Intercepting memory
|
D | BUILD.gn | 592 # By default, cfi is in release mode 615 # Debug mode, add no-trap and recover options over release mode
|
/build/ohos/notice/ |
D | merge_notice_files.py | 180 with open(src_file_name, mode='rb') as src_file_fd: 181 with gzip.open(gz_file_name, mode='wb') as gz_file_fd:
|
/build/scripts/ |
D | ninja2trace.py | 47 with open(filename, mode='r') as f:
|
/build/scripts/util/ |
D | build_utils.py | 366 for mode in (stat.S_IXUSR, stat.S_IXGRP, stat.S_IXOTH): 367 if st.st_mode & mode: 368 zipinfo.external_attr |= mode << 16
|
/build/hb/ |
D | README_zh.md | 126 --strict-mode {True,False,true,false} 143 …evel during compilation. you can select two levels: debug, info. In debug mode, it show all comman… 157 Default:'root'. Help:specifies device operating mode
|
D | README.md | 126 --strict-mode {True,False,true,false} 143 …evel during compilation. you can select two levels: debug, info. In debug mode, it show all comman… 157 Default:'root'. Help:specifies device operating mode
|
/build/ohos/app/ |
D | app_internal.gni | 180 "--build-mode", 378 "--build-mode",
|