Home
last modified time | relevance | path

Searched refs:current_process (Results 1 – 25 of 35) sorted by relevance

12

/external/python/cpython3/Lib/multiprocessing/dummy/
D__init__.py41 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__.py68 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/
Dutil.py43 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:
Dforking.py345 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']
Dreduction.py44 from multiprocessing import current_process
110 _listener = Listener(authkey=current_process().authkey)
155 conn = Client(address, authkey=current_process().authkey)
Dsynchronize.py46 from multiprocessing.process import current_process
152 name = current_process().name
177 name = current_process().name
Dmanagers.py50 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__.py64 from multiprocessing.process import Process, current_process, active_children
Dprocess.py59 def current_process(): function
/external/python/cpython3/Lib/multiprocessing/
Dspawn.py111 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']
Dutil.py111 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:
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)
Dsynchronize.py116 return '%s-%s' % (process.current_process()._config['semprefix'],
167 name = process.current_process().name
192 name = process.current_process().name
Dmanagers.py158 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
Dcontext.py37 current_process = staticmethod(process.current_process) variable in BaseContext
Dforkserver.py150 process.current_process()._inheriting = True
154 del process.current_process()._inheriting
Dprocess.py36 def current_process(): function
/external/python/cpython2/Doc/includes/
Dmp_synchronize.py21 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
Dmp_webserver.py18 from multiprocessing import Process, current_process, freeze_support
27 sys.stderr.write('[%s]\t%s\n' % (current_process().name, format%args))
Dmp_workers.py17 from multiprocessing import Process, Queue, current_process, freeze_support
35 (current_process().name, func.__name__, args, result)
Dmp_pool.py20 multiprocessing.current_process().name,
/external/boringssl/src/crypto/fipsmodule/rand/
Durandom.c155 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/
Dmp_workers.py4 from multiprocessing import Process, Queue, current_process, freeze_support
22 (current_process().name, func.__name__, args, result)
Dmp_pool.py13 multiprocessing.current_process().name,
/external/google-breakpad/src/client/windows/crash_generation/
Dcrash_generation_server.cc653 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()

12