Home
last modified time | relevance | path

Searched refs:ExecCommand (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
DOSUCommand.java17 private final ExecCommand mExecCommand;
21 private static final Map<String, ExecCommand> sExecs = new HashMap<>();
29 sExecs.put("launchbrowsertouri", ExecCommand.Browser);
30 sExecs.put("getcertificate", ExecCommand.GetCert);
31 sExecs.put("useclientcerttls", ExecCommand.UseClientCertTLS);
32 sExecs.put("uploadmo", ExecCommand.UploadMO);
114 public ExecCommand getExecCommand() { in getExecCommand()
DExecCommand.java3 public enum ExecCommand {Browser, GetCert, UseClientCertTLS, UploadMO} enum
DOSUClient.java98 if (regResponse.getExecCommand() == ExecCommand.UseClientCertTLS) { in provision()
121 if (regResponse.getExecCommand() != ExecCommand.Browser) { in provision()
230 if (pddResponse.getExecCommand() == ExecCommand.UploadMO) { in remediate()
247 if (pddResponse.getExecCommand() == ExecCommand.Browser) { in remediate()
275 } else if (pddResponse.getExecCommand() == ExecCommand.GetCert) { in remediate()
404 response.getExecCommand() == ExecCommand.GetCert) { in checkResponse()
DPostDevDataResponse.java33 public ExecCommand getExecCommand() { in getExecCommand()