/test/testfwk/developer_test/local_coverage/resident_service/ |
H A D | init_gcov.py | 121 def modify_foundation_xml(serv, config_path, origin_xml) -> str: 125 :param config_path: 配置文件路径 143 tree.write(os.path.join(config_path, 'foundation.xml'), encoding='utf-8', xml_declaration=True) 144 return os.path.join(config_path, 'foundation.xml') 147 def modify_foundation_json(serv, config_path, origin_json) -> str: 151 :param config_path: 配置文件路径 166 new_json = os.path.join(config_path, 'foundation.json') 175 def create_service_json(serv, config_path, origin_json) -> str: 179 :param config_path:配置文件所在目录 195 new_json = os.path.join(config_path, '{} [all...] |
H A D | pull_service_gcda.py | 145 config_path = os.path.join(service_path, "config") variable 164 restore_config(ip, port, sn_str, config_path)
|
/third_party/skia/gn/ |
H A D | gn_to_bp.py | 577 def write_android_config(config_path, defines): 578 gn_to_bp_utils.WriteUserConfig(config_path, defines) 579 append_to_file(config_path, ''' 583 disallow_platforms(config_path, 'ANDROID') 588 def write_config(config_path, defines, platform): 589 gn_to_bp_utils.WriteUserConfig(config_path, defines) 590 append_to_file(config_path, ''' 599 disallow_platforms(config_path, platform)
|
/kernel/linux/linux-5.10/drivers/net/ipa/ |
H A D | ipa_clock.c | 51 * @config_path: Configuration space interconnect 59 struct icc_path *config_path; member 93 clock->config_path = path; in ipa_interconnect_init() 108 icc_put(clock->config_path); in ipa_interconnect_exit() 127 ret = icc_set_bw(clock->config_path, IPA_CONFIG_AVG, IPA_CONFIG_PEAK); in ipa_interconnect_enable() 155 ret = icc_set_bw(clock->config_path, 0, 0); in ipa_interconnect_disable()
|
/kernel/linux/build/ |
H A D | kernel_build.py | 270 def cp_config(arch, config, config_path, knl_path): 271 if os.path.exists(config_path.format(arch, config)): 272 cp = f'cp ' + config_path.format(arch, config) + ' ' + os.path.join(knl_path, 'arch', arch, 'configs', config) 278 print(f'"{config_path.format(arch, config)}" not exists!') 279 return ret, f'"{config_path.format(arch, config)}" not exists!' 297 def build(arch, config, config_path, cross_compile, knl_path, logger): 318 ret, msg = cp_config(arch, config, config_path, knl_path) 360 config_path = './kernel/linux/config/linux-5.10/arch/{0}/configs/{1}' 370 arm_ret, arm_msg = build(arch, config, config_path, cross_compile, knl_path, logger) 375 arm64_ret, arm64_msg = build(arch, config, config_path, cross_compil [all...] |
/third_party/rust/crates/clap/examples/tutorial_builder/ |
H A D | 01_quick.rs | 31 if let Some(config_path) = matches.get_one::<PathBuf>("config") { in main() 32 println!("Value for config: {}", config_path.display()); in main()
|
/third_party/rust/crates/clap/examples/tutorial_derive/ |
H A D | 01_quick.rs | 41 if let Some(config_path) = cli.config.as_deref() { in main() 42 println!("Value for config: {}", config_path.display()); in main()
|
/third_party/skia/third_party/externals/angle2/infra/specs/ |
H A D | PRESUBMIT.py | 19 config_path = os.path.join(input_api.PresubmitLocalPath(), 'angle_mb_config.pyl') 37 config_path,
|
/kernel/linux/linux-6.6/tools/testing/kunit/ |
H A D | kunit_kernel.py | 192 config_path = os.path.join(QEMU_CONFIGS_DIR, arch + '.py') 193 if os.path.isfile(config_path): 194 return config_path 199 def _get_qemu_ops(config_path: str, 210 module_path = '.' + os.path.join(os.path.basename(QEMU_CONFIGS_DIR), os.path.basename(config_path)) 211 spec = importlib.util.spec_from_file_location(module_path, config_path) 219 raise ValueError('qemu_config module missing "QEMU_ARCH": ' + config_path)
|
/test/testfwk/developer_test/src/core/build/ |
H A D | pretreat_targets.py | 75 config_path = os.path.join(target_path, "config.json") 80 if not os.path.exists(config_path): 102 shutil.copy(config_path, os.path.join(target_path, "src", "main"))
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | analyzer.py | 7 the generator flag config_path) the path of a json file that dictates the files 269 config_path = generator_flags.get("config_path", None) 270 if not config_path: 273 f = open(config_path) 277 raise Exception("Unable to open file " + config_path) 279 raise Exception("Unable to parse config file " + config_path + str(e)) 281 raise Exception("config_path must be a JSON file containing a dictionary") 754 "Must specify files to analyze via config_path generator " "flag"
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | analyzer.py | 7 the generator flag config_path) the path of a json file that dictates the files 269 config_path = generator_flags.get("config_path", None) 270 if not config_path: 273 f = open(config_path) 277 raise Exception("Unable to open file " + config_path) 279 raise Exception("Unable to parse config file " + config_path + str(e)) 281 raise Exception("config_path must be a JSON file containing a dictionary") 750 "Must specify files to analyze via config_path generator " "flag"
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_config.py | 89 config_path = findfile('cfgparser.1') 90 parser = config.IdleConfParser(config_path) 193 config_path = os.path.join(idle_dir, '../config-%s.def' % ctype) 194 with open(config_path) as f: 298 config_path = findfile('cfgparser.1') 299 conf.defaultCfg['foo'] = config.IdleConfParser(config_path) 300 conf.userCfg['foo'] = config.IdleUserConfParser(config_path)
|
/third_party/mesa3d/src/intel/tools/ |
H A D | intel_dump_gpu.c | 437 const char *config_path = getenv("INTEL_DUMP_GPU_CONFIG"); in maybe_init() local 438 fail_if(config_path == NULL, "INTEL_DUMP_GPU_CONFIG is not set\n"); in maybe_init() 440 config = fopen(config_path, "r"); in maybe_init() 441 fail_if(config == NULL, "failed to open file %s\n", config_path); in maybe_init()
|
/test/testfwk/developer_test/src/core/config/ |
H A D | config_manager.py | 315 def __init__(self, config_path=""):
316 if config_path == "":
322 self.filepath = config_path
|
/third_party/libxml2/ |
H A D | generate_header.py | 115 config_header.write_file(options.config_path)
|
/test/testfwk/xdevice/src/xdevice/_core/config/ |
H A D | config_manager.py | 62 config_path = os.path.join(Variables.res_dir, "config") 63 paths = [user_path, top_user_path, config_path]
|
/third_party/typescript/tests/ts_extra_tests/tool/ |
H A D | testcfg.py | 111 config_path = os.path.join(arkguard_root_dir, "test/compilerTestConfig.json")
118 config_path,
|
/third_party/mesa3d/src/intel/perf/ |
H A D | intel_perf.c | 290 char config_path[280]; in intel_perf_load_metric_id() local 292 snprintf(config_path, sizeof(config_path), "%s/metrics/%s/id", in intel_perf_load_metric_id() 296 return read_file_uint64(config_path, metric_id); in intel_perf_load_metric_id()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
H A D | device_lite.py | 59 config_path = os.path.join(Variables.res_dir, "config") 60 paths = [user_path, top_user_path, config_path]
|
/third_party/python/PC/ |
H A D | launcher.c | 1004 read_config_file(wchar_t * config_path) in read_config_file() argument 1014 config_path); in read_config_file() 1016 debug(L"read_commands: %ls: not enough space for names\n", config_path); in read_config_file() 1021 config_path); in read_config_file() 1024 config_path, key); in read_config_file()
|
/third_party/node/deps/v8/tools/ |
H A D | run_perf.py | 613 config_path = os.path.join(args.shell_dir, 'v8_build_config.json') 614 if not os.path.isfile(config_path): 616 with open(config_path) as f:
|
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | concurrent.py | 258 config_path = get_file_absolute_path(module_config_path, 260 json_config = JsonParser(config_path)
|
/third_party/elfutils/debuginfod/ |
H A D | debuginfod-client.c | 244 debuginfod_config_cache(char *config_path, in debuginfod_config_cache() argument 248 int fd = open(config_path, O_CREAT | O_RDWR, DEFFILEMODE); in debuginfod_config_cache()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | dhd_linux.c | 428 char config_path[MOD_PARAM_PATHLEN]; variable 539 module_param_string(config_path, config_path, MOD_PARAM_PATHLEN, 0); 9331 if (config_path[0] != '\0') in dhd_update_fw_nv_path() 9332 conf = config_path; in dhd_update_fw_nv_path() 9427 config_path[0] = '\0'; in dhd_update_fw_nv_path()
|