Home
last modified time | relevance | path

Searched refs:config_file (Results 1 - 25 of 115) sorted by relevance

12345

/kernel/linux/linux-5.10/Documentation/sphinx/
H A Dload_config.py19 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 Dload_config.py19 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 Drakefile_helper.rb16 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 Drakefile_helper.rb15 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 Dcli.c36 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 Drakefile_helper.rb15 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 Dfips_version_test.c46 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 Dprovider_status_test.c206 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 Dthreadstest.c33 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 Drakefile_helper.rb10 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 Drakefile_helper.rb14 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)
/kernel/linux/linux-5.10/scripts/dtc/
H A Ddt_to_config402 } 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 Ddt_to_config402 } 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 Dtoggle_legacy_flag.py68 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 Dgenerate_module.rb113 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 Dprovider.c17 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 Dupload_to_android.py177 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 Dparser.py448 (GetTestNameFromFileName(config_file), GetISAsFromFileName(config_file),
449 LoadJSON(config_file))
450 for config_file in config_files
/third_party/toybox/toys/pending/
H A Dsyslogd.c58 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 Dohos_daemon-conf.c91 .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 Ddaemon-conf.c91 .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 Dgenerate_module.rb117 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 Dcode_generator.py81 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 Dstreamline_config.pl125 my @config_file = read_config;
426 foreach my $line (@config_file) {
616 foreach my $line (@config_file) {
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dstreamline_config.pl125 my @config_file = read_config;
426 foreach my $line (@config_file) {
616 foreach my $line (@config_file) {

Completed in 14 milliseconds

12345