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

12

/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
H A Dmultiprocessing_shim.py68 def authkey(self): member in class:ProcessShim
71 @authkey.setter
72 def authkey(self, authkey): member in class:ProcessShim
73 self._proc.authkey = AuthenticationString(authkey)
/external/python/cpython2/Lib/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']
/external/python/cpython3/Lib/multiprocessing/
H A Dresource_sharer.py87 c = Client(address, authkey=process.current_process().authkey)
97 authkey=process.current_process().authkey)
130 self._listener = Listener(authkey=process.current_process().authkey)
H A Dmanagers.py132 def __init__(self, registry, address, authkey, serializer):
133 assert isinstance(authkey, bytes)
135 self.authkey = process.AuthenticationString(authkey)
185 connection.deliver_challenge(c, self.authkey)
186 connection.answer_challenge(c, self.authkey)
464 def __init__(self, address=None, authkey=None, serializer='pickle',
466 if authkey is None:
467 authkey = process.current_process().authkey
[all...]
H A Dprocess.py162 def authkey(self): member in class:BaseProcess
163 return self._config['authkey']
165 @authkey.setter
166 def authkey(self, authkey): member in class:BaseProcess
170 self._config['authkey'] = AuthenticationString(authkey)
298 self._config = {'authkey': AuthenticationString(os.urandom(32)),
H A Dconnection.py429 def __init__(self, address=None, family=None, backlog=1, authkey=None):
440 if authkey is not None and not isinstance(authkey, bytes):
441 raise TypeError('authkey should be a byte string')
443 self._authkey = authkey
478 def Client(address, family=None, authkey=None):
489 if authkey is not None and not isinstance(authkey, bytes):
490 raise TypeError('authkey should be a byte string')
492 if authkey i
[all...]
H A Dspawn.py146 authkey=process.current_process().authkey,
198 if 'authkey' in data:
199 process.current_process().authkey = data['authkey']
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_process.c42 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
73 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash);
H A Dwps_attr_build.c177 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
364 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, wpabuf_head(msg),
H A Dwps_common.c117 os_memcpy(wps->authkey, keys, WPS_AUTHKEY_LEN);
123 wps->authkey, WPS_AUTHKEY_LEN);
137 if (hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, dev_passwd,
141 if (hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN,
H A Dwps_i.h64 u8 authkey[WPS_AUTHKEY_LEN]; member in struct:wps_data
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_process.c42 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
73 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash);
H A Dwps_attr_build.c177 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
364 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, wpabuf_head(msg),
H A Dwps_common.c117 os_memcpy(wps->authkey, keys, WPS_AUTHKEY_LEN);
123 wps->authkey, WPS_AUTHKEY_LEN);
137 if (hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, dev_passwd,
141 if (hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN,
H A Dwps_i.h64 u8 authkey[WPS_AUTHKEY_LEN]; member in struct:wps_data
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_process.c42 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
73 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash);
H A Dwps_attr_build.c177 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
364 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, wpabuf_head(msg),
/external/python/cpython2/Lib/test/
H A Dtest_multiprocessing.py186 authkey = current.authkey
190 self.assertIsInstance(authkey, bytes)
191 self.assertTrue(len(authkey) > 0)
202 q.put(bytes(current.authkey))
218 self.assertEqual(p.authkey, current.authkey)
235 self.assertEqual(q.get(), current.authkey)
1459 def _putter(cls, address, authkey):
1461 address=address, authkey
[all...]
/external/autotest/site_utils/lxc/container_pool/
H A Dasync_listener_unittest.py30 self.authkey = 'foo'
/external/tcpdump/
H A Dprint-esp.c433 char *authkey; local
439 authkey = strsep(&line, " \t");
443 if(!init || !icookie || !rcookie || !authkey || !enckey) {
477 if(!espprint_decode_authalgo(ndo, authkey, &sa1)) return;
/external/python/cpython3/Lib/test/
H A D_test_multiprocessing.py202 authkey = current.authkey
206 self.assertIsInstance(authkey, bytes)
207 self.assertTrue(len(authkey) > 0)
230 q.put(bytes(current.authkey))
246 self.assertEqual(p.authkey, current.authkey)
263 self.assertEqual(q.get(), current.authkey)
2209 def _putter(cls, address, authkey):
2211 address=address, authkey
[all...]

Completed in 413 milliseconds

12