Searched defs:jid (Results 51 - 75 of 80) sorted by relevance

1234

/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DAgentRoster.java110 String jid = it.next();
113 if (entries.contains(jid)) {
115 listener.agentAdded(jid);
116 Map<String,Presence> userPresences = presenceMap.get(jid);
169 * @param jid the XMPP address of the agent (eg "jsmith@example.com"). The
174 public boolean contains(String jid) { argument
175 if (jid == null) {
181 if (entry.toLowerCase().equals(jid.toLowerCase())) {
/external/chromium_org/remoting/host/
H A Dchromoting_host.cc212 const std::string& jid = client->client_jid(); local
218 OnClientAuthenticated(jid));
290 LOG(WARNING) << "Rejecting connection from " << session->jid()
300 HOST_LOG << "Client connected: " << session->jid();
H A Ddaemon_process.cc294 void DaemonProcess::OnAccessDenied(const std::string& jid) { argument
297 FOR_EACH_OBSERVER(HostStatusObserver, status_observers_, OnAccessDenied(jid));
300 void DaemonProcess::OnClientAuthenticated(const std::string& jid) { argument
304 OnClientAuthenticated(jid));
307 void DaemonProcess::OnClientConnected(const std::string& jid) { argument
311 OnClientConnected(jid));
314 void DaemonProcess::OnClientDisconnected(const std::string& jid) { argument
318 OnClientDisconnected(jid));
321 void DaemonProcess::OnClientRouteChange(const std::string& jid, argument
357 OnClientRouteChange(jid, channel_nam
[all...]
/external/chromium_org/remoting/host/it2me/
H A Dit2me_host.cc267 void It2MeHost::OnAccessDenied(const std::string& jid) { argument
276 void It2MeHost::OnClientAuthenticated(const std::string& jid) { argument
292 std::string client_username = jid;
307 void It2MeHost::OnClientDisconnected(const std::string& jid) { argument
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasessionclient.h55 MediaSessionClient(const buzz::Jid& jid, SessionManager *manager);
59 MediaSessionClient(const buzz::Jid& jid, SessionManager *manager,
65 const buzz::Jid &jid() const { return jid_; } function in class:cricket::MediaSessionClient
/external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
H A Dsecuretunnelsessionclient.cc83 const buzz::Jid& jid, SessionManager* manager)
84 : TunnelSessionClient(jid, manager, NS_SECURE_TUNNEL) {
103 jid().Str()
149 void SecureTunnelSessionClient::OnIncomingTunnel(const buzz::Jid &jid, argument
170 SignalIncomingTunnel(this, jid, content->description, session);
280 const buzz::Jid &jid, const std::string &description) {
82 SecureTunnelSessionClient( const buzz::Jid& jid, SessionManager* manager) argument
279 CreateOffer( const buzz::Jid &jid, const std::string &description) argument
H A Dtunnelsessionclient_unittest.cc123 data->data().AddAttr(buzz::QN_FROM, remote_client_.jid().Str());
130 data->data().AddAttr(buzz::QN_FROM, local_client_.jid().Str());
142 buzz::Jid jid, std::string description,
141 OnIncomingTunnel(cricket::TunnelSessionClient* client, buzz::Jid jid, std::string description, cricket::Session* session) argument
H A Dtunnelsessionclient.cc61 buzz::Jid jid; member in struct:cricket::CreateTunnelData
104 TunnelSessionClientBase::TunnelSessionClientBase(const buzz::Jid& jid, argument
106 : jid_(jid), session_manager_(manager), namespace_(ns), shutdown_(false) {
150 data.jid = to;
189 SessionDescription* offer = CreateOffer(data->jid, data->description);
198 session->Initiate(data->jid.Str(), offer);
213 TunnelSessionClient::TunnelSessionClient(const buzz::Jid& jid, argument
216 : TunnelSessionClientBase(jid, manager, ns) {
219 TunnelSessionClient::TunnelSessionClient(const buzz::Jid& jid, argument
221 : TunnelSessionClientBase(jid, manage
274 OnIncomingTunnel(const buzz::Jid &jid, Session *session) argument
287 CreateOffer( const buzz::Jid &jid, const std::string &description) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Djid.cc28 #include "talk/xmpp/jid.h"
128 LOG(LS_VERBOSE) << "Warning: Calling IsBare() on the empty jid.";
151 void Jid::CopyFrom(const Jid& jid) { argument
152 this->node_name_ = jid.node_name_;
153 this->domain_name_ = jid.domain_name_;
154 this->resource_name_ = jid.resource_name_;
H A Dpresencestatus.h32 #include "talk/xmpp/jid.h"
55 const Jid& jid() const { return jid_; } function in class:buzz::PresenceStatus
73 void set_jid(const Jid& jid) { jid_ = jid; } argument
H A Dxmppclient.cc139 // For other servers, we leave the strings empty, which causes the jid's
333 const Jid& XmppClient::jid() const { function in class:buzz::XmppClient
H A Dxmppengineimpl.cc151 XmppReturnStatus XmppEngineImpl::SetUser(const Jid& jid) { argument
155 user_jid_ = jid;
409 // As substitute for the real (login jid's) domain, we permit
/external/smack/src/org/jivesoftware/smack/packet/
H A DPrivacyItem.java38 /** rule hold the kind of communication ([jid|group|subscription]) it will allow or block and
40 * If the type is "jid", then the 'value' attribute MUST contain a valid Jabber ID.
196 * If the type is "jid", then the 'value' attribute MUST contain a valid Jabber ID.
212 * It MUST be filled with one of these values: jid, group or subscription.
227 * If the type is "jid", then the 'value' attribute MUST contain a valid Jabber ID.
309 * It holds the kind of communication ([jid|group|subscription]) it will allow or block and
316 * Available values are: [jid|group|subscription]
321 * If the type is "jid", then the 'value' attribute MUST contain a valid Jabber ID.
352 * It MUST be filled with one of these values: jid, group or subscription.
372 * If the type is "jid", the
455 jid, enum constant in enum:PrivacyItem.Type
[all...]
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommandManager.java202 * Discover the commands of an specific JID. The <code>jid</code> is a
205 * @param jid the full JID to retrieve the commands for.
209 public DiscoverItems discoverCommands(String jid) throws XMPPException { argument
212 return serviceDiscoveryManager.discoverItems(jid, discoNode);
218 * @param jid the full JID to publish the commands to.
221 public void publishCommands(String jid) throws XMPPException { argument
236 serviceDiscoveryManager.publishItems(jid, discoNode, discoverItems);
245 * @param jid the full JID of the host of the remote command
249 public RemoteCommand getRemoteCommand(String jid, String node) { argument
250 return new RemoteCommand(connection, node, jid);
[all...]
/external/smack/src/org/jivesoftware/smackx/entitycaps/
H A DEntityCapsManager.java146 public static String getNodeVersionByJid(String jid) { argument
147 NodeVerHash nvh = jidCaps.get(jid);
155 public static NodeVerHash getNodeVerHashByJid(String jid) { argument
156 return jidCaps.get(jid);
398 * @param jid
401 public boolean areEntityCapsSupported(String jid) { argument
402 if (jid == null)
406 DiscoverInfo result = sdm.discoverInfo(jid);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DMUCUser.java375 private String jid; field in class:MUCUser.Item
428 return jid;
476 * @param jid the JID by which an occupant is identified within a room.
478 public void setJid(String jid) { argument
479 this.jid = jid;
499 buf.append(" jid=\"").append(getJid()).append("\"");
516 buf.append("<actor jid=\"").append(getActor()).append("\"/>");
568 private String jid; field in class:MUCUser.Destroy
577 return jid;
594 setJid(String jid) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DNode.java150 * The user subscribes to the node using the supplied jid. The
151 * bare jid portion of this one must match the jid for the connection.
160 * @param jid The jid to subscribe as.
164 public Subscription subscribe(String jid) argument
167 PubSub reply = (PubSub)sendPubsubPacket(Type.SET, new SubscribeExtension(jid, getId()));
172 * The user subscribes to the node using the supplied jid and subscription
173 * options. The bare jid portion of this one must match the jid fo
187 subscribe(String jid, SubscribeForm subForm) argument
205 unsubscribe(String jid) argument
219 unsubscribe(String jid, String subscriptionId) argument
233 getSubscriptionOptions(String jid) argument
250 getSubscriptionOptions(String jid, String subscriptionId) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/user/
H A DWorkgroup.java796 * @param jid the jid of the user who's information you would like the workgroup to retreive.
800 public WorkgroupProperties getWorkgroupProperties(String jid) throws XMPPException { argument
802 request.setJid(jid);
/external/chromium_org/remoting/protocol/
H A Djingle_session.cc204 const std::string& JingleSession::jid() { function in class:remoting::protocol::JingleSession
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcall_main.cc313 buzz::Jid jid; local
330 jid = buzz::Jid(username);
331 if (!jid.IsValid() || jid.node() == "") {
345 xcs.set_user(jid.node());
347 xcs.set_host(jid.domain());
362 pass.password() = jid.node();
431 ssl_identity = rtc::SSLIdentity::Generate(jid.Str());
487 Print(("Logging in to " + server + " as " + jid.Str() + "\n").c_str());
H A Dcallclient.h82 buzz::Jid jid; member in struct:RosterItem
203 void OnMucStatusUpdate(const buzz::Jid& jid,
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dconnectivitychecker.cc101 const std::string& jid,
107 jid_(jid),
99 ConnectivityChecker( rtc::Thread* worker, const std::string& jid, const std::string& session_id, const std::string& user_agent, const std::string& relay_token, const std::string& connection) argument
H A Dconnectivitychecker.h154 const std::string& jid,
190 const std::string& jid() const { function in class:cricket::ConnectivityChecker
H A Dconnectivitychecker_unittest.cc192 const std::string& jid,
198 jid,
191 ConnectivityCheckerForTest(rtc::Thread* worker, const std::string& jid, const std::string& session_id, const std::string& user_agent, const std::string& relay_token, const std::string& connection) argument
/external/smack/src/org/jivesoftware/smack/util/
H A DStringUtils.java366 * Returns true if jid is a full JID (i.e. a JID with resource part).
368 * @param jid
371 public static boolean isFullJID(String jid) { argument
372 if (parseName(jid).length() <= 0 || parseServer(jid).length() <= 0
373 || parseResource(jid).length() <= 0) {

Completed in 838 milliseconds

1234