Home
last modified time | relevance | path

Searched refs:config_file (Results 1 – 25 of 81) sorted by relevance

1234

/external/autotest/client/site_tests/platform_CrosDisksFilesystem/
Dcontrol22 config_file='exfat_tests', tag='exfat')
24 config_file='ext2_tests', tag='ext2')
26 config_file='ext3_tests', tag='ext3')
28 config_file='ext4_tests', tag='ext4')
30 config_file='ntfs_tests', tag='ntfs')
32 config_file='vfat_tests', tag='vfat')
/external/libvpx/libvpx/build/make/
Diosbuild.sh101 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}"
/external/libaom/libaom/build/cmake/
Diosbuild.sh101 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}"
/external/autotest/client/site_tests/camera_V4L2/src/
Dcamera_characteristics.cc101 const base::FilePath& config_file) { in CameraCharacteristics() argument
102 InitFrom(config_file); in CameraCharacteristics()
105 void CameraCharacteristics::InitFrom(const base::FilePath& config_file) { in InitFrom() argument
106 CHECK(base::PathExists(config_file)) in InitFrom()
107 << config_file.value() << " does not exist"; in InitFrom()
108 std::ifstream ifs(config_file.value()); in InitFrom()
109 CHECK(ifs.good()) << "Can't open file " << config_file.value(); in InitFrom()
/external/autotest/client/common_lib/
Dglobal_config.py84 config_file = DEFAULT_CONFIG_FILE variable in global_config_class
119 def set_config_files(self, config_file=DEFAULT_CONFIG_FILE, argument
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/vboot_reference/scripts/image_signing/
Dmake_dev_ssd.sh76 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/python/setuptools/setuptools/command/
Dalias.py5 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'):
Dsetopt.py14 def config_file(kind="local"): function
100 filenames.append(config_file('global'))
102 filenames.append(config_file('user'))
106 filenames.append(config_file('local'))
/external/google-breakpad/src/testing/gtest/xcode/Scripts/
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/googletest/googletest/xcode/Scripts/
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/vboot_reference/futility/
Dcmd_vbutil_kernel.c228 char *config_file = NULL; in do_vbutil_kernel() local
348 config_file = optarg; in do_vbutil_kernel()
406 if (!config_file) in do_vbutil_kernel()
409 Debug("Reading %s\n", config_file); in do_vbutil_kernel()
411 ReadConfigFile(config_file, &t_config_size); in do_vbutil_kernel()
498 if (config_file) { in do_vbutil_kernel()
499 Debug("Reading %s\n", config_file); in do_vbutil_kernel()
501 ReadConfigFile(config_file, &t_config_size); in do_vbutil_kernel()
/external/autotest/client/cros/
Dnetwork_chroot.py245 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:
Dhostapd_server.py117 config_file = '%s/%s' % (self._config_directory, filename)
118 with open(config_file, 'w') as f:
125 config_file = self.write_config()
127 [self.HOSTAPD_EXECUTABLE, '-dd', config_file])
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Dexceptions.py12 def __init__(self, config_type, config_file): argument
15 'due to no specified config type' % config_file)
18 'by the dependency manager.' % (config_file, config_type))
/external/autotest/client/site_tests/platform_CrosDisksRename/
Dcontrol22 config_file='vfat_tests', tag='vfat')
24 config_file='exfat_tests', tag='exfat')
26 config_file='ntfs_tests', tag='ntfs')
/external/tensorflow/tensorflow/python/debug/cli/
Dcli_config.py125 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)
/external/autotest/client/common_lib/cros/
Davahi_utils.py83 def avahi_start(config_file=None, host=None): argument
96 if config_file is not None:
97 env = ' AVAHI_DAEMON_CONF="%s"' % config_file
130 avahi_start(config_file=conf, host=host)
/external/yapf/yapf/yapflib/
Dfile_resources.py54 config_file = os.path.join(dirname, style.SETUP_CONFIG)
55 if os.path.exists(config_file):
56 with open(config_file) as fd:
60 return config_file
/external/tensorflow/tensorflow/contrib/kinesis/kernels/
Dkinesis_dataset_ops.cc47 Aws::String config_file; in InitializeDefaultClientConfig() local
51 config_file = config_file_env; in InitializeDefaultClientConfig()
55 config_file = home_env; in InitializeDefaultClientConfig()
56 config_file += "/.aws/config"; in InitializeDefaultClientConfig()
59 Aws::Config::AWSConfigFileProfileConfigLoader loader(config_file); in InitializeDefaultClientConfig()
68 LOG(WARNING) << "Failed to load the profile in " << config_file << "."; in InitializeDefaultClientConfig()
/external/skia/tools/android/
Dupload_to_android.py175 config_file = os.path.join('include', 'config', 'SkUserConfigManual.h')
177 with open(config_file) as f:
188 with open(config_file, 'w') as f:
192 subprocess.check_call('git add %s' % config_file, shell=True)
/external/vixl/tools/test_generator/
Dparser.py448 (GetTestNameFromFileName(config_file), GetISAsFromFileName(config_file),
449 LoadJSON(config_file))
450 for config_file in config_files
/external/skqp/tools/android/
Dupload_to_android.py175 config_file = os.path.join('include', 'config', 'SkUserConfigManual.h')
177 with open(config_file) as f:
188 with open(config_file, 'w') as f:
192 subprocess.check_call('git add %s' % config_file, shell=True)
/external/jsoncpp/
Ddoxybuild.py49 def run_doxygen(doxygen_path, config_file, working_dir, is_silent): argument
50 config_file = os.path.abspath( config_file )
55 cmd = [doxygen_path, config_file]
/external/autotest/site_utils/lxc/
Dconfig.py205 def __init__(self, container, config_file=None): argument
216 if config_file is None:
219 config_file = (
225 with open(config_file) as f:
/external/autotest/server/hosts/
Dservo_repair.py44 def _get_config_val(host, config_file, attr): argument
56 '. $CONFIG && echo $%s' % (config_file, attr))
61 def _validate_attr(host, val, expected_val, attr, config_file): argument
81 'is not set' % (attr, config_file))

1234