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

  /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) {}
xsExecutionServer.cpp 365 throw ConnectionError("Connection terminated");
367 throw ConnectionError("receive() failed");
398 throw ConnectionError("Connection terminated");
400 throw ConnectionError("send() failed");
  /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(
do_nothing_forwarder_unittest.py 70 with self.assertRaises(do_nothing_forwarder.ConnectionError):
  /external/chromium_org/remoting/webapp/browser_test/
mock_client_plugin.js 70 remoting.ClientSession.ConnectionError.NONE),
  /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...]
client_plugin_impl.js 398 var error = remoting.ClientSession.ConnectionError.fromString(
  /external/chromium_org/content/browser/speech/
speech_recognizer_impl_unittest.cc 296 TEST_F(SpeechRecognizerImplTest, ConnectionError) {

Completed in 335 milliseconds