/third_party/python/Lib/ |
H A D | threading.py | 26 __all__ = ['get_ident', 'active_count', 'Condition', 'current_thread', 37 get_ident = _thread.get_ident variable 164 me = get_ident() 192 if self._owner != get_ident(): 219 return self._owner == get_ident() 1002 self._ident = get_ident() 1074 del _active[get_ident()] 1165 This is a nonzero integer. See the get_ident() function. Thread 1305 name = get_ident() [all...] |
H A D | reprlib.py | 7 from _thread import get_ident namespace 16 key = id(self), get_ident()
|
H A D | dataclasses.py | 235 key = id(self), _thread.get_ident()
|
/third_party/python/Lib/test/ |
H A D | test_threadsignals.py | 31 signal_blackboard[sig]['tripped_by'] = thread.get_ident() 70 thread.get_ident()) 73 thread.get_ident())
|
H A D | test_threading.py | 272 tid = threading.get_ident() 303 self.id = threading.get_ident() 616 self.assertEqual(main.ident, threading.get_ident()) 637 print(main.ident == threading.get_ident()) 660 print(main.ident == threading.get_ident()) 1479 self.assertIn(f'Exception in thread {threading.get_ident()}:\n', stderr)
|
H A D | test_sys.py | 420 thread_info.append(threading.get_ident()) 439 main_id = threading.get_ident() 486 thread_info.append(threading.get_ident()) 510 main_id = threading.get_ident()
|
H A D | test_socketserver.py | 438 main_thread = threading.get_ident()
|
H A D | test_wsgiref.py | 262 main_thread = threading.get_ident()
|
H A D | lock_tests.py | 46 tid = threading.get_ident()
|
H A D | test_time.py | 117 clk_id = time.pthread_getcpuclockid(threading.get_ident())
|
/third_party/python/Lib/asyncio/ |
H A D | base_futures.py | 4 from _thread import get_ident namespace
|
H A D | base_events.py | 601 self._thread_id = threading.get_ident() 798 thread_id = threading.get_ident()
|
/third_party/rust/crates/syn/src/ |
H A D | path.rs | 61 match self.get_ident() { in is_ident() 75 pub fn get_ident(&self) -> Option<&Ident> { in get_ident() functions 86 /// An error if this path is not a single ident, as defined in `get_ident`. 90 self.get_ident().ok_or_else(|| { in require_ident() 720 && expr.path.get_ident().is_some() => in to_tokens()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_futures.py | 478 return (arg, threading.get_ident()) 485 self.assertNotEqual(ident, threading.get_ident()) 495 return (arg, threading.get_ident()) 504 return (arg, threading.get_ident()) 518 return (arg, threading.get_ident())
|
H A D | test_events.py | 370 return (arg, threading.get_ident()) 374 self.assertNotEqual(thread_id, threading.get_ident())
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_threaded_import.py | 39 done_tasks.append(threading.get_ident())
|
/third_party/backends/backend/ |
H A D | epjitsu.h | 366 static SANE_Status get_ident(struct scanner *s);
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap.py | 81 me = _thread.get_ident() 106 tid = _thread.get_ident() 126 tid = _thread.get_ident()
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_misc.py | 1090 idents.append(threading.get_ident()) 1096 self.assertEqual(idents.count(threading.get_ident()), 3,
|
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | parse.rs | 924 }) if if let Some(derive) = path.get_ident().and_then(Derive::from) { in parse_extern_type_bounded()
|
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | parse.rs | 924 }) if if let Some(derive) = path.get_ident().and_then(Derive::from) { in parse_extern_type_bounded()
|
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | parse.rs | 924 }) if if let Some(derive) = path.get_ident().and_then(Derive::from) { in parse_extern_type_bounded()
|
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | parse.rs | 924 }) if if let Some(derive) = path.get_ident().and_then(Derive::from) { in parse_extern_type_bounded()
|
/third_party/python/Lib/logging/ |
H A D | __init__.py | 340 self.thread = threading.get_ident()
|
/third_party/rust/crates/cxx/syntax/ |
H A D | parse.rs | 924 }) if if let Some(derive) = path.get_ident().and_then(Derive::from) { in parse_extern_type_bounded()
|