HomeSort by relevance Sort by last modified time
    Searched refs:config_file (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/dbus/bus/
test-launch-helper.c 102 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);
test.c 267 DBusString config_file; local
271 if (!_dbus_string_init (&config_file))
278 &config_file, 0))
281 _dbus_string_free (&config_file);
287 if (!_dbus_concat_dir_and_file (&config_file, &relative))
290 _dbus_string_free (&config_file);
295 context = bus_context_new (&config_file, BUS_CONTEXT_FLAG_NONE, NULL, NULL, NULL, &error);
305 _dbus_string_free (&config_file);
310 _dbus_string_free (&config_file);
main.c 169 check_two_config_files (const DBusString *config_file,
172 if (_dbus_string_get_length (config_file) > 0)
175 extra_arg, _dbus_string_get_const_data (config_file));
348 DBusString config_file; local
360 if (!_dbus_string_init (&config_file))
417 check_two_config_files (&config_file, "system");
419 if (!_dbus_append_system_config_file (&config_file))
424 check_two_config_files (&config_file, "session");
426 if (!_dbus_append_session_config_file (&config_file))
433 check_two_config_files (&config_file, "config-file")
    [all...]
activation-helper.c 386 DBusString config_file; local
414 if (!_dbus_string_init (&config_file))
420 if (!_dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE))
426 if (!_dbus_string_append (&config_file, test_config_file))
435 _dbus_string_get_const_data (&config_file));
438 *parser = bus_config_load (&config_file, TRUE, NULL, error);
448 _dbus_string_free (&config_file);
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
config.py 708 def _WriteConfigLineMaybeCommented(self, config_file, name, value, desc):
715 config_file: File object to which the resulting config file will be
724 config_file.write('%s = %s\n' % (name, value))
726 def _WriteProxyConfigFileSection(self, config_file):
730 config_file: File object to which the resulting config file will be
734 config_file.write
    [all...]
  /external/google-breakpad/src/testing/gtest/xcode/Scripts/
versiongenerate.py 64 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/
versiongenerate.py 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable
66 opening_string = config_file.read(buffer_size)
67 config_file.close()
  /external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/Scripts/
versiongenerate.py 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable
66 opening_string = config_file.read(buffer_size)
67 config_file.close()
  /external/libvpx/libvpx/build/make/
iosbuild.sh 97 local config_file="${HEADER_DIR}/vpx_config.h"
119 printf "%s" "${file_header}" > "${config_file}"
122 printf " ${preproc_symbol}\n" >> "${config_file}"
123 printf "#define VPX_FRAMEWORK_TARGET \"${target}\"\n" >> "${config_file}"
124 printf "#include \"VPX/vpx/${target}/vpx_config.h\"\n" >> "${config_file}"
125 printf "#elif defined" >> "${config_file}"
131 sed -i '' -e '$d' "${config_file}"
133 printf "#endif\n\n" >> "${config_file}"
134 printf "#endif // ${include_guard}" >> "${config_file}"
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
exceptions.py 12 def __init__(self, config_type, config_file):
15 'due to no specified config type' % config_file)
18 'by the dependency manager.' % (config_file, config_type))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/
scriptbase.py 9 def __init__(self, config_file=None):
13 if config_file:
14 boto.config.read(config_file)
  /external/autotest/server/site_tests/android_ACTS/
android_ACTS.py 52 def run_once(self, testbed=None, config_file=None, testbed_name=None,
59 @param config_file: Path to config file locally. Required.
68 if not config_file:
70 self.fetch_file(config_file, TEST_CONFIG_FILE_FOLDER)
75 os.path.join(self.ts_tempfolder, os.path.basename(config_file)),
91 with open(config_file, 'r') as f:
  /external/autotest/client/common_lib/
global_config.py 82 config_file = DEFAULT_CONFIG_FILE variable in class:global_config_class
93 def set_config_files(self, config_file=DEFAULT_CONFIG_FILE,
96 self.config_file = config_file
263 if self.config_file and os.path.exists(self.config_file):
264 self.config.read(self.config_file)
266 raise ConfigError('%s not found' % (self.config_file))
  /external/vboot_reference/scripts/image_signing/
make_dev_ssd.sh 76 local config_file
79 config_file="$mount_point/efi/boot/grub.cfg"
80 [ ! -f "$config_file" ] ||
81 sudo sed -i 's/^ *set default=2 *$/set default=0/g' "$config_file"
82 config_file="$mount_point/syslinux/default.cfg"
83 [ ! -f "$config_file" ] ||
84 sudo sed -i 's/-vusb/-usb/g; s/-vhd/-hd/g' "$config_file"
  /external/autotest/client/common_lib/cros/
avahi_utils.py 83 def avahi_start(config_file=None, host=None):
89 @param config_file: The filename of the avahi-daemon config file or None to
96 if config_file is not None:
97 env = ' AVAHI_DAEMON_CONF="%s"' % config_file
130 avahi_start(config_file=conf, host=host)
  /external/autotest/client/cros/
hostapd_server.py 43 CONFIG_FILE = 'hostapd.conf'
111 ( self.CONFIG_FILE, self.CONFIG_TEMPLATE % config_params),
117 config_file = '%s/%s' % (self._config_directory, filename)
118 with open(config_file, 'w') as f:
120 return '%s/%s' % (self._config_directory, self.CONFIG_FILE)
125 config_file = self.write_config()
127 [self.HOSTAPD_EXECUTABLE, '-dd', config_file])
network_chroot.py 237 for config_file in self._copied_config_files:
238 src_path = os.path.join('/', config_file)
239 dst_path = self.chroot_path(config_file)
265 for config_file, template in self._config_file_templates.iteritems():
266 with open(self.chroot_path(config_file), 'w') as f:
  /external/dbus/dbus/
dbus-sysdeps-win.h 83 dbus_bool_t _dbus_get_config_file_name(DBusString *config_file,
  /external/autotest/client/site_tests/platform_CrosDisksFormat/
platform_CrosDisksFormat.py 70 config_file = '%s/%s' % (self.bindir, kwargs['config_file'])
71 with open(config_file, 'rb') as f:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
servicedef.py 28 def __init__(self, config_file, aws_access_key_id=None, aws_secret_access_key=None):
29 super(ServiceDef, self).__init__(config_file)
  /hardware/libhardware_legacy/wifi/
wifi.c 377 int ensure_config_file_exists(const char *config_file)
385 ret = access(config_file, R_OK|W_OK);
388 (chmod(config_file, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP) != 0)) {
389 ALOGE("Cannot set RW to \"%s\": %s", config_file, strerror(errno));
394 ALOGE("Cannot access \"%s\": %s", config_file, strerror(errno));
404 destfd = TEMP_FAILURE_RETRY(open(config_file, O_CREAT|O_RDWR, 0660));
407 ALOGE("Cannot create \"%s\": %s", config_file, strerror(errno));
416 unlink(config_file);
426 if (chmod(config_file, 0660) < 0) {
428 config_file, strerror(errno))
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
wrs_omxcore.cpp 45 FILE *config_file; local
52 config_file = fopen(config_file_path, "r");
53 if (!config_file) {
56 config_file = fopen(config_file_path, "r");
57 if (!config_file) {
63 while (fscanf(config_file, "%s", library_name) > 0) {
105 fclose(config_file);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 178 FILE *config_file = NULL; local
185 config_file = fopen(PERF_CONFIG_FILE, "rt");
186 if (config_file)
189 while (fgets(line, PERF_CONFIG_LINELENGTH, config_file))
216 fclose(config_file);
  /external/autotest/client/tests/kvm/
get_started.py 89 for config_file in config_file_list:
90 src_file = config_file
91 dst_file = config_file.rstrip(".sample")
  /external/dbus/tools/
dbus-launch.c 824 char *config_file; local
827 config_file = NULL;
892 if (config_file != NULL)
901 config_file = xstrdup (file);
906 if (config_file != NULL)
912 config_file = xstrdup (arg);
1111 config_file ? "--config-file" : "--session",
1112 config_file, /* has to be last in this varargs list */
1126 config_file ? "--config-file" : "--session",
1127 config_file, /* has to be last in this varargs list *
    [all...]

Completed in 1442 milliseconds

1 2 3