/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/cpython3/Lib/multiprocessing/ |
D | util.py | 135 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:
|
D | spawn.py | 122 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']
|
D | resource_sharer.py | 86 c = Client(address, authkey=process.current_process().authkey) 96 authkey=process.current_process().authkey) 126 self._listener = Listener(authkey=process.current_process().authkey)
|
D | reduction.py | 74 current_process = _winapi.GetCurrentProcess() 76 source_process = current_process 78 target_process = current_process
|
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 | context.py | 37 current_process = staticmethod(process.current_process) variable in BaseContext
|
D | managers.py | 168 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
|
D | forkserver.py | 171 process.current_process()._inheriting = True 175 del process.current_process()._inheriting
|
/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
|
/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)
|
/external/tensorflow/tensorflow/core/platform/windows/ |
D | stacktrace.cc | 66 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/ |
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/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rand/ |
D | urandom.c | 232 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/ |
D | urandom.c | 232 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/ |
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()
|