Home
last modified time | relevance | path

Searched refs:extraOptions (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DGceRemoteCmdFormatter.java46 List<String> extraOptions, in getSshCommand() argument
60 if (extraOptions != null) { in getSshCommand()
61 for (String op : extraOptions) { in getSshCommand()
86 List<String> extraOptions, in getScpCommand() argument
102 if (extraOptions != null) { in getScpCommand()
103 for (String op : extraOptions) { in getScpCommand()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommand.java232 JSONArray extraOptions = json.optJSONArray("extra_options"); in fromJson() local
233 if (extraOptions != null) { in fromJson()
234 for (int i = 0; i < extraOptions.length(); i++) { in fromJson()
235 JSONObject entry = extraOptions.getJSONObject(i); in fromJson()
DClusterCommandConfigBuilder.java292 UniqueMultiMap<String, String> extraOptions = mCommand.getExtraOptions(); in build()
293 for (String key : extraOptions.keySet()) { in build()
294 for (String value : extraOptions.get(key)) { in build()