Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/util/
DGCSCommon.java50 public GCSCommon(File jsonKeyFile) { in GCSCommon() argument
51 mJsonKeyFile = jsonKeyFile; in GCSCommon()
56 void setJsonKeyFile(File jsonKeyFile) { in setJsonKeyFile() argument
57 mJsonKeyFile = jsonKeyFile; in setJsonKeyFile()
DGCSFileDownloader.java69 public GCSFileDownloader(File jsonKeyFile) { in GCSFileDownloader() argument
70 this(jsonKeyFile, false); in GCSFileDownloader()
73 public GCSFileDownloader(File jsonKeyFile, Boolean createEmptyFile) { in GCSFileDownloader() argument
75 mJsonKeyFile = jsonKeyFile; in GCSFileDownloader()
DGCSFileUploader.java37 public GCSFileUploader(File jsonKeyFile) { in GCSFileUploader() argument
39 mJsonKeyFile = jsonKeyFile; in GCSFileUploader()
DRestApiHelper.java77 String baseUri, File jsonKeyFile, Collection<String> scopes) in newInstanceWithGoogleCredential() argument
81 GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, scopes); in newInstanceWithGoogleCredential()
/tools/tradefederation/core/common_util/com/android/tradefed/util/gcs/
DGCSCommon.java41 protected void setJsonKeyFile(File jsonKeyFile) { in setJsonKeyFile() argument
42 mJsonKeyFile = jsonKeyFile; in setJsonKeyFile()
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DGceManager.java1266 GceAvdInfo infos, File avdConfigFile, File jsonKeyFile, IRunUtil runUtil) { in getInstanceSerialLog() argument
1276 Credentials credential = createCredential(config, jsonKeyFile); in getInstanceSerialLog()
1299 private static Credentials createCredential(AcloudConfigParser config, File jsonKeyFile) in createCredential() argument
1301 if (jsonKeyFile != null) { in createCredential()
1302 return GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, SCOPES); in createCredential()
1304 jsonKeyFile = in createCredential()
1306 return GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, SCOPES); in createCredential()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DTestDeviceOptions.java788 public void setServiceAccountJsonKeyFile(File jsonKeyFile) { in setServiceAccountJsonKeyFile() argument
789 mJsonKeyFile = jsonKeyFile; in setServiceAccountJsonKeyFile()