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/
DGCSCommon.java45 public GCSCommon(File jsonKeyFile) { in GCSCommon() argument
46 mJsonKeyFile = jsonKeyFile; in GCSCommon()
51 void setJsonKeyFile(File jsonKeyFile) { in setJsonKeyFile() argument
52 mJsonKeyFile = jsonKeyFile; in setJsonKeyFile()
DGCSFileUploader.java36 public GCSFileUploader(File jsonKeyFile) { in GCSFileUploader() argument
37 super(jsonKeyFile); in GCSFileUploader()
DRestApiHelper.java77 String baseUri, File jsonKeyFile, Collection<String> scopes) in newInstanceWithGoogleCredential() argument
81 GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, scopes); in newInstanceWithGoogleCredential()
DGCSFileDownloader.java73 public GCSFileDownloader(File jsonKeyFile) { in GCSFileDownloader() argument
75 setJsonKeyFile(jsonKeyFile); in GCSFileDownloader()
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DGceManager.java1158 GceAvdInfo infos, File avdConfigFile, File jsonKeyFile, IRunUtil runUtil) { in getInstanceSerialLog() argument
1168 Credentials credential = createCredential(config, jsonKeyFile); in getInstanceSerialLog()
1191 private static Credentials createCredential(AcloudConfigParser config, File jsonKeyFile) in createCredential() argument
1193 if (jsonKeyFile != null) { in createCredential()
1194 return GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, SCOPES); in createCredential()
1196 jsonKeyFile = in createCredential()
1198 return GoogleApiClientUtil.createCredentialFromJsonKeyFile(jsonKeyFile, SCOPES); in createCredential()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DTestDeviceOptions.java780 public void setServiceAccountJsonKeyFile(File jsonKeyFile) { in setServiceAccountJsonKeyFile() argument
781 mJsonKeyFile = jsonKeyFile; in setServiceAccountJsonKeyFile()