HomeSort by relevance Sort by last modified time
    Searched refs:JID (Results 1 - 8 of 8) sorted by null

  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/packet/
Bytestream.java 102 * @param JID The JID of the stream host.
106 public StreamHost addStreamHost(final String JID, final String address) {
107 return addStreamHost(JID, address, 0);
113 * @param JID The JID of the stream host.
118 public StreamHost addStreamHost(final String JID, final String address, final int port) {
119 StreamHost host = new StreamHost(JID, address);
145 * Returns the stream host related to the given JID, or null if there is none.
147 * @param JID The JID of the desired stream host.
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/provider/
BytestreamsProvider.java 37 String JID = null;
48 JID = parser.getAttributeValue("", "jid");
53 toReturn.setUsedHost(parser.getAttributeValue("", "jid"));
56 toReturn.setToActivate(parser.getAttributeValue("", "jid"));
62 toReturn.addStreamHost(JID, host);
65 toReturn.addStreamHost(JID, host, Integer.parseInt(port));
67 JID = null;
  /external/chromium_org/remoting/webapp/
plugin_settings.js 40 /** @type {string} XMPP JID for the remoting directory server bot. */
session_connector.js 201 * @param {string} hostJid XMPP JID of the host.
214 * @param {boolean} refreshHostJidIfOffline Whether to refresh the JID and retry
215 * the connection if the current JID is offline.
332 // Resolve the host id to get the host JID.
342 * Continue an IT2Me connection once the host JID has been looked up.
client_session.js 38 * @param {string} hostJid The jid of the host to connect to.
103 * would not be useful, for example, when using a cached host JID.
752 /** @param {string} localJid Local JID. */
758 /** @param {string} localJid Local JID.
772 * @param {string} localJid Local JID.
937 // example, because this connection attempt is using a cached host JID.
    [all...]
format_iq.js 50 * @param {string} clientJid The client JID string.
51 * @param {string} hostJid The host JID string.
host_list.js 466 // host JID, but it can be missing from the cache with no ill effects.
  /external/smack/src/org/jivesoftware/smack/util/
StringUtils.java 366 * Returns true if jid is a full JID (i.e. a JID with resource part).
368 * @param jid
369 * @return true if full JID, false otherwise
371 public static boolean isFullJID(String jid) {
372 if (parseName(jid).length() <= 0 || parseServer(jid).length() <= 0
373 || parseResource(jid).length() <= 0) {
380 * Escapes the node portion of a JID according to "JID Escaping" (JEP-0106)
    [all...]

Completed in 554 milliseconds