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

12

/external/chromium/testing/gtest/xcode/Scripts/
H A Dversiongenerate.py64 config_file = open("%s/configure.ac" % input_dir, 'r') variable
66 opening_string = config_file.read(buffer_size)
67 config_file.close()
/external/protobuf/gtest/xcode/Scripts/
H A Dversiongenerate.py35 config_file = open("%s/configure.ac" % input_dir, 'r') variable
37 opening_string = config_file.read(buffer_size)
38 config_file.close()
/external/dbus/bus/
H A Dtest-launch-helper.c102 DBusString config_file; local
117 if (!_dbus_string_init (&config_file))
119 if (!_dbus_string_append (&config_file, dir))
121 if (!_dbus_string_append (&config_file, "/valid-config-files-system/debug-allow-all-pass.conf"))
126 _dbus_string_get_const_data (&config_file));
128 _dbus_string_free (&config_file);
H A Dmain.c119 check_two_config_files (const DBusString *config_file, argument
122 if (_dbus_string_get_length (config_file) > 0)
125 extra_arg, _dbus_string_get_const_data (config_file));
265 DBusString config_file; local
279 if (!_dbus_string_init (&config_file))
319 check_two_config_files (&config_file, "system");
321 if (!_dbus_append_system_config_file (&config_file))
326 check_two_config_files (&config_file, "session");
328 if (!_dbus_append_session_config_file (&config_file))
335 check_two_config_files (&config_file, "confi
[all...]
H A Dtest.c298 DBusString config_file; local
302 if (!_dbus_string_init (&config_file))
309 &config_file, 0))
312 _dbus_string_free (&config_file);
318 if (!_dbus_concat_dir_and_file (&config_file, &relative))
321 _dbus_string_free (&config_file);
326 context = bus_context_new (&config_file, FALSE, NULL, NULL, NULL, FALSE, &error);
336 _dbus_string_free (&config_file);
341 _dbus_string_free (&config_file);
H A Dactivation-helper.c404 DBusString config_file; local
429 if (!_dbus_string_init (&config_file))
435 if (!_dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE))
441 if (!_dbus_string_append (&config_file, test_config_file))
450 _dbus_string_get_const_data (&config_file));
453 *parser = bus_config_load (&config_file, TRUE, NULL, error);
463 _dbus_string_free (&config_file);
H A Dbus.c47 char *config_file; member in struct:BusContext
680 bus_context_new (const DBusString *config_file, argument
713 if (!_dbus_string_copy_data (config_file, &context->config_file))
733 parser = bus_config_load (config_file, TRUE, NULL, error);
948 DBusString config_file; local
955 _dbus_string_init_const (&config_file, context->config_file);
956 parser = bus_config_load (&config_file, TRUE, NULL, error);
1089 dbus_free (context->config_file);
[all...]
H A Dbus.h74 BusContext* bus_context_new (const DBusString *config_file,
/external/libvpx/vp8/encoder/
H A Dparms.cpp77 ifstream config_file(filename);
82 while(!config_file.eof() && config_file.is_open())
84 config_file >> variable;
85 config_file >> equal;
90 config_file >> value;
/external/chromium/chrome/browser/policy/
H A Dconfig_dir_policy_provider.cc67 for (FilePath config_file = file_enumerator.Next();
68 !config_file.empty();
69 config_file = file_enumerator.Next()) {
70 if (file_util::GetFileInfo(config_file, &file_info) &&
/external/grub/stage2/
H A Dstage1_5.c39 if (grub_open (config_file))
H A Dstage2.c595 char *new_file = config_file;
884 grub_strncat (default_file, config_file, DEFAULT_FILE_BUFLEN);
923 is_opened = grub_open (config_file);
/external/grub/grub/
H A Dmain.c105 --config-file=FILE specify stage2 config_file [default=%s]\n\
143 if (config_file)
144 default_config_file = config_file;
175 strncpy (config_file, optarg, 127); /* FIXME: arbitrary */
176 config_file[127] = '\0';
/external/dbus/dbus/
H A Ddbus-sysdeps-win.h83 dbus_bool_t _dbus_get_config_file_name(DBusString *config_file,
H A Ddbus-sysdeps-win.c2978 _dbus_get_config_file_name(DBusString *config_file, char *s) argument
2993 if (!_dbus_string_append (config_file, path))
3007 if (!_dbus_string_append (config_file, path))
3021 if (!_dbus_string_append (config_file, path))
/external/dbus/tools/
H A Ddbus-launch.c767 char *config_file; local
770 config_file = NULL;
835 if (config_file != NULL)
844 config_file = xstrdup (file);
849 if (config_file != NULL)
855 config_file = xstrdup (arg);
1049 config_file ? "--config-file" : "--session",
1050 config_file, /* has to be last in this varargs list */
1064 config_file ? "--config-file" : "--session",
1065 config_file, /* ha
[all...]
/external/webkit/Tools/wx/build/
H A Dbuild_utils.py170 config_file = os.path.join(wk_root, 'WebKitBuild', 'Configuration')
173 if os.path.exists(config_file):
174 config = open(config_file).read()
/external/linux-tools-perf/util/
H A Dconfig.c19 static FILE *config_file; variable
32 if ((f = config_file) != NULL) {
364 config_file = f;
/external/ppp/pppd/plugins/radius/
H A Dradius.c51 static char *config_file = NULL; variable
60 { "radius-config-file", o_string, &config_file },
116 char config_file[MAXPATHLEN]; member in struct:radius_state
165 strlcpy(rstate.config_file, "/etc/radiusclient/radiusclient.conf",
166 sizeof(rstate.config_file));
1216 if (config_file && *config_file) {
1217 strlcpy(rstate.config_file, config_file, MAXPATHLEN-1);
1222 if (rc_read_config(rstate.config_file) !
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetFile.py250 def __init__ (self, config_file, options):
251 self.config_file = config_file
253 if self.config_file == "":
255 if not FileExists(self.config_file):
256 self.InitializeConfig(self.config_file)
258 config.read(self.config_file)
279 config.filename = FileJustRoot(self.config_file) + ".JET"
736 self.config_file = configFile
H A DJetUtils.py756 tmpConfigFile = dirname + FileJustName(org_jet_file.config_file)
764 jet_file.config_file = tmpConfigFile
776 FileKillClean(jet_file.config_file)
/external/wpa_supplicant_8/wpa_supplicant/
H A Dnmake.mak137 $(OBJDIR)\config_file.obj $(OBJDIR)\base64.obj
141 $(OBJDIR)\config_file.obj $(OBJDIR)\base64.obj
144 $(OBJDIR)\config_file.obj \
/external/wpa_supplicant_8/hostapd/
H A Dmain.c25 #include "config_file.h"
151 * @config_file: Path to the configuration file
158 static struct hostapd_iface * hostapd_init(const char *config_file) argument
169 hapd_iface->config_fname = os_strdup(config_file);
/external/chromium-trace/trace-viewer/examples/stream_server/
H A Dstandalone.py700 parser.add_option('--config', dest='config_file', type='string',
847 if temporary_options.config_file:
849 config_fp = open(temporary_options.config_file, 'r')
853 temporary_options.config_file,
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dstandalone.py696 parser.add_option('--config', dest='config_file', type='string',
843 if temporary_options.config_file:
845 config_fp = open(temporary_options.config_file, 'r')
849 temporary_options.config_file,

Completed in 467 milliseconds

12