Home
last modified time | relevance | path

Searched refs:jsonKeyFile (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DGCSFileUploader.java36 public GCSFileUploader(File jsonKeyFile) { in GCSFileUploader() argument
37 super(jsonKeyFile); in GCSFileUploader()
DGCSCommon.java43 public GCSCommon(File jsonKeyFile) { in GCSCommon() argument
44 mJsonKeyFile = jsonKeyFile; in GCSCommon()
DRestApiHelper.java94 String baseUri, File jsonKeyFile, Collection<String> scopes) in newInstanceWithGoogleCredential() argument
98 GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, scopes); in newInstanceWithGoogleCredential()
DGCSFileDownloader.java60 public GCSFileDownloader(File jsonKeyFile) { in GCSFileDownloader() argument
61 super(jsonKeyFile); in GCSFileDownloader()
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DGceManager.java629 GceAvdInfo infos, File avdConfigFile, File jsonKeyFile, IRunUtil runUtil) { in getInstanceSerialLog() argument
639 Credential credential = createCredential(config, jsonKeyFile); in getInstanceSerialLog()
661 private static Credential createCredential(AcloudConfigParser config, File jsonKeyFile) in createCredential() argument
663 if (jsonKeyFile != null) { in createCredential()
664 return GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, SCOPES); in createCredential()
666 jsonKeyFile = in createCredential()
668 return GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, SCOPES); in createCredential()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DTestDeviceOptions.java557 public void setServiceAccountJsonKeyFile(File jsonKeyFile) { in setServiceAccountJsonKeyFile() argument
558 mJsonKeyFile = jsonKeyFile; in setServiceAccountJsonKeyFile()