HomeSort by relevance Sort by last modified time
    Searched refs:jid (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
jid_unittest.cc 5 #include "talk/xmpp/jid.h"
7 using buzz::Jid;
10 Jid jid("dude");
11 EXPECT_EQ("", jid.node());
12 EXPECT_EQ("dude", jid.domain());
13 EXPECT_EQ("", jid.resource());
14 EXPECT_EQ("dude", jid.Str());
15 EXPECT_EQ("dude", jid.BareJid().Str());
16 EXPECT_TRUE(jid.IsValid())
    [all...]
rostermoduleimpl.h 46 //! The from Jid of for the presence information.
47 //! Typically this will be a full Jid with resource specified. For outgoing
50 virtual const Jid jid() const;
114 //! The jid for the contact.
115 //! Typically this will be a bare Jid.
116 virtual const Jid jid() const;
118 //! Sets the jid for the roster contact update
119 virtual XmppReturnStatus set_jid(const Jid& jid)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
AgentRosterListener.java 30 public void agentAdded(String jid);
32 public void agentRemoved(String jid);
  /external/smack/src/org/jivesoftware/smackx/muc/
HostedRoom.java 37 private String jid; field in class:HostedRoom
43 jid = item.getEntityID();
54 return jid;
Occupant.java 30 * the affiliation and role of the occupant in the room. The full JID and nickname are optional.
39 private String jid; field in class:Occupant
44 this.jid = item.getJid();
55 this.jid = item.getJid();
63 * Returns the full JID of the occupant. If this information was extracted from a presence and
66 * always have a full JID.
68 * @return the full JID of the occupant.
71 return jid;
110 return jid.equals(occupant.jid);
    [all...]
Affiliate.java 28 * the bare jid of the real user and its affiliation. If the affiliate is an occupant of the room
35 private String jid; field in class:Affiliate
44 this.jid = item.getJid();
52 this.jid = item.getJid();
59 * Returns the bare JID of the affiliated user. This information will always be available.
61 * @return the bare JID of the affiliated user.
64 return jid;
  /external/chromium_org/remoting/host/
host_status_observer.h 32 virtual void OnAccessDenied(const std::string& jid) {}
35 virtual void OnClientAuthenticated(const std::string& jid) {}
38 virtual void OnClientConnected(const std::string& jid) {}
41 virtual void OnClientDisconnected(const std::string& jid) {}
45 virtual void OnClientRouteChange(const std::string& jid,
ipc_host_event_logger.h 37 virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
38 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
39 virtual void OnClientConnected(const std::string& jid) OVERRIDE;
40 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
42 const std::string& jid,
ipc_host_event_logger.cc 30 void IpcHostEventLogger::OnAccessDenied(const std::string& jid) {
33 daemon_channel_->Send(new ChromotingNetworkDaemonMsg_AccessDenied(jid));
36 void IpcHostEventLogger::OnClientAuthenticated(const std::string& jid) {
40 new ChromotingNetworkDaemonMsg_ClientAuthenticated(jid));
43 void IpcHostEventLogger::OnClientConnected(const std::string& jid) {
46 daemon_channel_->Send(new ChromotingNetworkDaemonMsg_ClientConnected(jid));
49 void IpcHostEventLogger::OnClientDisconnected(const std::string& jid) {
52 daemon_channel_->Send(new ChromotingNetworkDaemonMsg_ClientDisconnected(jid));
56 const std::string& jid,
69 jid, channel_name, serialized_route))
    [all...]
host_event_logger_posix.cc 33 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
34 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
35 virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
37 const std::string& jid,
69 void HostEventLoggerPosix::OnClientAuthenticated(const std::string& jid) {
70 Log("Client connected: " + jid);
73 void HostEventLoggerPosix::OnClientDisconnected(const std::string& jid) {
74 Log("Client disconnected: " + jid);
77 void HostEventLoggerPosix::OnAccessDenied(const std::string& jid) {
78 Log("Access denied for client: " + jid);
    [all...]
log_to_server.cc 41 void LogToServer::LogSessionStateChange(const std::string& jid,
51 DCHECK(connection_route_type_.count(jid) == 1);
52 entry->AddConnectionTypeField(connection_route_type_[jid]);
73 void LogToServer::OnClientConnected(const std::string& jid) {
75 LogSessionStateChange(jid, true);
78 void LogToServer::OnClientDisconnected(const std::string& jid) {
80 LogSessionStateChange(jid, false);
81 connection_route_type_.erase(jid);
84 void LogToServer::OnClientRouteChange(const std::string& jid,
90 connection_route_type_[jid] = route.type
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Bind.java 24 * IQ packet used by Smack to bind a resource and to obtain the jid assigned by the server.
37 private String jid = null; field in class:Bind
52 return jid;
55 public void setJid(String jid) {
56 this.jid = jid;
65 if (jid != null) {
66 buf.append("<jid>").append(jid).append("</jid>");
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
OptionsExtension.java 25 protected String jid; field in class:OptionsExtension
38 public OptionsExtension(String jid, String nodeId, String subscriptionId)
41 this.jid = jid;
47 return jid;
60 XmlUtils.appendAttribute(builder, "jid", jid);
UnsubscribeExtension.java 26 protected String jid; field in class:UnsubscribeExtension
39 public UnsubscribeExtension(String jid, String nodeId, String subscriptionId)
42 this.jid = jid;
48 return jid;
61 XmlUtils.appendAttribute(builder, "jid", jid);
SubscribeExtension.java 23 protected String jid; field in class:SubscribeExtension
28 jid = subscribeJid;
34 jid = subscribeJid;
39 return jid;
54 builder.append(" jid='");
Affiliation.java 31 protected String jid; field in class:Affiliation
43 * @param jid The JID with affiliation.
46 public Affiliation(String jid, Type affiliation)
48 this(jid, null, affiliation);
54 * @param jid The JID with affiliation.
58 public Affiliation(String jid, String node, Type affiliation)
60 this.jid = jid;
    [all...]
Subscription.java 23 protected String jid; field in class:Subscription
35 * JID.
37 * @param subscriptionJid The subscriber JID
46 * JID.
48 * @param subscriptionJid The subscriber JID
58 * and JID. The server will have supplied the subscription id and current state.
60 * @param jid The JID the request was made under
65 public Subscription(String jid, String nodeId, String subscriptionId, State state)
68 this.jid = jid;
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageHeader.java 36 * Bare JID of the user that was offline when the message was sent.
40 * Full JID of the user that sent the message.
42 private String jid; field in class:OfflineMessageHeader
53 jid = item.getName();
58 * Returns the bare JID of the user that was offline when the message was sent.
60 * @return the bare JID of the user that was offline when the message was sent.
67 * Returns the full JID of the user that sent the message.
69 * @return the full JID of the user that sent the message.
72 return jid;
  /external/chromium/third_party/libjingle/source/talk/examples/call/
muc.h 32 #include "talk/xmpp/jid.h"
39 Muc(const Jid& jid, const std::string& nick) : state_(MUC_JOINING),
40 jid_(jid), local_jid_(Jid(jid.Str() + "/" + nick)) {}
46 const Jid & jid() const { return jid_; } function in class:buzz::Muc
47 const Jid & local_jid() const { return local_jid_; }
59 Jid jid_
    [all...]
voicemailjidrequester.h 30 // To request a voicemail jid, we first set off a query to the user's bare jid
42 // the jid up to phoneapp. We do not do the second query.
50 // <item jid='bar@google.com/voicemail '/>
78 VoicemailJidRequester(talk_base::Task* parent, const Jid& their_jid, const Jid& my_jid);
80 // Provides the target jid and the voicemail to reach it
81 sigslot::signal2<const Jid&, const Jid&> SignalGotVoicemailJid;
82 sigslot::signal1<const Jid&> SignalVoicemailJidError
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
muc.h 32 #include "talk/xmpp/jid.h"
39 Muc(const Jid& jid, const std::string& nick) : state_(MUC_JOINING),
40 jid_(jid), local_jid_(Jid(jid.Str() + "/" + nick)) {}
46 const Jid & jid() const { return jid_; } function in class:buzz::Muc
47 const Jid & local_jid() const { return local_jid_; }
59 Jid jid_
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bookmark/
BookmarkedConference.java 31 private final String jid; field in class:BookmarkedConference
37 protected BookmarkedConference(String jid) {
38 this.jid = jid;
41 protected BookmarkedConference(String name, String jid, boolean autoJoin, String nickname,
45 this.jid = jid;
79 * Returns the full JID of this conference room. (ex.dev@conference.jivesoftware.com)
81 * @return the full JID of this conference room.
84 return jid;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/plus/testutil/
libjingleplus_test_notifier.h 52 std::string from = status.jid().Str();
68 std::cout << "Roster item: " << ri.jid().Str() << std::endl;
72 std::cout << "Roster item removed: " << ri.jid().Str() << std::endl;
75 virtual void OnRosterSubscribe(const buzz::Jid& jid) {
76 std::cout << "Subscribing: " << jid.Str() << std::endl;
79 virtual void OnRosterUnsubscribe(const buzz::Jid &jid) {
80 std::cout << "Unsubscribing: " <<jid.Str() << std::endl;
83 virtual void OnRosterSubscribed(const buzz::Jid &jid)
    [all...]
  /external/openssh/openbsd-compat/
port-irix.c 53 jid_t jid = 0; local
55 int jid = 0; local
59 jid = jlimit_startjob(pw->pw_name, pw->pw_uid, "interactive");
60 if (jid == -1)
66 if (jid == 0 && newarraysess() != 0)
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentInfo.java 41 private String jid; field in class:AgentInfo
45 * Returns the Agent's jid.
47 * @return the Agent's jid.
50 return jid;
54 * Sets the Agent's jid.
56 * @param jid the jid of the agent.
58 public void setJid(String jid) {
59 this.jid = jid;
    [all...]

Completed in 525 milliseconds

1 2 3 4 5 6 7 8