/external/python/cpython3/Lib/multiprocessing/dummy/ |
D | __init__.py | 41 self._parent = current_process() 44 if self._parent is not current_process(): 47 self._parent, current_process())) 65 current_process = threading.current_thread variable 66 current_process()._children = weakref.WeakKeyDictionary() 69 children = current_process()._children
|
/external/python/cpython2/Lib/multiprocessing/dummy/ |
D | __init__.py | 68 self._parent = current_process() 71 assert self._parent is current_process() 96 current_process = threading.current_thread variable 97 current_process()._children = weakref.WeakKeyDictionary() 100 children = current_process()._children
|
/external/python/cpython2/Lib/multiprocessing/ |
D | util.py | 43 from multiprocessing.process import current_process, active_children 137 if current_process()._tempdir is None: 142 current_process()._tempdir = tempdir 143 return current_process()._tempdir 299 current_process=current_process): argument 310 if current_process() is not None:
|
D | forking.py | 345 if getattr(process.current_process(), '_inheriting', False): 378 process.current_process()._inheriting = True 382 process.current_process()._inheriting = False 402 authkey=process.current_process().authkey, 450 process.current_process().name = data['name'] 453 process.current_process()._authkey = data['authkey']
|
D | reduction.py | 44 from multiprocessing import current_process 110 _listener = Listener(authkey=current_process().authkey) 155 conn = Client(address, authkey=current_process().authkey)
|
D | synchronize.py | 46 from multiprocessing.process import current_process 152 name = current_process().name 177 name = current_process().name
|
D | managers.py | 50 from multiprocessing import Process, current_process, active_children, Pool, util, connection 174 current_process()._manager_server = self 475 authkey = current_process().authkey 730 self._authkey = current_process().authkey 739 name = current_process().name 870 server = getattr(current_process(), '_manager_server', None) 877 not getattr(current_process(), '_inheriting', False) 924 authkey = current_process().authkey
|
D | __init__.py | 64 from multiprocessing.process import Process, current_process, active_children
|
D | process.py | 59 def current_process(): function
|
/external/python/cpython3/Lib/multiprocessing/ |
D | spawn.py | 111 process.current_process()._inheriting = True 117 del process.current_process()._inheriting 122 if getattr(process.current_process(), '_inheriting', False): 146 authkey=process.current_process().authkey, 196 process.current_process().name = data['name'] 199 process.current_process().authkey = data['authkey']
|
D | util.py | 111 tempdir = process.current_process()._config.get('tempdir') 117 process.current_process()._config['tempdir'] = tempdir 287 current_process=process.current_process): argument 301 if current_process() is not None:
|
D | resource_sharer.py | 87 c = Client(address, authkey=process.current_process().authkey) 97 authkey=process.current_process().authkey) 130 self._listener = Listener(authkey=process.current_process().authkey)
|
D | synchronize.py | 116 return '%s-%s' % (process.current_process()._config['semprefix'], 167 name = process.current_process().name 192 name = process.current_process().name
|
D | managers.py | 158 process.current_process()._manager_server = self 483 authkey = process.current_process().authkey 767 self._authkey = process.current_process().authkey 776 name = process.current_process().name 909 server = getattr(process.current_process(), '_manager_server', None) 918 not getattr(process.current_process(), '_inheriting', False) 965 authkey = process.current_process().authkey
|
D | context.py | 37 current_process = staticmethod(process.current_process) variable in BaseContext
|
D | forkserver.py | 150 process.current_process()._inheriting = True 154 del process.current_process()._inheriting
|
D | process.py | 36 def current_process(): function
|
/external/python/cpython2/Doc/includes/ |
D | mp_synchronize.py | 21 print '\n\t\t\t' + str(multiprocessing.current_process()) + ' has finished' 123 print '%s has finished' % multiprocessing.current_process() 170 print '\t%r is waiting' % multiprocessing.current_process() 172 print '\t%r has woken up' % multiprocessing.current_process() 267 namespace.current_process = multiprocessing.current_process
|
D | mp_webserver.py | 18 from multiprocessing import Process, current_process, freeze_support 27 sys.stderr.write('[%s]\t%s\n' % (current_process().name, format%args))
|
D | mp_workers.py | 17 from multiprocessing import Process, Queue, current_process, freeze_support 35 (current_process().name, func.__name__, args, result)
|
D | mp_pool.py | 20 multiprocessing.current_process().name,
|
/external/boringssl/src/crypto/fipsmodule/rand/ |
D | urandom.c | 155 const char *current_process = "<unknown>"; in DEFINE_BSS_GET() local 159 current_process = (const char *)getauxval_ret; in DEFINE_BSS_GET() 167 current_process); in DEFINE_BSS_GET()
|
/external/python/cpython3/Doc/includes/ |
D | mp_workers.py | 4 from multiprocessing import Process, Queue, current_process, freeze_support 22 (current_process().name, func.__name__, args, result)
|
D | mp_pool.py | 13 multiprocessing.current_process().name,
|
/external/google-breakpad/src/client/windows/crash_generation/ |
D | crash_generation_server.cc | 653 HANDLE current_process = GetCurrentProcess(); in CreateClientHandles() local 654 if (!DuplicateHandle(current_process, in CreateClientHandles() 664 if (!DuplicateHandle(current_process, in CreateClientHandles() 674 if (!DuplicateHandle(current_process, in CreateClientHandles()
|