HomeSort by relevance Sort by last modified time
    Searched defs:_tls (Results 1 - 7 of 7) sorted by null

  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
log.py 23 _tls = threading.local() # tls used to detect forking/etc variable
147 if not hasattr(_tls, 'pid') or _tls.pid != os.getpid():
148 _tls.pid = os.getpid()
150 if _tls.pid != _atexit_regsitered_for_pid:
151 _atexit_regsitered_for_pid = _tls.pid
153 _tls.pid = os.getpid()
158 _tls.tid = tid
162 "pid": _tls.pid,
163 "tid": _tls.tid
    [all...]
  /external/python/cpython2/Lib/multiprocessing/
forking.py 247 _tls = thread._local() variable in class:.Popen
274 Popen._tls.process_handle = int(hp)
279 del Popen._tls.process_handle
284 return getattr(Popen._tls, 'process_handle', None) is not None
288 return duplicate(handle, Popen._tls.process_handle)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
forking.py 247 _tls = thread._local() variable in class:.Popen
274 Popen._tls.process_handle = int(hp)
279 del Popen._tls.process_handle
284 return getattr(Popen._tls, 'process_handle', None) is not None
288 return duplicate(handle, Popen._tls.process_handle)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
forking.py 247 _tls = thread._local() variable in class:.Popen
274 Popen._tls.process_handle = int(hp)
279 del Popen._tls.process_handle
284 return getattr(Popen._tls, 'process_handle', None) is not None
288 return duplicate(handle, Popen._tls.process_handle)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 247 _tls = thread._local() variable in class:.Popen
274 Popen._tls.process_handle = int(hp)
279 del Popen._tls.process_handle
284 return getattr(Popen._tls, 'process_handle', None) is not None
288 return duplicate(handle, Popen._tls.process_handle)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 247 _tls = thread._local() variable in class:.Popen
274 Popen._tls.process_handle = int(hp)
279 del Popen._tls.process_handle
284 return getattr(Popen._tls, 'process_handle', None) is not None
288 return duplicate(handle, Popen._tls.process_handle)
  /external/python/cpython3/Lib/multiprocessing/
context.py 344 _tls = threading.local() variable
347 return getattr(_tls, 'spawning_popen', None)
350 _tls.spawning_popen = popen

Completed in 415 milliseconds