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

1 2 3

  /build/make/tools/
auto_gen_test_config_test.py 121 self.config_file = os.path.join(self.test_dir, TEST_MODULE + '.config')
134 argv = [self.config_file,
139 with open(self.config_file) as config_file:
141 self.assertEqual(config_file.read(), empty_config.read())
149 argv = [self.config_file,
154 with open(self.config_file) as config_file:
155 self.assertEqual(config_file.read(), EXPECTED_JUNIT_TEST_CONFIG)
163 argv = [self.config_file,
    [all...]
auto_gen_test_config.py 84 with open(target_config, 'w') as config_file:
85 config_file.write(config)
  /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/googletest/googletest/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/autotest/client/site_tests/camera_V4L2/src/
camera_characteristics.h 53 // Initialize camera characteristics from |config_file|.
54 explicit CameraCharacteristics(const base::FilePath& config_file);
60 void InitFrom(const base::FilePath& config_file);
camera_characteristics.cc 101 const base::FilePath& config_file) {
102 InitFrom(config_file);
105 void CameraCharacteristics::InitFrom(const base::FilePath& config_file) {
106 CHECK(base::PathExists(config_file))
107 << config_file.value() << " does not exist";
108 std::ifstream ifs(config_file.value());
109 CHECK(ifs.good()) << "Can't open file " << config_file.value();
  /external/python/setuptools/setuptools/command/
alias.py 5 from setuptools.command.setopt import edit_config, option_base, config_file
72 if source == config_file('global'):
74 elif source == config_file('user'):
76 elif source == config_file('local'):
setopt.py 11 __all__ = ['config_file', 'edit_config', 'option_base', 'setopt']
14 def config_file(kind="local"): function
29 "config_file() type must be 'local', 'global', or 'user'", kind
100 filenames.append(config_file('global'))
102 filenames.append(config_file('user'))
106 filenames.append(config_file('local'))
  /external/u-boot/tools/env/
fw_env.h 17 #ifdef CONFIG_FILE
18 char *config_file; member in struct:env_opts
  /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/libvpx/libvpx/build/make/
iosbuild.sh 101 local config_file="${HEADER_DIR}/vpx_config.h"
123 printf "%s" "${file_header}" > "${config_file}"
126 printf " ${preproc_symbol}\n" >> "${config_file}"
127 printf "#define VPX_FRAMEWORK_TARGET \"${target}\"\n" >> "${config_file}"
128 printf "#include \"VPX/vpx/${target}/vpx_config.h\"\n" >> "${config_file}"
129 printf "#elif defined" >> "${config_file}"
135 sed -i.bak -e '$d' "${config_file}"
136 rm "${config_file}.bak"
138 printf "#endif\n\n" >> "${config_file}"
139 printf "#endif // ${include_guard}" >> "${config_file}"
    [all...]
  /external/libaom/libaom/build/cmake/
iosbuild.sh 101 local config_file="${HEADER_DIR}/aom_config.h"
124 printf "%s" "${file_header}" > "${config_file}"
127 printf " ${preproc_symbol}\n" >> "${config_file}"
128 printf "#define AOM_FRAMEWORK_TARGET \"${target}\"\n" >> "${config_file}"
129 printf "#include \"AOM/aom/${target}/aom_config.h\"\n" >> "${config_file}"
130 printf "#elif defined" >> "${config_file}"
136 sed -i '' -e '$d' "${config_file}"
138 printf "#endif\n\n" >> "${config_file}"
139 printf "#endif // ${include_guard}" >> "${config_file}"
  /bionic/tests/
dl_test.cpp 219 static void create_ld_config_file(const char* config_file) {
223 std::ofstream fout(config_file, std::ios::out);
252 TemporaryFile config_file; local
253 create_ld_config_file(config_file.path);
254 std::string env = std::string("LD_CONFIG_FILE=") + config_file.path;
275 TemporaryFile config_file; local
276 create_ld_config_file(config_file.path);
277 std::string env = std::string("LD_CONFIG_FILE=") + config_file.path;
305 TemporaryFile config_file; local
306 create_ld_config_file(config_file.path)
    [all...]
  /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 245 for config_file in self._copied_config_files:
246 src_path = os.path.join('/', config_file)
247 dst_path = self.chroot_path(config_file)
277 for config_file, template in self._config_file_templates.iteritems():
278 with open(self.chroot_path(config_file), 'w') as f:
  /external/tensorflow/tensorflow/python/debug/cli/
cli_config.py 125 with gfile.Open(self._config_file_path, "w") as config_file:
126 json.dump(self._config, config_file)
151 with gfile.Open(self._config_file_path, "r") as config_file:
152 config_dict = json.load(config_file)
  /device/linaro/hikey/uefi-tools/
parse-platforms.py 60 if args.config_file:
61 config_filename = args.config_file
  /external/autotest/client/common_lib/
global_config.py 84 config_file = DEFAULT_CONFIG_FILE variable in class:global_config_class
119 def set_config_files(self, config_file=DEFAULT_CONFIG_FILE,
122 self.config_file = config_file
296 if self.config_file and os.path.exists(self.config_file):
297 self.config.read(self.config_file)
299 raise ConfigError('%s not found' % (self.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/skia/tools/rebaseline/
toggle_legacy_flag.py 67 config_file = os.path.join('skia', 'config', 'SkUserConfig.h')
68 with open(config_file) as f:
86 with open(config_file, 'w') as f:
  /external/skqp/tools/rebaseline/
toggle_legacy_flag.py 67 config_file = os.path.join('skia', 'config', 'SkUserConfig.h')
68 with open(config_file) as f:
86 with open(config_file, 'w') as f:
  /external/autotest/client/site_tests/platform_CrosDisksRename/
platform_CrosDisksRename.py 105 config_file = '%s/%s' % (self.bindir, kwargs['config_file'])
106 with open(config_file, 'rb') as f:
  /external/vboot_reference/futility/
cmd_vbutil_kernel.c 228 char *config_file = NULL; local
348 config_file = optarg;
406 if (!config_file)
409 Debug("Reading %s\n", config_file);
411 ReadConfigFile(config_file, &t_config_size);
498 if (config_file) {
499 Debug("Reading %s\n", config_file);
501 ReadConfigFile(config_file, &t_config_size);

Completed in 810 milliseconds

1 2 3