Home
last modified time | relevance | path

Searched refs:config_path (Results 1 – 25 of 42) sorted by relevance

12

/external/oss-fuzz/infra/base-images/base-sanitizer-libs-builder/packages/
Dnettle.py24 def AddNoAsmArg(config_path): argument
26 shutil.move(config_path, config_path + '.real')
27 with open(config_path, 'w') as f:
30 '%s.real --disable-assembler "$@"\n' % config_path)
31 os.chmod(config_path, 0755)
Dopenssl.py24 def AddNoAsmArg(config_path): argument
26 shutil.move(config_path, config_path + '.real')
27 with open(config_path, 'w') as f:
30 '%s.real no-asm "$@"\n' % config_path)
31 os.chmod(config_path, 0755)
/external/tpm2-tss/test/integration/
Dmain-fapi.c69 char *config_path = NULL; in main() local
214 size = asprintf(&config_path, "%s/fapi-config.json", tmpdir); in main()
222 config_file = fopen(config_path, "w"); in main()
225 perror(config_path); in main()
233 perror(config_path); in main()
239 size = asprintf(&config_env, "TSS2_FAPICONF=%s", config_path); in main()
279 if (config_path) free(config_path); in main()
/external/adhd/sound_card_init/amp/src/
Dlib.rs23 config_path: PathBuf, field
33 let config_path = PathBuf::from(CONF_DIR).join(conf_file); in new() localVariable
36 config_path, in new()
44 Ok(Box::new(Max98390::new(self.sound_card_id, &self.config_path)?) as Box<dyn Amp>) in build()
47 Ok(Box::new(Max98373::new(self.sound_card_id, &self.config_path)?) as Box<dyn Amp>) in build()
/external/skia/gn/
Dgn_to_bp.py584 def write_android_config(config_path, defines): argument
585 gn_to_bp_utils.WriteUserConfig(config_path, defines)
586 append_to_file(config_path, '''
590 disallow_platforms(config_path, 'ANDROID')
595 def write_config(config_path, defines, platform): argument
596 gn_to_bp_utils.WriteUserConfig(config_path, defines)
597 append_to_file(config_path, '''
606 disallow_platforms(config_path, platform)
/external/vboot_reference/scripts/image_signing/
Densure_no_nonrelease_files.sh53 local config_path="$rootfs/etc/chrome_dev.conf"
54 local matches=$(grep -s "^[^#]" "${config_path}")
56 echo "FAIL: Found commands in $config_path:"
/external/webrtc/rtc_tools/rtp_generator/
Dmain.cc31 const std::string config_path = absl::GetFlag(FLAGS_input_config); in main() local
34 if (rtp_dump_path.empty() || config_path.empty()) { in main()
39 webrtc::ParseRtpGeneratorOptionsFromFile(config_path); in main()
/external/autotest/utils/side_effects/
Dconfig_loader.py29 config_path = os.path.join(results_dir, _SIDE_EFFECTS_CONFIG_FILE)
31 if not os.path.exists(config_path):
34 with open(config_path, 'r') as config_file:
/external/jsoncpp/devtools/
Dbatchbuild.py111 def load_build_variants_from_config(config_path): argument
112 with open(config_path, 'rb') as fconfig:
250 for config_path in config_paths:
251 if not os.path.isfile(config_path):
252 parser.error("Can not read: %r" % config_path)
256 for config_path in config_paths:
257 build_descs_by_axis = load_build_variants_from_config(config_path)
/external/adhd/cras/src/server/config/
Dcras_board_config.c28 void cras_board_config_get(const char *config_path, in cras_board_config_get() argument
43 if (config_path == NULL) in cras_board_config_get()
46 snprintf(ini_name, MAX_INI_NAME_LENGTH, "%s/%s", config_path, in cras_board_config_get()
Dcras_device_blocklist.c19 cras_device_blocklist_create(const char *config_path) in cras_device_blocklist_create() argument
28 snprintf(ini_name, MAX_INI_NAME_LENGTH, "%s/%s", config_path, in cras_device_blocklist_create()
Dcras_card_config.c57 struct cras_card_config *cras_card_config_create(const char *config_path, in cras_card_config_create() argument
64 snprintf(ini_name, MAX_INI_NAME_LENGTH, "%s/%s", config_path, in cras_card_config_create()
Dcras_card_config.h19 struct cras_card_config *cras_card_config_create(const char *config_path,
Dcras_device_blocklist.h27 cras_device_blocklist_create(const char *config_path);
Dcras_board_config.h26 void cras_board_config_get(const char *config_path,
/external/skqp/gn/
Dgn_to_bp.py397 def write_config(config_path, defines, platform): argument
398 gn_to_bp_utils.WriteUserConfig(config_path, defines)
399 append_to_file(config_path, '''
408 disallow_platforms(config_path, platform)
/external/toolchain-utils/crosperf/
Dtranslate_xbuddy.py29 config_path = os.path.expanduser(
31 os.symlink(config_path, './xbuddy_config.ini')
/external/angle/infra/specs/
DPRESUBMIT.py19 config_path = os.path.join(input_api.PresubmitLocalPath(), 'angle_mb_config.pyl')
37 config_path,
/external/adhd/sound_card_init/amp/src/max98390d/
Dmod.rs94 pub fn new(card_name: &str, config_path: &Path) -> Result<Self> { in new()
95 let conf = fs::read_to_string(config_path) in new()
96 .map_err(|e| Error::FileIOFailed(config_path.to_path_buf(), e))?; in new()
/external/openscreen/testing/libfuzzer/
Dgen_fuzzer_config.py78 config_path = args.config
79 with open(config_path, 'w') as options_file:
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Ddependency_info.py6 def __init__(self, dependency, platform, config_path, local_path_info=None, argument
31 self._config_paths = [config_path]
/external/adhd/sound_card_init/amp/src/max98373d/
Dmod.rs101 pub fn new(card_name: &str, config_path: &Path) -> Result<Self> { in new()
102 let conf = fs::read_to_string(config_path) in new()
103 .map_err(|e| Error::FileIOFailed(config_path.to_path_buf(), e))?; in new()
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_config.py89 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, 'r') as f:
298 config_path = findfile('cfgparser.1')
299 conf.defaultCfg['foo'] = config.IdleConfParser(config_path)
300 conf.userCfg['foo'] = config.IdleUserConfParser(config_path)
/external/autotest/site_utils/lxc/
Dbase_image.py157 config_path = os.path.join(base_path, 'config')
162 config=config_path))
/external/llvm-project/clang/utils/check_cfc/
Dcheck_cfc.py327 config_path = os.path.join(scriptdir, 'check_cfc.cfg') variable
329 config.read(os.path.join(config_path))
332 "using defaults.".format(config_path))

12