Home
last modified time | relevance | path

Searched refs:_thread_id (Results 1 – 3 of 3) sorted by relevance

/external/libxcam/xcore/
Dxcam_thread.cpp29 , _thread_id (0) in Thread()
61 thread->_thread_id = 0; in thread_func()
98 if (pthread_create (&_thread_id, NULL, (void * (*)(void*))thread_func, this) != 0) in start()
107 int ret = pthread_setname_np (_thread_id, thread_name); in start()
Dxcam_thread.h57 pthread_t _thread_id; variable
/external/python/cpython3/Lib/asyncio/
Dbase_events.py370 self._thread_id = None
531 self._thread_id = threading.get_ident()
544 self._thread_id = None
629 return (self._thread_id is not None)
723 if self._thread_id is None:
726 if thread_id != self._thread_id: