HomeSort by relevance Sort by last modified time
    Searched defs:hostnames (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/common/extensions/permissions/
socket_permission.cc 75 std::set<string16> hostnames; local
79 hostnames.insert(UTF8ToUTF16(i->GetHost()));
81 if (!hostnames.empty()) {
82 int id = (hostnames.size() == 1) ?
91 hostnames.begin(), hostnames.end()), ' '))));
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
KnownHosts.java 93 * @param hostnames a list of hostname patterns - at least one most be specified. Check out the
99 public void addHostkey(String hostnames[], String serverHostKeyAlgorithm, byte[] serverHostKey) throws IOException
101 if (hostnames == null)
103 throw new IllegalArgumentException("hostnames may not be null");
112 publicKeys.add(new KnownHostsEntry(hostnames, rpk));
121 publicKeys.add(new KnownHostsEntry(hostnames, dpk));
154 * with hashed hostnames to a known_hosts file. (see -H option of OpenSSH key-gen).
442 String[] hostnames = arr[0].split(","); local
448 addHostkey(hostnames, arr[1], msg);
741 * @param hostnames a list of hostname patterns - at least one most be specified. Check out th
    [all...]

Completed in 137 milliseconds