OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ConnectionError
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/tools/telemetry/telemetry/core/forwarders/
do_nothing_forwarder.py
23
class
ConnectionError
(Error):
40
Also, check that all TCP ports support connections. (Raises
ConnectionError
.)
67
raise
ConnectionError
(
/external/deqp/execserver/
xsDefs.hpp
71
class
ConnectionError
: public Error
74
ConnectionError
(const std::string& message) : Error(message) {}
77
class ProtocolError : public
ConnectionError
80
ProtocolError (const std::string& message) :
ConnectionError
(message) {}
/external/chromium_org/remoting/webapp/
client_session.js
288
remoting.ClientSession.
ConnectionError
= {
300
* @return {remoting.ClientSession.
ConnectionError
} The connection error enum.
302
remoting.ClientSession.
ConnectionError
.fromString = function(error) {
303
if (!remoting.ClientSession.
ConnectionError
.hasOwnProperty(error)) {
304
console.error('Unexpected ClientSession.
ConnectionError
string: ', error);
305
return remoting.ClientSession.
ConnectionError
.UNKNOWN;
307
return remoting.ClientSession.
ConnectionError
[error];
946
case remoting.ClientSession.
ConnectionError
.HOST_IS_OFFLINE:
949
case remoting.ClientSession.
ConnectionError
.SESSION_REJECTED:
952
case remoting.ClientSession.
ConnectionError
.INCOMPATIBLE_PROTOCOL
[
all
...]
Completed in 2842 milliseconds