Home
last modified time | relevance | path

Searched refs:current_process (Results 1 – 25 of 39) 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/cpython3/Lib/multiprocessing/
Dutil.py135 current_process = process.current_process()
138 if current_process is not None:
139 current_process._config['tempdir'] = None
143 tempdir = process.current_process()._config.get('tempdir')
152 process.current_process()._config['tempdir'] = tempdir
322 current_process=process.current_process): argument
336 if current_process() is not None:
Dspawn.py122 process.current_process()._inheriting = True
128 del process.current_process()._inheriting
133 if getattr(process.current_process(), '_inheriting', False):
157 authkey=process.current_process().authkey,
207 process.current_process().name = data['name']
210 process.current_process().authkey = data['authkey']
Dresource_sharer.py86 c = Client(address, authkey=process.current_process().authkey)
96 authkey=process.current_process().authkey)
126 self._listener = Listener(authkey=process.current_process().authkey)
Dreduction.py74 current_process = _winapi.GetCurrentProcess()
76 source_process = current_process
78 target_process = current_process
Dsynchronize.py116 return '%s-%s' % (process.current_process()._config['semprefix'],
167 name = process.current_process().name
192 name = process.current_process().name
Dcontext.py37 current_process = staticmethod(process.current_process) variable in BaseContext
Dmanagers.py168 process.current_process()._manager_server = self
493 authkey = process.current_process().authkey
780 self._authkey = process.current_process().authkey
789 name = process.current_process().name
922 server = getattr(process.current_process(), '_manager_server', None)
931 not getattr(process.current_process(), '_inheriting', False)
978 authkey = process.current_process().authkey
Dforkserver.py171 process.current_process()._inheriting = True
175 del process.current_process()._inheriting
/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
/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)
/external/tensorflow/tensorflow/core/platform/windows/
Dstacktrace.cc66 HANDLE current_process = GetCurrentProcess(); in CurrentStackTrace() local
86 if (SymFromAddr(current_process, reinterpret_cast<DWORD64>(trace[i]), 0, in CurrentStackTrace()
/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/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rand/
Durandom.c232 const char *current_process = "<unknown>"; in DEFINE_STATIC_ONCE() local
236 current_process = (const char *)getauxval_ret; in DEFINE_STATIC_ONCE()
245 current_process); in DEFINE_STATIC_ONCE()
/external/boringssl/src/crypto/fipsmodule/rand/
Durandom.c232 const char *current_process = "<unknown>"; in DEFINE_STATIC_ONCE() local
236 current_process = (const char *)getauxval_ret; in DEFINE_STATIC_ONCE()
245 current_process); in DEFINE_STATIC_ONCE()
/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