Home
last modified time | relevance | path

Searched refs:m_tid (Results 1 – 9 of 9) sorted by relevance

/external/lldb/source/Target/
DThreadSpec.cpp18 m_tid (LLDB_INVALID_THREAD_ID), in ThreadSpec()
26 m_tid(rhs.m_tid), in ThreadSpec()
36 m_tid = rhs.m_tid; in operator =()
63 if (m_tid == LLDB_INVALID_THREAD_ID) in TIDMatches()
122 …return (m_index != UINT32_MAX || m_tid != LLDB_INVALID_THREAD_ID || !m_name.empty() || !m_queue_na… in HasSpecification()
DExecutionContext.cpp527 m_tid(LLDB_INVALID_THREAD_ID), in ExecutionContextRef()
536 m_tid(LLDB_INVALID_THREAD_ID), in ExecutionContextRef()
547 m_tid(LLDB_INVALID_THREAD_ID), in ExecutionContextRef()
558 m_tid(LLDB_INVALID_THREAD_ID), in ExecutionContextRef()
571 m_tid (rhs.m_tid), in ExecutionContextRef()
584 m_tid = rhs.m_tid; in operator =()
598 m_tid = thread_sp->GetID(); in operator =()
600 m_tid = LLDB_INVALID_THREAD_ID; in operator =()
649 m_tid = thread_sp->GetID(); in SetThreadSP()
781 if (m_tid != LLDB_INVALID_THREAD_ID) in GetThreadSP()
[all …]
/external/lldb/include/lldb/Target/
DThreadSpec.h51 m_tid = tid; in SetTID()
75 return m_tid; in GetTID()
87 if (m_tid == LLDB_INVALID_THREAD_ID || thread_id == LLDB_INVALID_THREAD_ID) in TIDMatches()
90 return thread_id == m_tid; in TIDMatches()
148 lldb::tid_t m_tid; variable
DExecutionContext.h312 return m_tid != LLDB_INVALID_THREAD_ID; in HasThreadRef()
331 m_tid = LLDB_INVALID_THREAD_ID; in ClearThread()
347 …lldb::tid_t m_tid; ///< The thread ID that this object refers to in case the … variable
/external/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.cpp282 : m_tid(tid), m_offset(offset), m_size(size), in ReadRegOperation()
289 lldb::tid_t m_tid; member in ReadRegOperation
302 if ((rc = PTRACE(PT_GETREGS, m_tid, (caddr_t)&regs, 0)) < 0) { in Execute()
321 : m_tid(tid), m_offset(offset), in WriteRegOperation()
328 lldb::tid_t m_tid; member in WriteRegOperation
339 if (PTRACE(PT_GETREGS, m_tid, (caddr_t)&regs, 0) < 0) { in Execute()
344 if (PTRACE(PT_SETREGS, m_tid, (caddr_t)&regs, 0) < 0) in Execute()
357 : m_tid(tid), m_buf(buf), m_result(result) in ReadGPROperation()
363 lldb::tid_t m_tid; member in ReadGPROperation
374 rc = PTRACE(PT_GETREGS, m_tid, (caddr_t)m_buf, 0); in Execute()
[all …]
/external/lldb/source/Plugins/Process/Linux/
DProcessMonitor.cpp460 : m_tid(tid), m_offset(offset), m_reg_name(reg_name), in ReadRegOperation()
467 lldb::tid_t m_tid; member in ReadRegOperation
481 lldb::addr_t data = PTRACE(PTRACE_PEEKUSER, m_tid, (void*)m_offset, NULL, 0); in Execute()
502 : m_tid(tid), m_offset(offset), m_reg_name(reg_name), in WriteRegOperation()
509 lldb::tid_t m_tid; member in WriteRegOperation
530 if (PTRACE(PTRACE_POKEUSER, m_tid, (void*)m_offset, buf, 0)) in Execute()
543 : m_tid(tid), m_buf(buf), m_buf_size(buf_size), m_result(result) in ReadGPROperation()
549 lldb::tid_t m_tid; member in ReadGPROperation
558 if (PTRACE(PTRACE_GETREGS, m_tid, NULL, m_buf, m_buf_size) < 0) in Execute()
571 : m_tid(tid), m_buf(buf), m_buf_size(buf_size), m_result(result) in ReadFPROperation()
[all …]
/external/lldb/source/Plugins/Process/POSIX/
DProcessMessage.h72 : m_tid(LLDB_INVALID_PROCESS_ID), in ProcessMessage()
80 lldb::tid_t GetTID() const { return m_tid; } in GetTID()
184 : m_tid(tid), in m_tid() function
192 : m_tid(tid), in ProcessMessage()
199 lldb::tid_t m_tid; variable
/external/valgrind/drd/tests/
Dannotate_smart_pointer.cpp139 Thread() : m_tid() { } in Thread()
146 pthread_create(&m_tid, &attr, pf, arg); in Create()
150 { pthread_join(m_tid, NULL); } in Join()
152 pthread_t m_tid; member in Thread
/external/lldb/tools/debugserver/source/
DChangeLog715 added m_tid, m_enabled, m_hw_preferred, m_is_watchpoint, m_watch_read,