Searched refs:authkey (Results 1 - 12 of 12) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
H A Dmanagers.py155 def __init__(self, registry, address, authkey, serializer):
156 assert isinstance(authkey, bytes)
158 self.authkey = AuthenticationString(authkey)
197 connection.deliver_challenge(c, self.authkey)
198 connection.answer_challenge(c, self.authkey)
473 def __init__(self, address=None, authkey=None, serializer='pickle'):
474 if authkey is None:
475 authkey = current_process().authkey
[all...]
H A Dconnection.py124 def __init__(self, address=None, family=None, backlog=1, authkey=None):
134 if authkey is not None and not isinstance(authkey, bytes):
135 raise TypeError, 'authkey should be a byte string'
137 self._authkey = authkey
161 def Client(address, family=None, authkey=None):
171 if authkey is not None and not isinstance(authkey, bytes):
172 raise TypeError, 'authkey should be a byte string'
174 if authkey i
[all...]
H A Dreduction.py110 _listener = Listener(authkey=current_process().authkey)
155 conn = Client(address, authkey=current_process().authkey)
H A Dprocess.py186 def authkey(self): member in class:Process
189 @authkey.setter
190 def authkey(self, authkey): member in class:Process
194 self._authkey = AuthenticationString(authkey)
H A Dforking.py402 authkey=process.current_process().authkey,
451 if 'authkey' in data:
452 process.current_process()._authkey = data['authkey']
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
H A Dmanagers.py155 def __init__(self, registry, address, authkey, serializer):
156 assert isinstance(authkey, bytes)
158 self.authkey = AuthenticationString(authkey)
197 connection.deliver_challenge(c, self.authkey)
198 connection.answer_challenge(c, self.authkey)
473 def __init__(self, address=None, authkey=None, serializer='pickle'):
474 if authkey is None:
475 authkey = current_process().authkey
[all...]
H A Dconnection.py124 def __init__(self, address=None, family=None, backlog=1, authkey=None):
134 if authkey is not None and not isinstance(authkey, bytes):
135 raise TypeError, 'authkey should be a byte string'
137 self._authkey = authkey
161 def Client(address, family=None, authkey=None):
171 if authkey is not None and not isinstance(authkey, bytes):
172 raise TypeError, 'authkey should be a byte string'
174 if authkey i
[all...]
H A Dreduction.py110 _listener = Listener(authkey=current_process().authkey)
155 conn = Client(address, authkey=current_process().authkey)
H A Dprocess.py186 def authkey(self): member in class:Process
189 @authkey.setter
190 def authkey(self, authkey): member in class:Process
194 self._authkey = AuthenticationString(authkey)
H A Dforking.py402 authkey=process.current_process().authkey,
451 if 'authkey' in data:
452 process.current_process()._authkey = data['authkey']
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_multiprocessing.py188 authkey = current.authkey
192 self.assertIsInstance(authkey, bytes)
193 self.assertTrue(len(authkey) > 0)
204 q.put(bytes(current.authkey))
220 self.assertEqual(p.authkey, current.authkey)
237 self.assertEqual(q.get(), current.authkey)
1376 def _putter(cls, address, authkey):
1378 address=address, authkey
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_multiprocessing.py188 authkey = current.authkey
192 self.assertIsInstance(authkey, bytes)
193 self.assertTrue(len(authkey) > 0)
204 q.put(bytes(current.authkey))
220 self.assertEqual(p.authkey, current.authkey)
237 self.assertEqual(q.get(), current.authkey)
1376 def _putter(cls, address, authkey):
1378 address=address, authkey
[all...]

Completed in 144 milliseconds