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

1 2 3

  /external/webrtc/webrtc/libjingle/xmpp/
jid.h 20 // The Jid class encapsulates and provides parsing help for Jids. A Jid
25 // The node and resource are both optional. A valid jid is defined to have
26 // a domain. A bare jid is defined to not have a resource and a full jid
28 class Jid {
30 explicit Jid();
31 explicit Jid(const std::string& jid_string);
32 explicit Jid(const std::string& node_name,
35 ~Jid();
    [all...]
mucroomconfigtask.h 24 const Jid& room_jid,
34 const Jid& room_jid() const { return room_jid_; }
42 Jid room_jid_;
mucroomlookuptask.h 20 Jid jid; member in struct:buzz::MucRoomInfo
39 const Jid& lookup_server_jid,
44 const Jid& lookup_server_jid,
45 const Jid& room_jid);
48 const Jid& lookup_server_jid,
52 const Jid& lookup_server_jid,
64 const Jid& lookup_server_jid,
68 static XmlElement* MakeJidQuery(const Jid& room_jid);
presenceouttask.h 27 XmppReturnStatus SendDirected(const Jid & j, const PresenceStatus & s);
28 XmppReturnStatus SendProbe(const Jid& jid);
presencereceivetask.h 46 void HandlePresence(const Jid& from, const XmlElement * stanza);
50 static void DecodeStatus(const Jid& from, const XmlElement * stanza,
jid.cc 11 #include "webrtc/libjingle/xmpp/jid.h"
24 Jid::Jid() {
27 Jid::Jid(const std::string& jid_string) {
54 Jid::Jid(const std::string& node_name,
63 void Jid::ValidateOrReset() {
79 std::string Jid::Str() const {
97 Jid::~Jid()
    [all...]
rostermoduleimpl.h 29 //! The from Jid of for the presence information.
30 //! Typically this will be a full Jid with resource specified. For outgoing
33 virtual const Jid jid() const;
97 //! The jid for the contact.
98 //! Typically this will be a bare Jid.
99 virtual const Jid jid() const;
101 //! Sets the jid for the roster contact update
102 virtual XmppReturnStatus set_jid(const Jid& jid)
    [all...]
iqtask.h 24 const std::string& verb, const Jid& to,
42 Jid to_;
rostermodule.h 91 //! The Jid of for the presence information.
92 //! Typically this will be a full Jid with resource specified.
93 virtual const Jid jid() const = 0;
149 //! The jid for the contact.
150 //! Typically this will be a bare Jid.
151 virtual const Jid jid() const = 0;
153 //! Sets the jid for the roster contact update
154 virtual XmppReturnStatus set_jid(const Jid& jid) = 0
    [all...]
pubsubtasks.h 30 // An IqTask which gets a <pubsub><items> for a particular jid and
35 const Jid& pubsubjid,
46 // pubsub JID and node and then signals them items.
50 const Jid& pubsubjid,
66 Jid pubsubjid_;
71 // pubsub jid and node.
76 const Jid& pubsubjid,
93 // pubsub jid and node.
97 const Jid& pubsubjid,
saslplainmechanism.h 22 SaslPlainMechanism(const buzz::Jid user_jid, const rtc::CryptString & password) :
42 Jid user_jid_;
mucroomuniquehangoutidtask.h 24 const Jid& lookup_server_jid);
jid_unittest.cc 11 #include "webrtc/libjingle/xmpp/jid.h"
14 using buzz::Jid;
17 Jid jid("dude");
18 EXPECT_EQ("", jid.node());
19 EXPECT_EQ("dude", jid.domain());
20 EXPECT_EQ("", jid.resource());
21 EXPECT_EQ("dude", jid.Str());
22 EXPECT_EQ("dude", jid.BareJid().Str());
23 EXPECT_TRUE(jid.IsValid())
    [all...]
chatroommodule.h 46 //! Sets the jid of the chatroom.
49 virtual XmppReturnStatus set_chatroom_jid(const Jid& chatroom_jid) = 0;
51 //! The jid for the chatroom
52 virtual const Jid& chatroom_jid() const = 0;
62 //! Returns the jid of the member (this is the chatroom_jid plus the
64 virtual const Jid member_jid() const = 0;
143 //! The jid for the member in the chatroom
144 virtual const Jid member_jid() const = 0;
146 //! The full jid for the member
149 virtual const Jid full_jid() const = 0
    [all...]
mucroomlookuptask.cc 22 const Jid& lookup_server_jid,
31 const Jid& lookup_server_jid,
32 const Jid& room_jid) {
39 const Jid& lookup_server_jid,
48 const Jid& lookup_server_jid,
56 const Jid& lookup_server_jid,
75 XmlElement* MucRoomLookupTask::MakeJidQuery(const Jid& room_jid) {
95 // Construct a stanza to lookup the muc jid for a given hangout id. eg:
113 // <item jid="muvc-private-chat-guid@groupchat.google.com">
132 room.jid = Jid(item_elem->Attr(buzz::QN_JID))
    [all...]
plainsaslhandler.h 23 PlainSaslHandler(const Jid & jid, const rtc::CryptString & password,
24 bool allow_plain) : jid_(jid), password_(password),
56 Jid jid_;
prexmppauth.h 24 class Jid;
52 const Jid& jid,
pubsub_task.h 17 #include "webrtc/libjingle/xmpp/jid.h"
34 PubsubTask(XmppTaskParentInterface* parent, const buzz::Jid& pubsub_node_jid);
52 buzz::Jid pubsub_node_jid_;
xmppauth.h 16 #include "webrtc/libjingle/xmpp/jid.h"
29 virtual void StartPreXmppAuth(const buzz::Jid& jid,
53 buzz::Jid jid_;
mucroomdiscoverytask.h 25 const Jid& room_jid);
fakexmppclient.h 46 virtual const Jid& jid() const { function in class:buzz::FakeXmppClient
82 void set_jid(const Jid& jid) {
83 jid_ = jid;
99 Jid jid_;
xmppengineimpl.h 53 //! Indicates the (bare) JID for the user to use.
54 virtual XmppReturnStatus SetUser(const Jid& jid);
56 //! Get the login (bare) JID.
57 virtual const Jid& GetUser();
159 //! The fullly bound JID.
160 //! This JID is only valid after binding has succeeded. If the value
162 virtual const Jid& FullJid() { return bound_jid_; }
182 void SignalBound(const Jid& fullJid);
230 Jid user_jid_
    [all...]
xmpptask.cc 93 const buzz::Jid& to,
116 const Jid& to,
128 const Jid& to) {
129 Jid from(stanza->Attr(QN_FROM));
139 Jid me = GetClient()->jid();
140 return (from == Jid(me.domain())) || (from == me.BareJid());
pubsubclient.h 17 #include "webrtc/libjingle/xmpp/jid.h"
28 class Jid;
34 // pubsub jid and node. All you have to do is RequestItems, listen
39 const Jid& pubsubjid,
105 Jid pubsubjid_;
discoitemsquerytask.h 45 std::string jid; member in struct:buzz::DiscoItem
53 const Jid& to, const std::string& node);

Completed in 94 milliseconds

1 2 3