OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JSONRPCException
(Results
1 - 11
of
11
) sorted by null
/external/autotest/frontend/afe/json_rpc/
proxy.py
54
class
JSONRPCException
(Exception):
58
class ValidationError(
JSONRPCException
):
78
JSONRPCException
to build and return. If can't determine the right one,
79
just return a
JSONRPCException
with a pretty-printed error string.
87
for cls in
JSONRPCException
.__subclasses__():
94
return
JSONRPCException
(error_message)
141
raise
JSONRPCException
('Error decoding JSON reponse:\n' + respdata)
206
raise
JSONRPCException
('RPC blocked by uberproxy. Have your run '
209
raise
JSONRPCException
(
/external/autotest/server/hosts/
afe_store.py
42
except rpc_proxy.
JSONRPCException
as e:
87
except rpc_proxy.
JSONRPCException
as e:
102
except rpc_proxy.
JSONRPCException
as e:
afe_store_unittest.py
83
self.mock_afe.run.side_effect = rpc_proxy.
JSONRPCException
('some error')
/external/autotest/cli/
cli_mock.py
145
and_raises(proxy.
JSONRPCException
(expected)))
/external/autotest/server/cros/dynamic_suite/
frontend_wrappers.py
87
blacklist = (ImportError, error.RPCException, proxy.
JSONRPCException
,
suite.py
[
all
...]
/external/autotest/site_utils/
rpc_flight_recorder.py
31
proxy.
JSONRPCException
: '
JSONRPCException
',
run_suite.py
[
all
...]
lab_inventory.py
149
except proxy.
JSONRPCException
as e:
[
all
...]
lab_inventory_unittest.py
118
history.exception = proxy.
JSONRPCException
('exception for testing')
[
all
...]
/external/autotest/scheduler/shard/
shard_client.py
409
except proxy.
JSONRPCException
as e:
410
self._heartbeat_failure('
JSONRPCException
: %s' % e,
411
'
JSONRPCException
')
Completed in 513 milliseconds