HomeSort by: relevance | last modified time | path
    Searched defs:ptid (Results 1 - 25 of 95) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb/dist/gdb/
amd64-bsd-nat.c 40 gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr,
47 return ptrace (request, ptid.pid (), addr, ptid.lwp ());
49 pid_t pid = get_ptrace_pid (ptid);
61 ptid_t ptid = regcache->ptid ();
67 if (gdb_ptrace (PT_GETREGS, ptid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
79 if (gdb_ptrace (PT_GETFPREGS, ptid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
93 ptid_t ptid = regcache->ptid ();
60 ptid_t ptid = regcache->ptid (); local
92 ptid_t ptid = regcache->ptid (); local
    [all...]
fbsd-nat.h 63 bool thread_alive (ptid_t ptid) override;
211 present for a given PTID. If the register set is present, the
215 size_t have_regset (ptid_t ptid, int note);
247 ptid (_ptid), status (_status) {}
249 ptid_t ptid; member in struct:fbsd_nat_target::pending_event
255 void add_pending_event (const ptid_t &ptid, const target_waitstatus &status);
284 /* Fetch the signal information for PTID and store it in *SIGINFO.
286 bool fbsd_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo);
fork-child.c 131 ptid_t ptid = startup_inferior (proc_target, pid, num_traps, NULL, NULL); local
134 set_executing (proc_target, ptid, false);
136 return ptid;
obsd-nat.c 37 obsd_nat_target::pid_to_str (ptid_t ptid)
39 if (ptid.lwp () != 0)
40 return string_printf ("thread %ld of process %d", ptid.lwp (), ptid.pid ());
42 return normal_pid_to_str (ptid);
58 ptid_t ptid = ptid_t (pid, pts.pts_tid, 0); local
60 if (!in_thread_list (this, ptid))
63 thread_change_ptid (this, inferior_ptid, ptid);
65 add_thread (this, ptid);
89 obsd_nat_target::wait (ptid_t ptid, struct target_waitstatus *ourstatus
    [all...]
aarch64-netbsd-nat.c 64 ptid_t ptid = regcache->ptid (); local
65 pid_t pid = ptid.pid ();
66 int lwp = ptid.lwp ();
98 ptid_t ptid = regcache->ptid (); local
99 pid_t pid = ptid.pid ();
100 int lwp = ptid.lwp ();
i386-bsd-nat.c 38 gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr,
45 return ptrace (request, ptid.pid (), addr, ptid.lwp ());
47 pid_t pid = get_ptrace_pid (ptid);
147 ptid_t ptid = regcache->ptid ();
153 if (gdb_ptrace (PT_GETREGS, ptid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
167 && gdb_ptrace(PT_GETXMMREGS, ptid,
176 if (gdb_ptrace (PT_GETFPREGS, ptid,
191 ptid_t ptid = regcache->ptid ()
145 ptid_t ptid = regcache->ptid (); local
189 ptid_t ptid = regcache->ptid (); local
    [all...]
x86-linux-nat.c 74 parent_pid = parent->ptid.pid ();
89 x86_linux_nat_target::post_startup_inferior (ptid_t ptid)
92 linux_nat_target::post_startup_inferior (ptid);
121 ptid_t ptid = tp->ptid;
124 tinfo = linux_enable_btrace (ptid, conf);
129 target_pid_to_str (ptid).c_str (), exception.what ());
119 ptid_t ptid = tp->ptid; local
ada-lang.h 118 /* The PTID of the thread that this task runs on. This ptid is computed
120 ptid_t ptid; member in struct:ada_task_info
375 extern struct ada_task_info *ada_get_task_info_from_ptid (ptid_t ptid);
i386-gnu-nat.c 112 ptid_t ptid = regcache->ptid ();
117 thread = inf_tid_to_thread (gnu_current_inf, ptid.lwp ());
120 target_pid_to_str (ptid).c_str ());
204 ptid_t ptid = regcache->ptid ();
209 thread = inf_tid_to_thread (gnu_current_inf, ptid.lwp ());
212 target_pid_to_str (ptid).c_str ());
386 /* Get debug register REGNUM value from only the one LWP of PTID. */
389 i386_gnu_dr_get_reg (ptid_t ptid, int regnum
111 ptid_t ptid = regcache->ptid (); local
202 ptid_t ptid = regcache->ptid (); local
    [all...]
inf-ptrace.c 41 gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr,
50 data = ptid.lwp ();
51 return ptrace (request, ptid.pid (), addr, data);
53 pid_t pid = get_ptrace_pid (ptid);
107 ptid_t ptid (pid);
111 thread_info *thr = add_thread_silent (this, ptid);
120 post_startup_inferior (ptid);
180 target, it should decorate the ptid later with more info. */
186 set_executing (this, thr->ptid, true);
249 get_ptrace_pid (ptid_t ptid)
434 ptid_t ptid = inferior_ptid; local
    [all...]
linux-nat.h 63 bool thread_alive (ptid_t ptid) override;
98 int core_of_thread (ptid_t ptid) override;
140 virtual void low_resume (ptid_t ptid, int step, enum gdb_signal sig)
141 { inf_ptrace_target::resume (ptid, step, sig); }
209 lwp_info (ptid_t ptid)
210 : ptid (ptid)
219 ptid_t ptid = null_ptid; member in struct:lwp_info
340 /* Store the saved siginfo associated with PTID in *SIGINFO.
343 bool linux_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo)
    [all...]
regcache.h 37 ptid_t ptid);
43 ptid_t ptid, gdbarch *arch);
448 /* Return REGCACHE's ptid. */
450 ptid_t ptid () const function in class:regcache
457 void set_ptid (const ptid_t ptid)
459 this->m_ptid = ptid;
503 ptid_t ptid, gdbarch *gdbarch);
529 ptid_t ptid);
sparc-nat.c 81 gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr)
86 return ptrace (request, ptid.pid (), addr, ptid.lwp ());
88 pid_t pid = get_ptrace_pid (ptid);
153 ptid_t ptid = regcache->ptid (); local
165 if (gdb_ptrace (PTRACE_GETREGS, ptid, (PTRACE_TYPE_ARG3) &regs) == -1)
171 = make_scoped_restore (&inferior_ptid, ptid);
182 if (gdb_ptrace (PTRACE_GETFPREGS, ptid, (PTRACE_TYPE_ARG3) &fpregs) == -1)
194 ptid_t ptid = regcache->ptid () local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/nat/
loongarch-linux.c 48 ptid_t ptid = ptid_of_lwp (lwp); local
49 int tid = ptid.lwp ();
51 = loongarch_get_debug_reg_state (ptid.pid ());
77 ptid_t ptid = ptid_of_lwp (lwp); local
79 = loongarch_get_debug_reg_state (ptid.pid ());
aarch64-linux.c 46 ptid_t ptid = ptid_of_lwp (lwp); local
47 int tid = ptid.lwp ();
49 = aarch64_get_debug_reg_state (ptid.pid ());
75 ptid_t ptid = ptid_of_lwp (lwp); local
77 = aarch64_get_debug_reg_state (ptid.pid ());
x86-linux-dregs.c 37 /* Get debug register REGNUM value from the LWP specified by PTID. */
40 x86_linux_dr_get (ptid_t ptid, int regnum)
45 gdb_assert (ptid.lwp_p ());
46 tid = ptid.lwp ();
56 /* Set debug register REGNUM to VALUE in the LWP specified by PTID. */
59 x86_linux_dr_set (ptid_t ptid, int regnum, unsigned long value)
63 gdb_assert (ptid.lwp_p ());
64 tid = ptid.lwp ();
142 ptid_t ptid = ptid_of_lwp (lwp); local
150 = x86_debug_reg_state (ptid.pid ())
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
amd64-bsd-nat.c 40 gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr,
47 return ptrace (request, ptid.pid (), addr, ptid.lwp ());
49 pid_t pid = get_ptrace_pid (ptid);
61 ptid_t ptid = regcache->ptid ();
67 if (gdb_ptrace (PT_GETREGS, ptid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
79 if (gdb_ptrace (PT_GETFPREGS, ptid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
93 ptid_t ptid = regcache->ptid ();
60 ptid_t ptid = regcache->ptid (); local
92 ptid_t ptid = regcache->ptid (); local
    [all...]
fbsd-nat.h 63 bool thread_alive (ptid_t ptid) override;
211 present for a given PTID. If the register set is present, the
215 size_t have_regset (ptid_t ptid, int note);
247 ptid (_ptid), status (_status) {}
249 ptid_t ptid; member in struct:fbsd_nat_target::pending_event
255 void add_pending_event (const ptid_t &ptid, const target_waitstatus &status);
284 /* Fetch the signal information for PTID and store it in *SIGINFO.
286 bool fbsd_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo);
fork-child.c 131 ptid_t ptid = startup_inferior (proc_target, pid, num_traps, NULL, NULL); local
134 set_executing (proc_target, ptid, false);
136 return ptid;
obsd-nat.c 36 obsd_nat_target::pid_to_str (ptid_t ptid)
38 if (ptid.lwp () != 0)
39 return string_printf ("thread %ld of process %d", ptid.lwp (), ptid.pid ());
41 return normal_pid_to_str (ptid);
57 ptid_t ptid = ptid_t (pid, pts.pts_tid, 0); local
59 if (!in_thread_list (this, ptid))
62 thread_change_ptid (this, inferior_ptid, ptid);
64 add_thread (this, ptid);
88 obsd_nat_target::wait (ptid_t ptid, struct target_waitstatus *ourstatus
    [all...]
aarch64-netbsd-nat.c 64 ptid_t ptid = regcache->ptid (); local
65 pid_t pid = ptid.pid ();
66 int lwp = ptid.lwp ();
98 ptid_t ptid = regcache->ptid (); local
99 pid_t pid = ptid.pid ();
100 int lwp = ptid.lwp ();
i386-bsd-nat.c 38 gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr,
45 return ptrace (request, ptid.pid (), addr, ptid.lwp ());
47 pid_t pid = get_ptrace_pid (ptid);
147 ptid_t ptid = regcache->ptid ();
153 if (gdb_ptrace (PT_GETREGS, ptid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
167 && gdb_ptrace(PT_GETXMMREGS, ptid,
176 if (gdb_ptrace (PT_GETFPREGS, ptid,
191 ptid_t ptid = regcache->ptid ()
145 ptid_t ptid = regcache->ptid (); local
189 ptid_t ptid = regcache->ptid (); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/nat/
aarch64-linux.c 46 ptid_t ptid = ptid_of_lwp (lwp); local
47 int tid = ptid.lwp ();
49 = aarch64_get_debug_reg_state (ptid.pid ());
75 ptid_t ptid = ptid_of_lwp (lwp); local
77 = aarch64_get_debug_reg_state (ptid.pid ());
x86-linux-dregs.c 37 /* Get debug register REGNUM value from the LWP specified by PTID. */
40 x86_linux_dr_get (ptid_t ptid, int regnum)
45 gdb_assert (ptid.lwp_p ());
46 tid = ptid.lwp ();
56 /* Set debug register REGNUM to VALUE in the LWP specified by PTID. */
59 x86_linux_dr_set (ptid_t ptid, int regnum, unsigned long value)
63 gdb_assert (ptid.lwp_p ());
64 tid = ptid.lwp ();
142 ptid_t ptid = ptid_of_lwp (lwp); local
150 = x86_debug_reg_state (ptid.pid ())
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
agent.cc 194 ptid_t ptid = ptid_t (pid, tid); local
208 target_continue_no_signal (ptid);
237 if (ptid != null_ptid)
239 /* Stop thread PTID. */
241 target_stop_and_wait (ptid);

Completed in 66 milliseconds

1 2 3 4