ChromeAsyncSocket   29 jingle/glue/chrome_async_socket.cc ChromeAsyncSocket::ChromeAsyncSocket(
ChromeAsyncSocket   50 jingle/glue/chrome_async_socket.cc ChromeAsyncSocket::~ChromeAsyncSocket() {}
ChromeAsyncSocket   52 jingle/glue/chrome_async_socket.cc ChromeAsyncSocket::State ChromeAsyncSocket::state() {
ChromeAsyncSocket   56 jingle/glue/chrome_async_socket.cc ChromeAsyncSocket::Error ChromeAsyncSocket::error() {
ChromeAsyncSocket   60 jingle/glue/chrome_async_socket.cc int ChromeAsyncSocket::GetError() {
ChromeAsyncSocket   64 jingle/glue/chrome_async_socket.cc bool ChromeAsyncSocket::IsOpen() const {
ChromeAsyncSocket   68 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::DoNonNetError(Error error) {
ChromeAsyncSocket   75 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::DoNetError(net::Error net_error) {
ChromeAsyncSocket   80 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::DoNetErrorFromStatus(int status) {
ChromeAsyncSocket   87 jingle/glue/chrome_async_socket.cc bool ChromeAsyncSocket::Connect(const talk_base::SocketAddress& address) {
ChromeAsyncSocket  113 jingle/glue/chrome_async_socket.cc       base::Bind(&ChromeAsyncSocket::ProcessConnectDone,
ChromeAsyncSocket  124 jingle/glue/chrome_async_socket.cc         base::Bind(&ChromeAsyncSocket::ProcessConnectDone,
ChromeAsyncSocket  133 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::ProcessConnectDone(int status) {
ChromeAsyncSocket  152 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::PostDoRead() {
ChromeAsyncSocket  161 jingle/glue/chrome_async_socket.cc       base::Bind(&ChromeAsyncSocket::DoRead,
ChromeAsyncSocket  168 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::DoRead() {
ChromeAsyncSocket  180 jingle/glue/chrome_async_socket.cc           base::Bind(&ChromeAsyncSocket::ProcessReadDone,
ChromeAsyncSocket  190 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::ProcessReadDone(int status) {
ChromeAsyncSocket  214 jingle/glue/chrome_async_socket.cc bool ChromeAsyncSocket::Read(char* data, size_t len, size_t* len_read) {
ChromeAsyncSocket  256 jingle/glue/chrome_async_socket.cc bool ChromeAsyncSocket::Write(const char* data, size_t len) {
ChromeAsyncSocket  287 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::PostDoWrite() {
ChromeAsyncSocket  295 jingle/glue/chrome_async_socket.cc       base::Bind(&ChromeAsyncSocket::DoWrite,
ChromeAsyncSocket  302 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::DoWrite() {
ChromeAsyncSocket  313 jingle/glue/chrome_async_socket.cc           base::Bind(&ChromeAsyncSocket::ProcessWriteDone,
ChromeAsyncSocket  324 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::ProcessWriteDone(int status) {
ChromeAsyncSocket  357 jingle/glue/chrome_async_socket.cc bool ChromeAsyncSocket::Close() {
ChromeAsyncSocket  364 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::DoClose() {
ChromeAsyncSocket  387 jingle/glue/chrome_async_socket.cc bool ChromeAsyncSocket::StartTls(const std::string& domain_name) {
ChromeAsyncSocket  412 jingle/glue/chrome_async_socket.cc       base::Bind(&ChromeAsyncSocket::ProcessSSLConnectDone,
ChromeAsyncSocket  419 jingle/glue/chrome_async_socket.cc         base::Bind(&ChromeAsyncSocket::ProcessSSLConnectDone,
ChromeAsyncSocket  430 jingle/glue/chrome_async_socket.cc void ChromeAsyncSocket::ProcessSSLConnectDone(int status) {
ChromeAsyncSocket   35 jingle/glue/chrome_async_socket.h class ChromeAsyncSocket : public buzz::AsyncSocket {
ChromeAsyncSocket   38 jingle/glue/chrome_async_socket.h   ChromeAsyncSocket(
ChromeAsyncSocket   44 jingle/glue/chrome_async_socket.h   virtual ~ChromeAsyncSocket();
ChromeAsyncSocket  207 jingle/glue/chrome_async_socket.h   base::WeakPtrFactory<ChromeAsyncSocket> weak_ptr_factory_;
ChromeAsyncSocket  209 jingle/glue/chrome_async_socket.h   DISALLOW_COPY_AND_ASSIGN(ChromeAsyncSocket);
ChromeAsyncSocket  168 jingle/glue/chrome_async_socket_unittest.cc         new ChromeAsyncSocket(mock_xmpp_client_socket_factory.release(),
ChromeAsyncSocket  204 jingle/glue/chrome_async_socket_unittest.cc           state(ChromeAsyncSocket::STATE_CLOSED),
ChromeAsyncSocket  205 jingle/glue/chrome_async_socket_unittest.cc           error(ChromeAsyncSocket::ERROR_NONE),
ChromeAsyncSocket  210 jingle/glue/chrome_async_socket_unittest.cc         ChromeAsyncSocket::State state,
ChromeAsyncSocket  211 jingle/glue/chrome_async_socket_unittest.cc         ChromeAsyncSocket::Error error,
ChromeAsyncSocket  244 jingle/glue/chrome_async_socket_unittest.cc     ChromeAsyncSocket::State state;
ChromeAsyncSocket  245 jingle/glue/chrome_async_socket_unittest.cc     ChromeAsyncSocket::Error error;
ChromeAsyncSocket  277 jingle/glue/chrome_async_socket_unittest.cc   void ExpectState(ChromeAsyncSocket::State state,
ChromeAsyncSocket  278 jingle/glue/chrome_async_socket_unittest.cc                    ChromeAsyncSocket::Error error,
ChromeAsyncSocket  285 jingle/glue/chrome_async_socket_unittest.cc   void ExpectNonErrorState(ChromeAsyncSocket::State state) {
ChromeAsyncSocket  286 jingle/glue/chrome_async_socket_unittest.cc     ExpectState(state, ChromeAsyncSocket::ERROR_NONE, net::OK);
ChromeAsyncSocket  289 jingle/glue/chrome_async_socket_unittest.cc   void ExpectErrorState(ChromeAsyncSocket::State state,
ChromeAsyncSocket  290 jingle/glue/chrome_async_socket_unittest.cc                         ChromeAsyncSocket::Error error) {
ChromeAsyncSocket  295 jingle/glue/chrome_async_socket_unittest.cc     ExpectNonErrorState(ChromeAsyncSocket::STATE_CLOSED);
ChromeAsyncSocket  321 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_READ, ChromeAsyncSocket::STATE_OPEN));
ChromeAsyncSocket  327 jingle/glue/chrome_async_socket_unittest.cc                                    ChromeAsyncSocket::STATE_TLS_OPEN));
ChromeAsyncSocket  333 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_READ, ChromeAsyncSocket::STATE_TLS_OPEN));
ChromeAsyncSocket  343 jingle/glue/chrome_async_socket_unittest.cc     ExpectNonErrorState(ChromeAsyncSocket::STATE_CONNECTING);
ChromeAsyncSocket  350 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_CONNECT, ChromeAsyncSocket::STATE_OPEN));
ChromeAsyncSocket  355 jingle/glue/chrome_async_socket_unittest.cc     EXPECT_EQ(ChromeAsyncSocket::STATE_OPEN, chrome_async_socket_->state());
ChromeAsyncSocket  358 jingle/glue/chrome_async_socket_unittest.cc     ExpectNonErrorState(ChromeAsyncSocket::STATE_CLOSED);
ChromeAsyncSocket  364 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  378 jingle/glue/chrome_async_socket_unittest.cc     ExpectNonErrorState(ChromeAsyncSocket::STATE_TLS_OPEN);
ChromeAsyncSocket  383 jingle/glue/chrome_async_socket_unittest.cc     EXPECT_EQ(ChromeAsyncSocket::STATE_TLS_OPEN,
ChromeAsyncSocket  387 jingle/glue/chrome_async_socket_unittest.cc     ExpectNonErrorState(ChromeAsyncSocket::STATE_CLOSED);
ChromeAsyncSocket  393 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  423 jingle/glue/chrome_async_socket_unittest.cc   scoped_ptr<ChromeAsyncSocket> chrome_async_socket_;
ChromeAsyncSocket  445 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_OPEN);
ChromeAsyncSocket  460 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  471 jingle/glue/chrome_async_socket_unittest.cc   ExpectErrorState(ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  472 jingle/glue/chrome_async_socket_unittest.cc                    ChromeAsyncSocket::ERROR_DNS);
ChromeAsyncSocket  481 jingle/glue/chrome_async_socket_unittest.cc   ExpectErrorState(ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  482 jingle/glue/chrome_async_socket_unittest.cc                    ChromeAsyncSocket::ERROR_DNS);
ChromeAsyncSocket  493 jingle/glue/chrome_async_socket_unittest.cc     ExpectErrorState(ChromeAsyncSocket::STATE_OPEN,
ChromeAsyncSocket  494 jingle/glue/chrome_async_socket_unittest.cc                      ChromeAsyncSocket::ERROR_WRONGSTATE);
ChromeAsyncSocket  498 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  499 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::ERROR_WRONGSTATE,
ChromeAsyncSocket  511 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  518 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_CONNECTING);
ChromeAsyncSocket  525 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  532 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_CONNECTING);
ChromeAsyncSocket  536 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_OPEN);
ChromeAsyncSocket  539 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CONNECT, ChromeAsyncSocket::STATE_OPEN));
ChromeAsyncSocket  558 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CONNECT, ChromeAsyncSocket::STATE_OPEN));
ChromeAsyncSocket  574 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  575 jingle/glue/chrome_async_socket_unittest.cc           ChromeAsyncSocket::ERROR_WINSOCK, net::ERR_TIMED_OUT));
ChromeAsyncSocket  596 jingle/glue/chrome_async_socket_unittest.cc     ExpectNonErrorState(ChromeAsyncSocket::STATE_CONNECTING);
ChromeAsyncSocket  602 jingle/glue/chrome_async_socket_unittest.cc     ExpectErrorState(ChromeAsyncSocket::STATE_CONNECTING,
ChromeAsyncSocket  603 jingle/glue/chrome_async_socket_unittest.cc                      ChromeAsyncSocket::ERROR_WRONGSTATE);
ChromeAsyncSocket  607 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  608 jingle/glue/chrome_async_socket_unittest.cc             ChromeAsyncSocket::ERROR_WRONGSTATE, net::OK));
ChromeAsyncSocket  616 jingle/glue/chrome_async_socket_unittest.cc   ExpectErrorState(ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  617 jingle/glue/chrome_async_socket_unittest.cc                    ChromeAsyncSocket::ERROR_WRONGSTATE);
ChromeAsyncSocket  675 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  676 jingle/glue/chrome_async_socket_unittest.cc           ChromeAsyncSocket::ERROR_WINSOCK, net::ERR_TIMED_OUT));
ChromeAsyncSocket  685 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  697 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_READ, ChromeAsyncSocket::STATE_OPEN));
ChromeAsyncSocket  716 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  729 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  730 jingle/glue/chrome_async_socket_unittest.cc           ChromeAsyncSocket::ERROR_WINSOCK, net::ERR_TIMED_OUT));
ChromeAsyncSocket  739 jingle/glue/chrome_async_socket_unittest.cc     ExpectErrorState(ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  740 jingle/glue/chrome_async_socket_unittest.cc                      ChromeAsyncSocket::ERROR_WRONGSTATE);
ChromeAsyncSocket  813 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  814 jingle/glue/chrome_async_socket_unittest.cc           ChromeAsyncSocket::ERROR_WINSOCK, net::ERR_TIMED_OUT));
ChromeAsyncSocket  824 jingle/glue/chrome_async_socket_unittest.cc     ExpectState(ChromeAsyncSocket::STATE_OPEN,
ChromeAsyncSocket  825 jingle/glue/chrome_async_socket_unittest.cc                 ChromeAsyncSocket::ERROR_WINSOCK,
ChromeAsyncSocket  829 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  830 jingle/glue/chrome_async_socket_unittest.cc             ChromeAsyncSocket::ERROR_WINSOCK,
ChromeAsyncSocket  842 jingle/glue/chrome_async_socket_unittest.cc     ExpectState(ChromeAsyncSocket::STATE_OPEN,
ChromeAsyncSocket  843 jingle/glue/chrome_async_socket_unittest.cc                 ChromeAsyncSocket::ERROR_WINSOCK,
ChromeAsyncSocket  847 jingle/glue/chrome_async_socket_unittest.cc             SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  848 jingle/glue/chrome_async_socket_unittest.cc             ChromeAsyncSocket::ERROR_WINSOCK,
ChromeAsyncSocket  863 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_TLS_CONNECTING);
ChromeAsyncSocket  867 jingle/glue/chrome_async_socket_unittest.cc                                  ChromeAsyncSocket::STATE_CLOSED));
ChromeAsyncSocket  868 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_CLOSED);
ChromeAsyncSocket  880 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_TLS_OPEN);
ChromeAsyncSocket  895 jingle/glue/chrome_async_socket_unittest.cc     ExpectNonErrorState(ChromeAsyncSocket::STATE_TLS_OPEN);
ChromeAsyncSocket  901 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  902 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::ERROR_WRONGSTATE,
ChromeAsyncSocket  919 jingle/glue/chrome_async_socket_unittest.cc           SIGNAL_CLOSE, ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  920 jingle/glue/chrome_async_socket_unittest.cc           ChromeAsyncSocket::ERROR_WINSOCK,
ChromeAsyncSocket  948 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_TLS_OPEN);
ChromeAsyncSocket  964 jingle/glue/chrome_async_socket_unittest.cc   ExpectNonErrorState(ChromeAsyncSocket::STATE_TLS_CONNECTING);
ChromeAsyncSocket  992 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket  993 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::ERROR_WRONGSTATE,
ChromeAsyncSocket 1012 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::STATE_CLOSED,
ChromeAsyncSocket 1013 jingle/glue/chrome_async_socket_unittest.cc                           ChromeAsyncSocket::ERROR_WRONGSTATE,
ChromeAsyncSocket   43 jingle/notifier/base/xmpp_connection.cc   return new jingle_glue::ChromeAsyncSocket(client_socket_factory,
ChromeAsyncSocket   88 remoting/jingle_glue/xmpp_signal_strategy.cc   buzz::AsyncSocket* socket = new jingle_glue::ChromeAsyncSocket(