Lines Matching refs:authkey
135 def __init__(self, registry, address, authkey, serializer): argument
136 if not isinstance(authkey, bytes):
139 authkey, type(authkey)))
141 self.authkey = process.AuthenticationString(authkey)
191 connection.deliver_challenge(c, self.authkey)
192 connection.answer_challenge(c, self.authkey)
480 def __init__(self, address=None, authkey=None, serializer='pickle', argument
482 if authkey is None:
483 authkey = process.current_process().authkey
485 self._authkey = process.AuthenticationString(authkey)
512 conn = Client(self._address, authkey=self._authkey)
560 def _run_server(cls, registry, address, authkey, serializer, writer, argument
569 server = cls._Server(registry, address, authkey, serializer)
584 conn = self._Client(self._address, authkey=self._authkey)
604 conn = self._Client(self._address, authkey=self._authkey)
614 conn = self._Client(self._address, authkey=self._authkey)
637 def _finalize_manager(process, address, authkey, state, _Client): argument
644 conn = _Client(address, authkey=authkey)
704 authkey=self._authkey, exposed=exp
706 conn = self._Client(token.address, authkey=self._authkey)
734 authkey=None, exposed=None, incref=True, manager_owned=False): argument
762 if authkey is not None:
763 self._authkey = process.AuthenticationString(authkey)
767 self._authkey = process.current_process().authkey
779 conn = self._Client(self._token.address, authkey=self._authkey)
806 authkey=self._authkey, exposed=exposed
808 conn = self._Client(token.address, authkey=self._authkey)
824 conn = self._Client(self._token.address, authkey=self._authkey)
840 def _decref(token, authkey, state, tls, idset, _Client): argument
848 conn = _Client(token.address, authkey=authkey)
948 def AutoProxy(token, serializer, manager=None, authkey=None, argument
956 conn = _Client(token.address, authkey=authkey)
962 if authkey is None and manager is not None:
963 authkey = manager._authkey
964 if authkey is None:
965 authkey = process.current_process().authkey
968 proxy = ProxyType(token, serializer, manager=manager, authkey=authkey,