HomeSort by relevance Sort by last modified time
    Searched refs:SocketStreamError (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/platform/network/cf/
SocketStreamError.h 38 class SocketStreamError : public SocketStreamErrorBase {
40 SocketStreamError() { }
41 explicit SocketStreamError(int errorCode)
SocketStreamHandleCFNet.cpp 39 #include "SocketStreamError.h"
389 m_client->didFail(this, SocketStreamError()); // FIXME: Provide a sensible error.
414 m_client->didFail(this, SocketStreamError()); // FIXME: Provide a sensible error.
426 m_client->didFail(this, SocketStreamError()); // FIXME: Provide a sensible error.
532 m_client->didFail(this, SocketStreamError(error.error)); // FIXME: Provide a sensible error.
576 m_client->didFail(this, SocketStreamError(error.error)); // FIXME: Provide a sensible error.
  /external/webkit/WebCore/platform/network/chromium/
SocketStreamError.h 38 class SocketStreamError : public SocketStreamErrorBase {
40 SocketStreamError() { }
41 explicit SocketStreamError(int errorCode)
  /external/webkit/WebCore/platform/network/curl/
SocketStreamError.h 38 class SocketStreamError : public SocketStreamErrorBase {
40 SocketStreamError() { }
41 explicit SocketStreamError(int errorCode)
  /external/webkit/WebCore/platform/network/qt/
SocketStreamError.h 38 class SocketStreamError : public SocketStreamErrorBase {
40 SocketStreamError() { }
41 explicit SocketStreamError(int errorCode)
  /external/webkit/WebCore/platform/network/soup/
SocketStreamError.h 38 class SocketStreamError : public SocketStreamErrorBase {
40 SocketStreamError() { }
41 explicit SocketStreamError(int errorCode)
  /external/webkit/WebCore/platform/network/
SocketStreamErrorBase.cpp 32 #include "SocketStreamError.h"
36 SocketStreamError SocketStreamErrorBase::copy() const
38 SocketStreamError errorCopy;
43 bool SocketStreamErrorBase::compare(const SocketStreamError& a, const SocketStreamError& b)
SocketStreamErrorBase.h 37 class SocketStreamError;
41 // Makes a deep copy. Useful for when you need to use a SocketStreamError on another thread.
42 SocketStreamError copy() const;
48 static bool compare(const SocketStreamError&, const SocketStreamError&);
67 inline bool operator==(const SocketStreamError& a, const SocketStreamError& b) { return SocketStreamErrorBase::compare(a, b); }
68 inline bool operator!=(const SocketStreamError& a, const SocketStreamError& b) { return !(a == b); }
SocketStreamHandleClient.h 39 class SocketStreamError;
50 virtual void didFail(SocketStreamHandle*, const SocketStreamError&) { }
  /external/webkit/WebCore/websockets/
WebSocketChannel.h 46 class SocketStreamError;
63 virtual void didFail(SocketStreamHandle*, const SocketStreamError&);
WebSocketChannel.cpp 43 #include "SocketStreamError.h"
220 void WebSocketChannel::didFail(SocketStreamHandle* handle, const SocketStreamError&)

Completed in 121 milliseconds