Home
last modified time | relevance | path

Searched refs:tident (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachThread.cpp610 thread_identifier_info_data_t tident; in GetGloballyUniqueThreadIDForMachPortID() local
612 kr = thread_info(mach_port_id, THREAD_IDENTIFIER_INFO, (thread_info_t)&tident, in GetGloballyUniqueThreadIDForMachPortID()
617 return tident.thread_id; in GetGloballyUniqueThreadIDForMachPortID()
624 thread_identifier_info_data_t tident; in GetPThreadT() local
627 (thread_info_t)&tident, &tident_count); in GetPThreadT()
632 if (m_process->ReadMemory(tident.thread_handle, 8, &addr) == 8) { in GetPThreadT()
639 if (m_process->ReadMemory(tident.thread_handle, 4, &addr) == 4) { in GetPThreadT()
704 thread_identifier_info_data_t tident; in GetDispatchQueueT() local
707 (thread_info_t)&tident, &tident_count); in GetDispatchQueueT()
708 if (kr == KERN_SUCCESS && tident.dispatch_qaddr != 0 && in GetDispatchQueueT()
[all …]
/external/llvm-project/lldb/tools/darwin-threads/
Dexamine-threads.c136 thread_identifier_info_data_t tident; in get_thread_identifier_info() local
138 kr = thread_info(thread, THREAD_IDENTIFIER_INFO, (thread_info_t)&tident, in get_thread_identifier_info()
144 return tident; in get_thread_identifier_info()