OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SocketStreamError
(Results
1 - 15
of
15
) sorted by null
/external/webkit/Source/WebCore/platform/network/brew/
SocketStreamError.h
38
class
SocketStreamError
: public SocketStreamErrorBase {
40
SocketStreamError
() { }
41
explicit
SocketStreamError
(int errorCode)
/external/webkit/Source/WebCore/platform/network/chromium/
SocketStreamError.h
38
class
SocketStreamError
: public SocketStreamErrorBase {
40
SocketStreamError
() { }
41
explicit
SocketStreamError
(int errorCode)
/external/webkit/Source/WebCore/platform/network/curl/
SocketStreamError.h
38
class
SocketStreamError
: public SocketStreamErrorBase {
40
SocketStreamError
() { }
41
explicit
SocketStreamError
(int errorCode)
/external/webkit/Source/WebCore/platform/network/qt/
SocketStreamError.h
38
class
SocketStreamError
: public SocketStreamErrorBase {
40
SocketStreamError
() { }
41
explicit
SocketStreamError
(int errorCode)
/external/webkit/Source/WebCore/platform/network/soup/
SocketStreamError.h
38
class
SocketStreamError
: public SocketStreamErrorBase {
40
SocketStreamError
() { }
41
explicit
SocketStreamError
(int errorCode)
SocketStreamHandleSoup.cpp
40
#include "
SocketStreamError
.h"
105
m_client->didFail(this,
SocketStreamError
(error->code));
128
m_client->didFail(this,
SocketStreamError
(error->code));
166
m_client->didFail(this,
SocketStreamError
(error->code)); // FIXME: Provide a sensible error.
188
m_client->didFail(this,
SocketStreamError
(error->code)); // FIXME: Provide a sensible error.
/external/webkit/Source/WebCore/platform/network/win/
SocketStreamError.h
38
class
SocketStreamError
: public SocketStreamErrorBase {
40
SocketStreamError
() { }
41
explicit
SocketStreamError
(int errorCode)
/external/webkit/Source/WebCore/platform/network/cf/
SocketStreamError.h
38
class
SocketStreamError
: public SocketStreamErrorBase {
40
SocketStreamError
() { }
41
explicit
SocketStreamError
(int errorCode)
45
SocketStreamError
(int errorCode, const String& failingURL, const String& localizedDescription)
SocketStreamHandleCFNet.cpp
39
#include "
SocketStreamError
.h"
390
m_client->didFail(this,
SocketStreamError
()); // FIXME: Provide a sensible error.
415
m_client->didFail(this,
SocketStreamError
()); // FIXME: Provide a sensible error.
427
m_client->didFail(this,
SocketStreamError
()); // FIXME: Provide a sensible error.
537
m_client->didFail(this,
SocketStreamError
(error.error)); // FIXME: Provide a sensible error.
586
m_client->didFail(this,
SocketStreamError
(error.error)); // FIXME: Provide a sensible error.
615
m_client->didFail(this,
SocketStreamError
(static_cast<int>(errorCode), m_url.string(), description));
/external/webkit/Source/WebCore/platform/network/
SocketStreamErrorBase.h
39
class
SocketStreamError
;
43
// Makes a deep copy. Useful for when you need to use a
SocketStreamError
on another thread.
44
SocketStreamError
copy() const;
52
static bool compare(const
SocketStreamError
&, const
SocketStreamError
&);
81
inline bool operator==(const
SocketStreamError
& a, const
SocketStreamError
& b) { return SocketStreamErrorBase::compare(a, b); }
82
inline bool operator!=(const
SocketStreamError
& a, const
SocketStreamError
& b) { return !(a == b); }
SocketStreamErrorBase.cpp
32
#include "
SocketStreamError
.h"
36
SocketStreamError
SocketStreamErrorBase::copy() const
38
SocketStreamError
errorCopy;
43
bool SocketStreamErrorBase::compare(const
SocketStreamError
& a, const
SocketStreamError
& b)
SocketStreamHandleClient.h
39
class
SocketStreamError
;
50
virtual void didFail(SocketStreamHandle*, const
SocketStreamError
&) { }
/development/tools/emulator/opengl/shared/OpenglCodecCommon/
SocketStream.h
24
typedef enum { ERR_INVALID_SOCKET = -1000 }
SocketStreamError
;
/external/webkit/Source/WebCore/websockets/
WebSocketChannel.h
48
class
SocketStreamError
;
69
virtual void didFail(SocketStreamHandle*, const
SocketStreamError
&);
WebSocketChannel.cpp
46
#include "
SocketStreamError
.h"
210
void WebSocketChannel::didFail(SocketStreamHandle* handle, const
SocketStreamError
& error)
Completed in 158 milliseconds