/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | load_config.py | 19 config_file = os.environ.get("SPHINX_CONF", None) 20 if (config_file is not None 21 and os.path.normpath(namespace["__file__"]) != os.path.normpath(config_file) ): 22 config_file = os.path.abspath(config_file) 25 start = config_file.find('Documentation/') 27 start = config_file.find('/', start + 1) 29 end = config_file.rfind('/') 31 dir = config_file[start + 1:end] 47 if os.path.isfile(config_file) [all...] |
/kernel/linux/linux-6.6/Documentation/sphinx/ |
H A D | load_config.py | 19 config_file = os.environ.get("SPHINX_CONF", None) 20 if (config_file is not None 21 and os.path.normpath(namespace["__file__"]) != os.path.normpath(config_file) ): 22 config_file = os.path.abspath(config_file) 25 start = config_file.find('Documentation/') 27 start = config_file.find('/', start + 1) 29 end = config_file.rfind('/') 31 dir = config_file[start + 1:end] 47 if os.path.isfile(config_file) [all...] |
/third_party/cJSON/tests/unity/extras/fixture/ |
H A D | rakefile_helper.rb | 16 def load_configuration(config_file) 19 $cfg_file = HERE + "../../test/targets/#{config_file}" unless config_file =~ /[\\|\/]/ 22 $configured = true if config_file != DEFAULT_CONFIG_FILE 29 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 30 config_file += '.yml' unless config_file =~ /\.yml$/ 31 config_file = config_file unless config_file [all...] |
/third_party/cJSON/tests/unity/test/ |
H A D | rakefile_helper.rb | 15 def load_configuration(config_file) 18 $cfg_file = "targets/#{config_file}" unless config_file =~ /[\\|\/]/ 21 $configured = true if config_file != DEFAULT_CONFIG_FILE 28 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 29 config_file += '.yml' unless config_file =~ /\.yml$/ 30 config_file = config_file unless config_file [all...] |
/third_party/alsa-utils/alsamixer/ |
H A D | cli.c | 36 static const char* config_file = CONFIG_DEFAULT; variable 106 config_file = optarg; in parse_options() 109 config_file = NULL; in parse_options() 166 if (config_file == CONFIG_DEFAULT) in main() 168 else if (config_file) in main() 169 parse_config_file(config_file); in main()
|
/third_party/unity/test/ |
H A D | rakefile_helper.rb | 15 def load_configuration(config_file) 18 $cfg_file = "targets/#{config_file}" unless config_file =~ /[\\|\/]/ 21 $configured = true if config_file != DEFAULT_CONFIG_FILE 28 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 29 config_file += '.yml' unless config_file =~ /\.yml$/ 30 config_file = config_file unless config_file [all...] |
/third_party/openssl/test/ |
H A D | fips_version_test.c | 46 char *config_file = NULL; in setup_tests() local 53 config_file = opt_arg(); in setup_tests() 63 if (!test_get_libctx(&libctx, NULL, config_file, &libprov, NULL)) in setup_tests()
|
H A D | provider_status_test.c | 206 char *config_file = NULL; in setup_tests() local 211 config_file = opt_arg(); in setup_tests() 231 if (!OSSL_LIB_CTX_load_config(libctx, config_file)) { in setup_tests()
|
H A D | threadstest.c | 33 static char *config_file = NULL; variable 246 if (libctx && !TEST_true(test_get_libctx(&multi_libctx, NULL, config_file, in thread_setup_libctx() 488 if (!TEST_true(test_get_libctx(&multi_libctx, NULL, config_file, in test_multi() 655 if (!TEST_int_eq(OSSL_LIB_CTX_load_config(multi_libctx, config_file), 1)) in test_lib_ctx_load_config_worker() 696 config_file = opt_arg(); in setup_tests()
|
/third_party/cJSON/tests/unity/examples/example_3/ |
H A D | rakefile_helper.rb | 10 def load_configuration(config_file) 11 $cfg_file = config_file 19 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 20 config_file += '.yml' unless config_file =~ /\.yml$/ 21 load_configuration(config_file)
|
/third_party/unity/examples/example_3/ |
H A D | rakefile_helper.rb | 14 def load_configuration(config_file) 15 $cfg_file = config_file 23 def configure_toolchain(config_file = DEFAULT_CONFIG_FILE) 24 config_file += '.yml' unless config_file =~ /\.yml$/ 25 load_configuration(config_file)
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/ |
H A D | hi_config_parser.py | 53 self.config_file = self.get_default_config_file() 54 #print('config file:',self.config_file) 55 if os.path.exists(self.config_file) is False: 71 if self.config_file is None: 73 with open(self.config_file, 'r') as cfg:
|
/kernel/linux/linux-5.10/scripts/dtc/ |
H A D | dt_to_config | 402 } elsif (($config_file) && ($configs =~ /CONFIG_/)) { 464 if ($config_file) { 945 if (! -r $config_file) { 946 print STDERR "file '$config_file' is not readable or does not exist\n"; 950 if (!open(CONFIG_FILE, "<", "$config_file")) { 951 print STDERR "open $config_file failed\n"; 989 "c=s" => \$config_file, 990 "config=s" => \$config_file, 1168 if ($config_file) {
|
/kernel/linux/linux-6.6/scripts/dtc/ |
H A D | dt_to_config | 402 } elsif (($config_file) && ($configs =~ /CONFIG_/)) { 464 if ($config_file) { 945 if (! -r $config_file) { 946 print STDERR "file '$config_file' is not readable or does not exist\n"; 950 if (!open(CONFIG_FILE, "<", "$config_file")) { 951 print STDERR "open $config_file failed\n"; 989 "c=s" => \$config_file, 990 "config=s" => \$config_file, 1168 if ($config_file) {
|
/third_party/skia/tools/rebaseline/ |
H A D | toggle_legacy_flag.py | 68 config_file = os.path.join('skia', 'config', 'SkUserConfig.h') 69 with open(config_file) as f: 87 with open(config_file, 'w') as f:
|
/third_party/cJSON/tests/unity/auto/ |
H A D | generate_module.rb | 113 def self.grab_config(config_file) 115 unless config_file.nil? || config_file.empty? 117 yaml_guts = YAML.load_file(config_file) 119 raise "No :unity or :cmock section found in #{config_file}" unless options
|
/third_party/openssl/test/testutil/ |
H A D | provider.c | 17 const char *config_file, in test_get_libctx() 35 if (config_file != NULL in test_get_libctx() 36 && !OSSL_LIB_CTX_load_config(new_libctx, config_file)) { in test_get_libctx() 37 opt_printf_stderr("Error loading config from file %s\n", config_file); in test_get_libctx() 16 test_get_libctx(OSSL_LIB_CTX **libctx, OSSL_PROVIDER **default_null_prov, const char *config_file, OSSL_PROVIDER **provider, const char *module_name) test_get_libctx() argument
|
/third_party/skia/tools/android/ |
H A D | upload_to_android.py | 177 config_file = os.path.join('include', 'config', 'SkUserConfigManual.h') 179 with open(config_file) as f: 190 with open(config_file, 'w') as f: 194 subprocess.check_call('git add %s' % config_file, shell=True)
|
/third_party/vixl/tools/test_generator/ |
H A D | parser.py | 448 (GetTestNameFromFileName(config_file), GetISAsFromFileName(config_file), 449 LoadJSON(config_file)) 450 for config_file in config_files
|
/third_party/toybox/toys/pending/ |
H A D | syslogd.c | 58 char *config_file; 186 if (!(fp = fopen(TT.config_file, "r")) && (toys.optflags & FLAG_f)) in parse_config_file() 187 perror_exit("can't open '%s'", TT.config_file); in parse_config_file() 200 error_msg("error in '%s' at line %d", TT.config_file, lineno); in parse_config_file() 215 error_msg("error in '%s' at line %d", TT.config_file, lineno); in parse_config_file() 416 TT.config_file = (toys.optflags & FLAG_f) ? in syslogd_main() 417 TT.config_file : "/etc/syslog.conf"; //DEFCONFFILE in syslogd_main()
|
/third_party/pulseaudio/src/daemon/ |
H A D | ohos_daemon-conf.c | 91 .config_file = NULL, 186 pa_xfree(c->config_file); in pa_daemon_conf_free() 665 pa_xfree(c->config_file); in pa_daemon_conf_load() 666 c->config_file = NULL; in pa_daemon_conf_load() 681 pa_fopen_cloexec(c->config_file = pa_xstrdup(filename), "r") : in pa_daemon_conf_load() 682 pa_open_config_file(default_config_file, DEFAULT_CONFIG_FILE_USER, ENV_CONFIG_FILE, &c->config_file); in pa_daemon_conf_load() 692 r = f ? pa_config_parse(c->config_file, f, table, NULL, true, NULL) : 0; in pa_daemon_conf_load() 787 if (c->config_file) in pa_daemon_conf_dump() 788 pa_strbuf_printf(s, _("### Read from configuration file: %s ###\n"), c->config_file); in pa_daemon_conf_dump()
|
H A D | daemon-conf.c | 91 .config_file = NULL, 186 pa_xfree(c->config_file); in pa_daemon_conf_free() 665 pa_xfree(c->config_file); in pa_daemon_conf_load() 666 c->config_file = NULL; in pa_daemon_conf_load() 681 pa_fopen_cloexec(c->config_file = pa_xstrdup(filename), "r") : in pa_daemon_conf_load() 682 pa_open_config_file(default_config_file, DEFAULT_CONFIG_FILE_USER, ENV_CONFIG_FILE, &c->config_file); in pa_daemon_conf_load() 692 r = f ? pa_config_parse(c->config_file, f, table, NULL, true, NULL) : 0; in pa_daemon_conf_load() 787 if (c->config_file) in pa_daemon_conf_dump() 788 pa_strbuf_printf(s, _("### Read from configuration file: %s ###\n"), c->config_file); in pa_daemon_conf_dump()
|
/third_party/unity/auto/ |
H A D | generate_module.rb | 117 def self.grab_config(config_file) 119 unless config_file.nil? || config_file.empty? 121 yaml_guts = YamlHelper.load_file(config_file) 123 raise "No :unity or :cmock section found in #{config_file}" unless options
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | code_generator.py | 81 config_file = arg_options.config 82 config_base = os.path.dirname(config_file) 92 config_json_file = open(config_file, "r") 124 return (jinja_dir, config_file, init_defaults(config_partial, "", defaults)) 572 jinja_dir, config_file, config = read_config() 590 inputs.append(config_file)
|
/kernel/linux/linux-5.10/scripts/kconfig/ |
H A D | streamline_config.pl | 125 my @config_file = read_config; 426 foreach my $line (@config_file) { 616 foreach my $line (@config_file) {
|