OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:XmppClient
(Results
1 - 4
of
4
) sorted by null
/external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclient.h
50
//
XMPPCLIENT
54
// See Task first.
XmppClient
is a parent task for XmppTasks.
56
//
XmppClient
is a task which is designed to be the parent task for
59
// listener should be a task that is a child of the
XmppClient
that owns
60
// the connection you are using.
XmppClient
has all the utility methods
63
//
XmppClient
is just a wrapper for XmppEngine, and if I were writing it
64
// all over again, I would make
XmppClient
== XmppEngine. Why?
71
class
XmppClient
: public talk_base::Task, public sigslot::has_slots<>
74
explicit
XmppClient
(talk_base::TaskParent * parent);
75
~
XmppClient
();
[
all
...]
xmppclient.cc
28
#include "
xmppclient
.h"
39
talk_base::TaskParent*
XmppClient
::GetParent(int code) {
46
class
XmppClient
::Private :
52
Private(
XmppClient
* client) :
63
XmppClient
* const client_;
93
XmppClient
::Connect(const XmppClientSettings & settings, const std::string & lang, AsyncSocket * socket, PreXmppAuth * pre_auth) {
146
XmppClient
::GetState() {
153
XmppClient
::GetError(int *subcode) {
169
XmppClient
::GetStreamError() {
176
CaptchaChallenge
XmppClient
::GetCaptchaChallenge()
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclient.h
50
//
XMPPCLIENT
54
// See Task first.
XmppClient
is a parent task for XmppTasks.
56
//
XmppClient
is a task which is designed to be the parent task for
59
// listener should be a task that is a child of the
XmppClient
that owns
60
// the connection you are using.
XmppClient
has all the utility methods
63
//
XmppClient
is just a wrapper for XmppEngine, and if I were writing it
64
// all over again, I would make
XmppClient
== XmppEngine. Why?
71
class
XmppClient
: public XmppTaskParentInterface,
76
explicit
XmppClient
(talk_base::TaskParent * parent);
77
virtual ~
XmppClient
();
[
all
...]
xmppclient.cc
28
#include "
xmppclient
.h"
41
class
XmppClient
::Private :
47
explicit Private(
XmppClient
* client) :
64
XmppClient
* const client_;
110
XmppReturnStatus
XmppClient
::Connect(
170
XmppEngine::State
XmppClient
::GetState() const {
176
XmppEngine::Error
XmppClient
::GetError(int* subcode) {
191
const XmlElement*
XmppClient
::GetStreamError() {
198
CaptchaChallenge
XmppClient
::GetCaptchaChallenge() {
204
std::string
XmppClient
::GetAuthMechanism()
[
all
...]
Completed in 2810 milliseconds