/external/chromium_org/third_party/libjingle/source/talk/examples/call/ |
call_main.cc | 315 buzz::Jid jid; local 326 Print("JID: "); 332 jid = buzz::Jid(username); 333 if (!jid.IsValid() || jid.node() == "") { 334 Print("Invalid JID. JIDs should be in the form user@domain\n"); 347 xcs.set_user(jid.node()); 349 xcs.set_host(jid.domain()) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
xmppclient.cc | 138 // For other servers, we leave the strings empty, which causes the jid's 156 d_->engine_->SetUser(buzz::Jid(settings.user(), settings.host(), STR_EMPTY)); 332 const Jid& XmppClient::jid() const { function in class:buzz::XmppClient
|
pubsubclient_unittest.cc | 13 #include "talk/xmpp/jid.h" 104 buzz::Jid pubsubjid;
|
pubsubtasks_unittest.cc | 14 #include "talk/xmpp/jid.h" 80 buzz::Jid pubsubjid;
|
hangoutpubsubclient.cc | 32 #include "talk/xmpp/jid.h" 52 return Jid(item_elem->Attr(QN_ATTR_PUBLISHER)).resource(); 352 const Jid& mucjid,
|
xmpplogintask_unittest.cc | 17 using buzz::Jid; 45 Jid jid("david@my-server"); 51 engine_->SetUser(jid); 53 new buzz::PlainSaslHandler(jid, talk_base::CryptString(pass), true)); 203 "<jid>david@my-server/test</jid></bind></iq>"; 473 // check wrong JID 478 "<jid>davey@my-server/test</jid></bind></iq>" [all...] |
xmpplogintask.cc | 37 #include "talk/xmpp/jid.h" 116 // domain - i.e., the domain that owns the JID. Our XmppEngineImpl 182 // domain - i.e., the domain that owns the JID. Our XmppEngineImpl 301 fullJid_ = Jid(element->FirstElement()->TextNamed(QN_BIND_JID));
|
hangoutpubsubclient_unittest.cc | 12 #include "talk/xmpp/jid.h" 229 buzz::Jid pubsubjid;
|
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
xmpplogintask.cc | 35 #include "talk/xmpp/jid.h" 115 // domain - i.e., the domain that owns the JID. Our XmppEngineImpl 175 // domain - i.e., the domain that owns the JID. Our XmppEngineImpl 284 fullJid_ = Jid(element->FirstElement()->TextNamed(QN_BIND_JID));
|
constants.h | 33 #include "talk/xmpp/jid.h" 58 extern const Jid JID_EMPTY;
|
constants.cc | 33 #include "talk/xmpp/jid.h" 37 const Jid JID_EMPTY(STR_EMPTY); 217 const QName QN_STANZA_JID_MALFORMED(true, NS_STANZA, "jid-malformed"); 235 const QName QN_BIND_JID(true, NS_BIND, "jid"); 302 const std::string STR_JID("jid"); 319 const QName QN_JID(true, STR_EMPTY, "jid");
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
call.cc | 98 Session* Call::InitiateSession(const buzz::Jid& to, 99 const buzz::Jid& initiator, 107 const buzz::Jid& to, [all...] |
mediasessionclient_unittest.cc | [all...] |
mediasessionclient.cc | 51 const buzz::Jid& jid, SessionManager *manager) 52 : jid_(jid), 64 const buzz::Jid& jid, SessionManager *manager, 68 : jid_(jid), 230 Session *session = session_manager_->CreateSession(id, jid().Str(), type); [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
session.cc | 34 #include "talk/xmpp/jid.h" 680 // continue the session with a new remote JID. 860 buzz::Jid jid1(name1); 861 buzz::Jid jid2(name2); 874 return BadWrite("Redirection not allowed: must be the same bare jid.", 877 // When we receive a redirect, we point the session at the new JID [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
mediasessionclient.cc | 55 const buzz::Jid& jid, SessionManager *manager) 56 : jid_(jid), session_manager_(manager), focus_call_(NULL), 63 const buzz::Jid& jid, SessionManager *manager, 65 : jid_(jid), session_manager_(manager), focus_call_(NULL), 438 Session *session = session_manager_->CreateSession(jid().Str(), type); [all...] |
call.cc | 67 Session *Call::InitiateSession(const buzz::Jid &jid, 73 session->Initiate(jid.Str(), offer);
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
session.cc | 37 #include "talk/xmpp/jid.h" [all...] |