Searched refs:get_ident (Results 1 – 25 of 29) sorted by relevance
12
/third_party/python/Lib/ |
D | threading.py | 37 get_ident = _thread.get_ident variable 164 me = get_ident() 192 if self._owner != get_ident(): 219 return self._owner == get_ident() 973 self._ident = get_ident() 1017 del _active[get_ident()] 1051 del _active[get_ident()] 1282 name = get_ident() 1431 return _active[get_ident()] 1533 if _main_thread.ident == get_ident(): [all …]
|
D | reprlib.py | 7 from _thread import get_ident 16 key = id(self), get_ident()
|
D | dataclasses.py | 400 key = id(self), _thread.get_ident()
|
/third_party/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())
|
/third_party/python/Lib/asyncio/ |
D | base_futures.py | 4 from _thread import get_ident 63 key = id(future), get_ident()
|
D | base_events.py | 587 self._thread_id = threading.get_ident() 782 thread_id = threading.get_ident()
|
/third_party/python/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_sys.py | 354 thread_info.append(threading.get_ident()) 373 main_id = threading.get_ident() 419 thread_info.append(threading.get_ident()) 443 main_id = threading.get_ident()
|
D | test_threading.py | 244 tid = threading.get_ident() 275 self.id = threading.get_ident() 588 self.assertEqual(main.ident, threading.get_ident())
|
D | test_capi.py | 814 idents.append(threading.get_ident()) 820 self.assertEqual(idents.count(threading.get_ident()), 3,
|
D | test_socketserver.py | 436 main_thread = threading.get_ident()
|
D | test_wsgiref.py | 278 main_thread = threading.get_ident()
|
D | test_time.py | 113 clk_id = time.pthread_getcpuclockid(threading.get_ident())
|
D | lock_tests.py | 46 tid = threading.get_ident()
|
/third_party/rust/crates/cxx/macro/src/ |
D | load.rs | 169 .get_ident() in traverse() 263 .get_ident() in translate_qual_type()
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_futures.py | 477 return (arg, threading.get_ident()) 484 self.assertNotEqual(ident, threading.get_ident()) 494 return (arg, threading.get_ident()) 505 return (arg, threading.get_ident()) 519 return (arg, threading.get_ident())
|
/third_party/python/Lib/importlib/ |
D | _bootstrap.py | 81 me = _thread.get_ident() 106 tid = _thread.get_ident() 126 tid = _thread.get_ident()
|
/third_party/python/Lib/test/test_importlib/ |
D | test_threaded_import.py | 37 done_tasks.append(threading.get_ident())
|
/third_party/rust/crates/syn/src/ |
D | path.rs | 574 match self.get_ident() { in is_ident() 592 pub fn get_ident(&self) -> Option<&Ident> { in get_ident() method
|
/third_party/rust/crates/cxx/syntax/ |
D | attrs.rs | 216 if let Some(ident) = path.get_ident() { in parse_derive_attribute()
|
D | parse.rs | 925 }) if if let Some(derive) = path.get_ident().and_then(Derive::from) { in parse_extern_type_bounded()
|
/third_party/python/Doc/library/ |
D | _thread.rst | 106 .. function:: get_ident()
|
D | threading.rst | 99 .. function:: get_ident() 397 been started. This is a nonzero integer. See the :func:`get_ident`
|
D | signal.rst | 377 Use :func:`threading.get_ident()` or the :attr:`~threading.Thread.ident`
|
/third_party/python/Lib/logging/ |
D | __init__.py | 331 self.thread = threading.get_ident()
|
12