Home
last modified time | relevance | path

Searched refs:get_ident (Results 1 - 25 of 26) sorted by relevance

12

/third_party/python/Lib/
H A Dthreading.py26 __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 Dreprlib.py7 from _thread import get_ident namespace
16 key = id(self), get_ident()
H A Ddataclasses.py235 key = id(self), _thread.get_ident()
/third_party/python/Lib/test/
H A Dtest_threadsignals.py31 signal_blackboard[sig]['tripped_by'] = thread.get_ident()
70 thread.get_ident())
73 thread.get_ident())
H A Dtest_threading.py272 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 Dtest_sys.py420 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 Dtest_socketserver.py438 main_thread = threading.get_ident()
H A Dtest_wsgiref.py262 main_thread = threading.get_ident()
H A Dlock_tests.py46 tid = threading.get_ident()
H A Dtest_time.py117 clk_id = time.pthread_getcpuclockid(threading.get_ident())
/third_party/python/Lib/asyncio/
H A Dbase_futures.py4 from _thread import get_ident namespace
H A Dbase_events.py601 self._thread_id = threading.get_ident()
798 thread_id = threading.get_ident()
/third_party/rust/crates/syn/src/
H A Dpath.rs61 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 Dtest_futures.py478 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 Dtest_events.py370 return (arg, threading.get_ident())
374 self.assertNotEqual(thread_id, threading.get_ident())
/third_party/python/Lib/test/test_importlib/
H A Dtest_threaded_import.py39 done_tasks.append(threading.get_ident())
/third_party/backends/backend/
H A Depjitsu.h366 static SANE_Status get_ident(struct scanner *s);
/third_party/python/Lib/importlib/
H A D_bootstrap.py81 me = _thread.get_ident()
106 tid = _thread.get_ident()
126 tid = _thread.get_ident()
/third_party/python/Lib/test/test_capi/
H A Dtest_misc.py1090 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 Dparse.rs924 }) 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 Dparse.rs924 }) 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 Dparse.rs924 }) 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 Dparse.rs924 }) 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__.py340 self.thread = threading.get_ident()
/third_party/rust/crates/cxx/syntax/
H A Dparse.rs924 }) if if let Some(derive) = path.get_ident().and_then(Derive::from) { in parse_extern_type_bounded()

Completed in 40 milliseconds

12