HomeSort by relevance Sort by last modified time
    Searched defs:buzz (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
discoitemsquerytask.h 59 namespace buzz { namespace
80 } // namespace buzz
iqtask.cc 33 namespace buzz { namespace
39 const buzz::Jid& to,
40 buzz::XmlElement* el)
41 : buzz::XmppTask(parent, buzz::XmppEngine::HL_SINGLE),
49 buzz::XmppReturnStatus ret = SendStanza(stanza_.get());
51 return (ret == buzz::XMPP_RETURN_OK) ? STATE_RESPONSE : STATE_ERROR;
54 bool IqTask::HandleStanza(const buzz::XmlElement* stanza) {
58 if (stanza->Attr(buzz::QN_TYPE) != buzz::STR_RESULT &
    [all...]
iqtask.h 36 namespace buzz { namespace
63 } // namespace buzz
moduleimpl.h 34 namespace buzz { namespace
mucroomconfigtask.cc 36 namespace buzz { namespace
51 buzz::XmlElement* owner_query = new
52 buzz::XmlElement(buzz::QN_MUC_OWNER_QUERY, true);
54 buzz::XmlElement* x_form = new buzz::XmlElement(buzz::QN_XDATA_X, true);
55 x_form->SetAttr(buzz::QN_TYPE, buzz::STR_FORM);
57 buzz::XmlElement* roomname_field
    [all...]
mucroomdiscoverytask.cc 32 namespace buzz { namespace
38 new buzz::XmlElement(buzz::QN_DISCO_INFO_QUERY)) {
83 } // namespace buzz
pingtask.h 35 namespace buzz { namespace
45 class PingTask : public buzz::XmppTask, private rtc::MessageHandler {
47 PingTask(buzz::XmppTaskParentInterface* parent,
51 virtual bool HandleStanza(const buzz::XmlElement* stanza);
69 } // namespace buzz
saslmechanism.cc 35 namespace buzz { namespace
saslplainmechanism.h 34 namespace buzz { namespace
39 SaslPlainMechanism(const buzz::Jid user_jid, const rtc::CryptString & password) :
util_unittest.h 35 namespace buzz { namespace
68 } // namespace buzz
70 inline std::ostream& operator<<(std::ostream& os, const buzz::Jid& jid) {
xmpppump.cc 32 namespace buzz { namespace
35 state_ = buzz::XmppEngine::STATE_NONE;
37 client_ = new buzz::XmppClient(this); // NOTE: deleted by TaskRunner
40 void XmppPump::DoLogin(const buzz::XmppClientSettings & xcs,
41 buzz::AsyncSocket* socket,
42 buzz::PreXmppAuth* auth) {
43 OnStateChange(buzz::XmppEngine::STATE_START);
54 OnStateChange(buzz::XmppEngine::STATE_CLOSED);
57 void XmppPump::OnStateChange(buzz::XmppEngine::State state) {
77 buzz::XmppReturnStatus XmppPump::SendStanza(const buzz::XmlElement *stanza)
    [all...]
xmpppump.h 39 namespace buzz { namespace
46 virtual void OnStateChange(buzz::XmppEngine::State state) = 0;
51 XmppPump(buzz::XmppPumpNotify * notify = NULL);
53 buzz::XmppClient *client() { return client_; }
55 void DoLogin(const buzz::XmppClientSettings & xcs,
56 buzz::AsyncSocket* socket,
57 buzz::PreXmppAuth* auth);
60 void OnStateChange(buzz::XmppEngine::State state);
68 buzz::XmppReturnStatus SendStanza(const buzz::XmlElement *stanza)
    [all...]
xmppsocket.h 47 namespace buzz { namespace
49 class XmppSocket : public buzz::AsyncSocket, public sigslot::has_slots<> {
51 XmppSocket(buzz::TlsOptions tls);
54 virtual buzz::AsyncSocket::State state();
55 virtual buzz::AsyncSocket::Error error();
81 buzz::AsyncSocket::State state_;
83 buzz::TlsOptions tls_;
86 } // namespace buzz
xmppstanzaparser.cc 39 namespace buzz { namespace
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
qname.cc 13 namespace buzz { namespace
78 } // namespace buzz
xmlconstants.cc 13 namespace buzz { namespace
25 } // namespace buzz
  /external/chromium_org/jingle/notifier/communicator/
connection_settings.h 15 namespace buzz { namespace
39 void FillXmppClientSettings(buzz::XmppClientSettings* client_settings) const;
login.h 22 namespace buzz { namespace
26 } // namespace buzz
50 base::WeakPtr<buzz::XmppTaskParentInterface> base_task) = 0;
69 const buzz::XmppClientSettings& user_settings,
83 void UpdateXmppSettings(const buzz::XmppClientSettings& user_settings);
97 base::WeakPtr<buzz::XmppTaskParentInterface> base_task) OVERRIDE;
single_login_attempt.h 15 namespace buzz { namespace
17 } // namespace buzz
37 base::WeakPtr<buzz::XmppTaskParentInterface> base_task) = 0;
64 base::WeakPtr<buzz::XmppTaskParentInterface> parent) OVERRIDE;
65 virtual void OnError(buzz::XmppEngine::Error error,
67 const buzz::XmlElement* stream_error) OVERRIDE;
  /external/chromium_org/jingle/notifier/listener/
xmpp_push_client.h 27 namespace buzz { namespace
29 } // namespace buzz
58 base::WeakPtr<buzz::XmppTaskParentInterface> base_task) OVERRIDE;
80 buzz::XmppClientSettings xmpp_settings_;
85 base::WeakPtr<buzz::XmppTaskParentInterface> base_task_;
  /external/chromium_org/remoting/host/
host_change_notification_listener.h 15 namespace buzz { namespace
17 } // namespace buzz
46 const buzz::XmlElement* stanza) OVERRIDE;
host_status_sender.h 21 namespace buzz { namespace
23 } // namespace buzz
68 const buzz::XmlElement* stanza) OVERRIDE;
84 scoped_ptr<buzz::XmlElement> CreateHostStatusMessage(
88 scoped_ptr<buzz::XmlElement> CreateSignature(
register_support_host_request.h 17 namespace buzz { namespace
19 } // namespace buzz
59 const buzz::XmlElement* stanza) OVERRIDE;
64 scoped_ptr<buzz::XmlElement> CreateRegistrationRequest(
66 scoped_ptr<buzz::XmlElement> CreateSignature(const std::string& jid);
68 void ProcessResponse(IqRequest* request, const buzz::XmlElement* response);
69 bool ParseResponse(const buzz::XmlElement* response,
  /external/chromium_org/remoting/protocol/
content_description.h 15 namespace buzz { namespace
17 } // namespace buzz
32 scoped_ptr<buzz::XmlElement> authenticator_message);
41 const buzz::XmlElement* authenticator_message() const {
45 buzz::XmlElement* ToXml() const;
48 const buzz::XmlElement* element);
52 scoped_ptr<const buzz::XmlElement> authenticator_message_;
54 static bool ParseChannelConfigs(const buzz::XmlElement* const element,
third_party_authenticator_base.h 15 namespace buzz { namespace
19 } // namespace buzz
41 virtual void ProcessMessage(const buzz::XmlElement* message,
43 virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE;
49 static const buzz::StaticQName kTokenUrlTag;
50 static const buzz::StaticQName kTokenScopeTag;
51 static const buzz::StaticQName kTokenTag;
57 const buzz::XmlElement* message,
62 const buzz::XmlElement* message,
66 virtual void AddTokenElements(buzz::XmlElement* message) = 0
    [all...]

Completed in 149 milliseconds

1 23 4 5 6 7