Home
last modified time | relevance | path

Searched refs:has_option (Results 1 – 24 of 24) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
Dprovider.py206 if config.has_option('Credentials', host_opt_name):
209 if config.has_option('Credentials', port_opt_name):
212 if config.has_option('Credentials', host_header_opt_name):
284 if shared.has_option(profile_name, access_key_name):
288 elif config.has_option("profile %s" % profile_name,
297 elif shared.has_option('default', access_key_name):
300 elif config.has_option('Credentials', access_key_name):
311 if shared.has_option(profile_name, secret_key_name):
315 elif config.has_option("profile %s" % profile_name, secret_key_name):
323 elif shared.has_option('default', secret_key_name):
[all …]
Dplugin.py89 if not config.has_option('Plugin', 'plugin_directory'):
Dconnection.py477 if config.has_option('Boto', 'is_secure'):
/external/chromium-trace/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/
Doauth2_plugin.py35 if config.has_option('Credentials', 'gs_oauth2_refresh_token'):
37 elif config.has_option('GoogleCompute', 'service_account'):
53 and config.has_option('Credentials', 'gs_service_key_file')):
Doauth2_helper.py46 if config.has_option('OAuth2', 'token_cache_path_pattern'):
62 if (config.has_option('Boto', 'proxy')
63 and config.has_option('Boto', 'proxy_port')):
/external/sonivox/jet_tools/JetCreator/
DJetFile.py274 if config.has_option(OUTPUT_SECTION, OUTPUT_FILENAME):
281 if config.has_option(OUTPUT_SECTION, OUTPUT_CHASE_CONTROLLERS):
288 if config.has_option(OUTPUT_SECTION, OUTPUT_OMIT_EMPTY_TRACKS):
295 if config.has_option(OUTPUT_SECTION, OUTPUT_COPYRIGHT):
299 if config.has_option(OUTPUT_SECTION, OUTPUT_APP_DATA):
320 if config.has_option(segment_name, SEGMENT_DLSFILE):
322 if config.has_option(segment_name, SEGMENT_START):
324 if config.has_option(segment_name, SEGMENT_END):
326 if config.has_option(segment_name, SEGMENT_LENGTH):
328 if config.has_option(segment_name, SEGMENT_OUTPUT):
[all …]
DJetUtils.py256 if config.has_option(section, option):
291 if config.has_option(JetDefs.RECENT_SECTION, sFile):
/external/autotest/client/tests/kvm/tests/
Dunittest.py55 if parser.has_option(t, 'file'):
74 if parser.has_option(t, 'smp'):
79 if parser.has_option(t, 'extra_params'):
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dutil.py298 if config.has_option('GSUtil', 'resumable_tracker_dir'):
315 has_goog_creds = (config.has_option('Credentials', 'gs_access_key_id') and
316 config.has_option('Credentials', 'gs_secret_access_key'))
317 has_amzn_creds = (config.has_option('Credentials', 'aws_access_key_id') and
318 config.has_option('Credentials', 'aws_secret_access_key'))
320 config.has_option('Credentials', 'gs_oauth2_refresh_token'))
323 config.has_option('Credentials', 'gs_service_client_id') and
324 config.has_option('Credentials', 'gs_service_key_file'))
350 if (config.has_option('Credentials', 'gs_service_client_id')
Dcloud_api_delegator.py159 not config.has_option('Credentials', 'gs_oauth2_refresh_token') and
160 not (config.has_option('Credentials', 'gs_service_client_id')
161 and config.has_option('Credentials', 'gs_service_key_file')) and
162 (config.has_option('Credentials', 'gs_access_key_id')
163 and config.has_option('Credentials', 'gs_secret_access_key'))):
Dgcs_json_api.py303 return config.has_option('Credentials', 'gs_service_key_file')
306 return config.has_option('Credentials', 'gs_oauth2_refresh_token')
309 return config.has_option('GoogleCompute', 'service_account')
D__main__.py253 if not boto.config.has_option('Boto', 'https_validate_certificates'):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
Dservicedef.py42 def has_option(self, option): member in ServiceDef
43 return super(ServiceDef, self).has_option(self.name, option)
Dsonofmmm.py35 if self.sd.has_option('ffmpeg_args'):
40 if self.sd.has_option('output_ext'):
/external/autotest/client/virt/
Dkvm_vm.py164 def has_option(help, option): function
192 if has_option(help, "drive"):
253 if has_option(help, "netdev"):
257 if has_option(help, "device"):
280 if has_option(help, "netdev"):
326 if has_option(help, "sdl"):
341 if has_option(help,"spice"):
348 if has_option(help, "qxl"):
351 if has_option(help, "vga") and vga and vga != "qxl":
353 elif has_option(help, "vga"):
[all …]
/external/chromium-trace/catapult/third_party/coverage/coverage/
Dconfig.py31 def has_option(self, section, option): member in HandyConfigParser
33 return configparser.RawConfigParser.has_option(self, section, option)
307 if cp.has_option(section, option):
/external/autotest/client/bin/
Dtest_config.py72 if not self.parser.has_option(section, option):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/installers/ubuntu/
Debs.py227 use_tag_based_cleanup = boto.config.has_option('EBS', 'use_tag_based_snapshot_cleanup')
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/
Dconfig.py162 if self.has_option(section, name):
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
Dconfig.py1103 if not boto.config.has_option('Boto', 'proxy'):
/external/pdfium/tools/drmemory/scripts/
Dvalgrind_test.py127 if self._parser.has_option(arg.split("=")[0]):
/external/llvm/utils/llvm-build/llvmbuild/
Dcomponentinfo.py449 if not parser.has_option(section, 'type'):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
Dconnection.py51 if config.has_option('MTurk', 'sandbox') and config.get('MTurk', 'sandbox') == 'True':
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
Dupload-diffs.py2107 config.has_option("miscellany", "enable-auto-props") and