Home
last modified time | relevance | path

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

12

/tools/acloud/public/
Dconfig_test.py119 self.config_file = mock.MagicMock()
121 self.config_file.read.return_value = self.INTERNAL_CONFIG
123 self.config_file, internal_config_pb2.InternalConfig)
124 self.config_file.read.return_value = self.USER_CONFIG
126 self.config_file, user_config_pb2.UserConfig)
132 self.config_file.read.return_value = self.USER_CONFIG
134 self.config_file, user_config_pb2.UserConfig)
173 config_specify = config.AcloudConfigManager(self.config_file)
174 self.config_file.read.return_value = self.USER_CONFIG
175 self.assertEqual(config_specify.user_config_path, self.config_file)
[all …]
Dconfig.py128 config_mgr = AcloudConfigManager(args.config_file)
392 with open(self.user_config_path, "r") as config_file:
394 config_file, user_config_pb2.UserConfig)
405 def LoadConfigFromProtocolBuffer(config_file, message_type): argument
418 text_format.Merge(config_file.read(), config)
/tools/asuite/atest/
Dconstants.py60 with open(config_path, 'r') as config_file:
61 globals().update(json.load(config_file))
78 with open(config_path, 'r') as config_file:
79 globals().update(json.load(config_file))
/tools/aadevtools/avd/
Dset_avds_force_cold_boot.sh86 config_file="$avd_dir/config.ini"
87 getValue "myAvdId" "AvdId" $config_file
89 getValue "myAvdTagId" "tag.id" $config_file
96 setForceColdBoot $forceColdBoot $forceFastBoot $config_file
Dpatch_all_avds.sh80 config_file="$avd_dir/config.ini"
81 getValue "MY_AVD_ID" "AvdId" $config_file
83 getValue "MY_TAG_ID" "tag.id" $config_file
/tools/test/connectivity/acts/framework/acts/
Dconfig_parser.py95 config_file = config[file_path_key]
96 if type(config_file) is str:
97 if not os.path.isfile(config_file):
98 config_file = os.path.join(config_path, config_file)
99 if not os.path.isfile(config_file):
102 "config file.", config_file)
103 config[file_path_key] = config_file
/tools/treble/build/sandbox/
Dbuild_android_sandboxed.py35 config_file=None, argument
63 if config_file:
64 cfg = config.Config(config_file)
97 overlay_config=config_file,
212 config_file=args['config_file'],
Dbuild_android_sandboxed_test.py182 config_file=test_config.name)
Dnsjail.py192 config_file = os.path.join(script_dir, 'nsjail.cfg')
217 '--config', config_file]
/tools/acloud/setup/
Dsetup.py44 _UpdateConfig(args.config_file, args.update_config[0], args.update_config[1])
59 gcp_runner = gcp_setup_runner.GcpTaskRunner(args.config_file)
126 def _UpdateConfig(config_file, field, value): argument
134 config_mgr = config.AcloudConfigManager(config_file)
/tools/treble/split/
Dmanifest_split_test.py302 tempfile.NamedTemporaryFile('w+t') as config_file, \
383 config_file.write("""
387 config_file.flush()
393 [config_file.name], repo_list_file.name, 'build-target.ninja',
444 config_file.name)
459 tempfile.NamedTemporaryFile('w+t') as config_file, \
Dmanifest_split.py146 for config_file in config_files:
147 root = ET.parse(config_file).getroot()
150 c.attrib["name"]: config_file for c in root.findall("remove_project")
154 {c.attrib["name"]: config_file for c in root.findall("add_project")})
163 {c.attrib["name"]: config_file for c in root.findall("ignore_path")})
/tools/asuite/aidegen/sdk/
Djdk_table.py90 def __init__(self, config_file, jdk_content, jdk_path, argument
102 self._config_file = config_file
107 if os.path.exists(config_file):
108 xml_file = config_file
/tools/acloud/public/actions/
Dremote_instance_cf_device_factory_test.py63 args.config_file = ""
122 args.config_file = ""
165 args.config_file = ""
195 args.config_file = ""
291 args.config_file = ""
361 args.config_file = ""
Dremote_instance_fvp_device_factory_test.py62 args.config_file = ""
/tools/test/connectivity/acts_tests/tests/google/bt/
Drelay_tool.py56 with open(config_path) as config_file:
57 config = json.load(config_file)
/tools/netsim/rust/daemon/src/
Dlib.rs21 mod config_file; module
Drust_main.rs25 use crate::config_file;
232 match config_file::new_from_file(filename) { in run_netsimd_primary()
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/
Dssh.py100 config_file: str = '/dev/null' variable in SSHConfig
136 self.config_file,
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/cellular/
Dcellular_base_test.py123 config_file = json.load(f)
124 self.test_configs = config_file.get(self.TAG)
126 self.log.debug(config_file)
/tools/acloud/public/acloud_kernel/
Dacloud_kernel.py77 config_mgr = config.AcloudConfigManager(args.config_file)
/tools/asuite/atest/test_finders/
Dmodule_finder.py109 config_file = os.path.join(
126 vts_xmls.add(config_file)
129 for config_file in vts_xmls:
132 config_file, vts_out_dir, self.module_info
275 config_file = os.path.join(self.root_dir, rel_config)
277 config_file, self.module_info
Dtf_integration_finder.py89 config_file = os.path.join(self.root_dir, rel_config)
90 xml_root = self._load_xml_file(config_file)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_performance_test_utils/
Dqcom_utils.py220 def push_config(dut, config_file): argument
224 dut.push_system_file(config_file, dst_file)
/tools/acloud/create/
Dcreate.py185 gcp_setup = gcp_setup_runner.GcpTaskRunner(args.config_file)

12