Home
last modified time | relevance | path

Searched refs:AuthenticationString (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
Dprocess.py203 self._authkey = AuthenticationString(authkey)
294 class AuthenticationString(bytes): class
302 return AuthenticationString, (bytes(self),)
318 self._authkey = AuthenticationString(os.urandom(32))
Dmanagers.py51 from multiprocessing.process import AuthenticationString
158 self.authkey = AuthenticationString(authkey)
477 self._authkey = AuthenticationString(authkey)
726 self._authkey = AuthenticationString(authkey)
/external/python/cpython3/Lib/multiprocessing/
Dprocess.py222 self._config['authkey'] = AuthenticationString(authkey)
343 class AuthenticationString(bytes): class
351 return AuthenticationString, (bytes(self),)
399 self._config = {'authkey': AuthenticationString(os.urandom(32)),
Dmanagers.py151 self.authkey = process.AuthenticationString(authkey)
495 self._authkey = process.AuthenticationString(authkey)
776 self._authkey = process.AuthenticationString(authkey)
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Dmultiprocessing_shim.py73 self._proc.authkey = AuthenticationString(authkey)