Searched refs:BaseProxy (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/multiprocessing/ |
D | managers.py | 632 del BaseProxy._address_to_local[address] 692 class BaseProxy(object): class 701 BaseProxy._mutex.acquire() 703 tls_idset = BaseProxy._address_to_local.get(token.address, None) 706 BaseProxy._address_to_local[token.address] = tls_idset 708 BaseProxy._mutex.release() 735 util.register_after_fork(self, BaseProxy._after_fork) 792 self, BaseProxy._decref, 901 ProxyType = type(name, (BaseProxy,), dic) 967 class IteratorProxy(BaseProxy): [all …]
|
/external/python/cpython3/Doc/includes/ |
D | mp_newtype.py | 2 from multiprocessing.managers import BaseManager, BaseProxy 21 class GeneratorProxy(BaseProxy):
|
/external/python/cpython2/Doc/includes/ |
D | mp_newtype.py | 10 from multiprocessing.managers import BaseManager, BaseProxy 29 class GeneratorProxy(BaseProxy):
|
/external/python/cpython3/Lib/multiprocessing/ |
D | managers.py | 677 del BaseProxy._address_to_local[address] 739 class BaseProxy(object): class 748 with BaseProxy._mutex: 749 tls_idset = BaseProxy._address_to_local.get(token.address, None) 752 BaseProxy._address_to_local[token.address] = tls_idset 785 util.register_after_fork(self, BaseProxy._after_fork) 846 self, BaseProxy._decref, 955 ProxyType = type(name, (BaseProxy,), dic) 1021 class IteratorProxy(BaseProxy): 1035 class AcquirerProxy(BaseProxy): [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1431 from multiprocessing.managers import BaseManager, BaseProxy, RemoteError 1445 class IteratorProxy(BaseProxy):
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 1429 *proxytype* is a subclass of :class:`BaseProxy` which is used to create 1435 :meth:`BaseProxy._callmethod`. (If *exposed* is ``None`` then 1713 .. class:: BaseProxy 1715 Proxy objects are instances of subclasses of :class:`BaseProxy`.
|
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 2807 from multiprocessing.managers import BaseManager, BaseProxy, RemoteError 2821 class IteratorProxy(BaseProxy):
|