Searched refs:get_ident (Results 1 – 25 of 48) sorted by relevance
12
/external/python/cpython2/Demo/metaclasses/ |
D | Synch.py | 63 if self.__tid == thread.get_ident(): 75 self.__tid = thread.get_ident() 93 assert self.__tid == thread.get_ident() 109 print "f2 running in thread %d\n" % thread.get_ident(), 115 print "f1 running in thread %d\n" % thread.get_ident(),
|
/external/libxml2/python/tests/ |
D | thread2.py | 4 from _thread import get_ident 6 from thread import get_ident 38 "lineNumbersDefault in thread %d" % get_ident())
|
/external/python/cpython2/Lib/test/ |
D | test_threadsignals.py | 28 signal_blackboard[sig]['tripped_by'] = thread.get_ident() 63 thread.get_ident()) 66 thread.get_ident())
|
D | test_dummy_thread.py | 95 self.assertIsInstance(_thread.get_ident(), int, 97 self.assertNotEqual(_thread.get_ident(), 0, 149 queue.put(_thread.get_ident())
|
D | test_capi.py | 129 idents.append(thread.get_ident()) 135 self.assertEqual(idents.count(thread.get_ident()), 3,
|
D | test_threading.py | 180 tid = thread.get_ident() 209 self.id = thread.get_ident()
|
D | lock_tests.py | 7 from thread import start_new_thread, get_ident 34 tid = get_ident()
|
/external/python/cpython3/Lib/ |
D | threading.py | 37 get_ident = _thread.get_ident variable 156 me = get_ident() 184 if self._owner != get_ident(): 211 return self._owner == get_ident() 919 self._ident = get_ident() 962 del _active[get_ident()] 995 del _active[get_ident()] 1181 name = get_ident() 1326 return _active[get_ident()] 1466 current = _active[get_ident()] [all …]
|
D | reprlib.py | 7 from _thread import get_ident 16 key = id(self), get_ident()
|
/external/python/cpython3/Lib/asyncio/ |
D | base_futures.py | 4 from _thread import get_ident 63 key = id(future), get_ident()
|
/external/python/cpython3/Lib/test/ |
D | test_threadsignals.py | 31 signal_blackboard[sig]['tripped_by'] = thread.get_ident() 67 thread.get_ident()) 70 thread.get_ident())
|
D | test_threading.py | 199 tid = threading.get_ident() 230 self.id = threading.get_ident() 523 self.assertEqual(main.ident, threading.get_ident())
|
/external/tensorflow/tensorflow/python/util/ |
D | tf_stack.py | 38 _get_thread_key = thread.get_ident 40 _get_thread_key = threading.get_ident
|
/external/python/cpython2/Demo/pysvr/ |
D | pysvr.py | 60 print "Thread %s has connection from %s.\n" % (str(thread.get_ident()), 65 print "Thread %s is done.\n" % str(thread.get_ident()),
|
/external/python/funcsigs/funcsigs/ |
D | odict.py | 8 from thread import get_ident as _get_ident 10 from dummy_thread import get_ident as _get_ident
|
/external/python/cpython2/Lib/ |
D | dummy_thread.py | 62 def get_ident(): function
|
D | collections.py | 29 from thread import get_ident as _get_ident 31 from dummy_thread import get_ident as _get_ident
|
/external/crosvm/enumn/src/ |
D | lib.rs | 137 if let Some(s) = word.get_ident() { in testable_derive()
|
/external/rust/crates/tokio-macros/src/ |
D | entry.rs | 204 let ident = namevalue.path.get_ident(); in parse_knobs() 230 let ident = path.get_ident(); in parse_knobs()
|
/external/llvm-project/lldb/test/API/functionalities/step_scripted/ |
D | TestStepScripted.py | 142 thread_id = str(threading.get_ident())
|
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap.py | 68 me = _thread.get_ident() 93 tid = _thread.get_ident() 113 tid = _thread.get_ident()
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_threaded_import.py | 36 done_tasks.append(threading.get_ident())
|
/external/rust/cxx/syntax/ |
D | attrs.rs | 161 if let Some(ident) = path.get_ident() { in parse_derive_attribute()
|
/external/tensorflow/tensorflow/python/platform/ |
D | tf_logging.py | 327 thread_id = six.moves._thread.get_ident()
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_futures.py | 460 return (arg, threading.get_ident()) 467 self.assertNotEqual(ident, threading.get_ident()) 479 return (arg, threading.get_ident())
|
12