Searched refs:InvokeError (Results 1 – 8 of 8) sorted by relevance
| /openbmc/openbmc/poky/bitbake/lib/hashserv/ |
| H A D | tests.py | 10 from bb.asyncrpc import InvokeError 120 with self.start_client(self.auth_server_address) as client, self.assertRaises(InvokeError): 162 except bb.asyncrpc.InvokeError: 640 with self.auth_perms() as client, self.assertRaises(InvokeError): 647 with self.auth_perms() as client, self.assertRaises(InvokeError): 657 with self.auth_perms("@report") as client, self.assertRaises(InvokeError): 668 with self.start_client(self.auth_server_address) as client, self.assertRaises(InvokeError): 700 with self.auth_perms() as client, self.assertRaises(InvokeError): 733 with self.auth_perms() as client, self.assertRaises(InvokeError): 771 with self.auth_perms() as client, self.assertRaises(InvokeError): [all …]
|
| H A D | server.py | 215 raise bb.asyncrpc.InvokeError( 272 raise bb.asyncrpc.InvokeError(f"No user named '{username}' exists") 594 raise bb.asyncrpc.InvokeError( 607 raise bb.asyncrpc.InvokeError( 625 raise bb.asyncrpc.InvokeError( 665 raise bb.asyncrpc.InvokeError(f"Unable to authenticate as {username}") 707 raise bb.asyncrpc.InvokeError("Unexpected type for permissions") 717 raise bb.asyncrpc.InvokeError( 780 raise bb.asyncrpc.InvokeError(f"Cannot create new user '{username}'") 803 raise bb.asyncrpc.InvokeError(f"User {username} doesn't exist")
|
| /openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/ |
| H A D | exceptions.py | 12 class InvokeError(Exception): class
|
| H A D | __init__.py | 15 InvokeError,
|
| H A D | client.py | 17 from .exceptions import ConnectionClosedError, InvokeError 191 raise InvokeError(msg["invoke-error"]["message"])
|
| H A D | serv.py | 17 from .exceptions import ClientError, ServerError, ConnectionClosedError, InvokeError 93 except InvokeError as e:
|
| /openbmc/openbmc/poky/bitbake/bin/ |
| H A D | bitbake-hashclient | 448 except bb.asyncrpc.InvokeError as e:
|
| /openbmc/openbmc/poky/bitbake/lib/prserv/ |
| H A D | tests.py | 10 from bb.asyncrpc import InvokeError
|