Lines Matching refs:NativeThreadLinux
1 //===-- NativeThreadLinux.cpp ---------------------------------------------===//
9 #include "NativeThreadLinux.h"
92 NativeThreadLinux::NativeThreadLinux(NativeProcessLinux &process,
101 std::string NativeThreadLinux::GetName() {
110 lldb::StateType NativeThreadLinux::GetState() { return m_state; }
112 bool NativeThreadLinux::GetStopReason(ThreadStopInfo &stop_info,
142 "NativeThreadLinux::%s tid %" PRIu64
151 Status NativeThreadLinux::SetWatchpoint(lldb::addr_t addr, size_t size,
168 Status NativeThreadLinux::RemoveWatchpoint(lldb::addr_t addr) {
179 Status NativeThreadLinux::SetHardwareBreakpoint(lldb::addr_t addr,
197 Status NativeThreadLinux::RemoveHardwareBreakpoint(lldb::addr_t addr) {
211 Status NativeThreadLinux::Resume(uint32_t signo) {
253 Status NativeThreadLinux::SingleStep(uint32_t signo) {
279 void NativeThreadLinux::SetStoppedBySignal(uint32_t signo,
282 LLDB_LOGF(log, "NativeThreadLinux::%s called with signal 0x%02" PRIx32,
309 void NativeThreadLinux::AnnotateSyncTagCheckFault(lldb::addr_t fault_addr) {
361 bool NativeThreadLinux::IsStopped(int *signo) {
375 void NativeThreadLinux::SetStopped() {
388 void NativeThreadLinux::SetStoppedByExec() {
390 LLDB_LOGF(log, "NativeThreadLinux::%s()", __FUNCTION__);
398 void NativeThreadLinux::SetStoppedByBreakpoint() {
406 void NativeThreadLinux::SetStoppedByWatchpoint(uint32_t wp_index) {
434 bool NativeThreadLinux::IsStoppedAtBreakpoint() {
439 bool NativeThreadLinux::IsStoppedAtWatchpoint() {
444 void NativeThreadLinux::SetStoppedByTrace() {
451 void NativeThreadLinux::SetStoppedByFork(bool is_vfork, lldb::pid_t child_pid) {
464 void NativeThreadLinux::SetStoppedByVForkDone() {
471 void NativeThreadLinux::SetStoppedWithNoReason() {
478 void NativeThreadLinux::SetStoppedByProcessorTrace(
487 void NativeThreadLinux::SetExited() {
495 Status NativeThreadLinux::RequestStop() {
504 "NativeThreadLinux::%s requesting thread stop(pid: %" PRIu64
513 "NativeThreadLinux::%s tgkill(%" PRIu64 ", %" PRIu64
521 void NativeThreadLinux::MaybeLogStateChange(lldb::StateType new_state) {
536 NativeProcessLinux &NativeThreadLinux::GetProcess() {
540 const NativeProcessLinux &NativeThreadLinux::GetProcess() const {
545 NativeThreadLinux::GetSiginfo() const {