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

1 2

  /src/external/gpl3/gdb.old/dist/gdb/
inferior.c 21 #include "inferior.h"
42 intrusive_list<inferior> inferior_list;
45 /* See inferior.h. */
48 /* The Current Inferior. This is a strong reference. I.e., whenever
49 an inferior is the current inferior, its refcount is
53 struct inferior*
60 set_current_inferior (struct inferior *inf)
62 /* There's always an inferior. */
70 inferior::~inferior (
84 inferior::inferior (int pid_) function in class:inferior
    [all...]
break-cond-parse.c 92 /* These are the token types for the 'if', 'thread', 'inferior', and
97 INFERIOR,
127 case type::INFERIOR:
128 return string_printf ("{ INFERIOR: \"%s\" }",
281 else if (startswith ("inferior", t))
282 curr_results->emplace_back (token::type::INFERIOR, v);
389 else if (t.get_type () == token::type::INFERIOR
394 parsed. If this is true then this looks like a valid inferior
475 int thread = -1, inferior = -1, task = -1; local
491 if (task != -1 || inferior != -1
    [all...]
inferior.h 1 /* Variables that describe the inferior process running under GDB:
36 struct inferior;
60 #include "gdbsupport/common-inferior.h"
86 /* If we are restoring the inferior state due to an exception,
90 warning (_("Failed to restore inferior state: %s"), e.what ());
127 /* Collected pid, tid, etc. of the debugged inferior. When there's
128 no inferior, inferior_ptid.pid () will be 0. */
210 /* Initial inferior setup. Determines the exec file is not yet known,
254 inferior process. */
258 /* Print notices on inferior events (attach, detach, etc.), set wit
393 class inferior : public refcounted_object, class in inherits:refcounted_object,intrusive_list_node
    [all...]
solib.c 33 #include "inferior.h"
105 * Look in inferior's $PATH.
107 * Look in inferior's $LD_LIBRARY_PATH.
298 /* If not found, next search the inferior's $PATH environment variable. */
305 inferior's $LD_LIBRARY_PATH environment variable. */
731 sysroot, before having any inferior. */
734 struct inferior *inf = current_inferior ();
755 /* GDB and the inferior's dynamic linker each maintain their own
761 knows about it already, and it's still loaded in the inferior.
765 the inferior has unloaded it. We should remove the share
779 owning_intrusive_list<solib> inferior = ops->current_sos (); local
    [all...]
breakpoint.h 47 struct inferior;
145 otherwise uncaught exceptions thrown during an inferior call. */
149 code in the inferior to run when significant events occur in the
159 inferior to be executed when certain thread-related events occur
169 magic location in the inferior whenever there is an interesting
230 call into the inferior is "in flight",
489 after we process certain number of inferior events since
708 (e.g., an executable or DSO was loaded, or the inferior just
739 which the inferior stopped, and WS is the target_waitstatus
840 For thread or inferior specific breakpoints, the breakpoints ar
891 int inferior = -1; member in struct:breakpoint
    [all...]
infcmd.c 1 /* Memory-access and commands for "inferior" process, for GDB.
25 #include "inferior.h"
69 /* Pid of our debugged inferior, or 0 if no inferior now.
80 /* Nonzero if stopped due to a random (unexpected) signal in inferior
93 /* Store the new value passed to 'set inferior-tty'. */
101 /* Get the current 'inferior-tty' value. */
109 /* Implement 'show inferior-tty' command. */
147 inferior. However, these should always be the same. */
153 /* See gdbsupport/common-inferior.h. *
2496 struct inferior *inferior; local
2537 struct inferior *inferior; local
2613 struct inferior *inferior = current_inferior (); local
2763 struct inferior *inferior = current_inferior (); local
    [all...]
gnu-nat.c 60 #include "inferior.h"
72 #include "nat/fork-inferior.h"
152 /* Further Hurd-specific state of an inferior. */
155 /* Fields describing the current inferior. */
179 /* True if we think at least one thread in the inferior could currently be
188 /* True if the inferior has no message port. */
191 /* True if the inferior is traced. */
194 /* True if we shouldn't try waiting for the inferior, usually because we
198 /* When starting a new inferior, we don't try to validate threads until all
225 /* True if exceptions from the inferior process should be trapped. Thi
2112 inferior *inferior = current_inferior (); local
2172 struct inferior *inferior; local
    [all...]
target.c 27 #include "inferior.h"
178 target_has_execution (inferior *inf)
893 /* If the commit_resume_state of the to-be-killed-inferior's process stratum
894 is true, and this inferior is the last live inferior with resumed threads
929 target_terminal::inferior (void) function in class:target_terminal
938 /* Since we always run the inferior in the main console (unless "set
939 inferior-tty" is in effect), when some UI other than the main one
940 calls target_terminal::inferior, then we leave the main UI's
945 /* If GDB is resuming the inferior in the foreground, instal
    [all...]
infrun.c 1 /* Target-struct-independent code to start (run) and stop an inferior
29 #include "inferior.h"
102 static void wait_for_inferior (inferior *inf);
105 inferior *inf = nullptr);
161 inferior stopped in a different thread than it had been running in.
197 gdb_printf (file, _("Inferior debugging is %s.\n"), value);
241 error (_("Cannot change this setting while the inferior is running."));
252 _("Controlling the inferior in non-stop mode is %s.\n"),
270 error (_("Cannot change this setting while the inferior is running."));
435 /* Handle changes to the inferior list based on the type of fork
3145 struct inferior *inferior; local
    [all...]
breakpoint.c 36 #include "inferior.h"
178 /* Don't insert any breakpoint locations into the inferior, only
192 the inferior. */
393 /* The inferior should have been set by the parent constructor. */
394 gdb_assert (inferior == -1);
461 is a problem with any of the arguments, but using an inferior
477 call into the inferior. The value is simply a string that is
484 call into the inferior; if a nonempty string, it will be passed to
503 /* Flag indicating that a command has proceeded the inferior past the
512 represent values of 'disp' field returned when inferior stops a
10302 int inferior = -1; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
inferior.c 21 #include "inferior.h"
22 #include "gdbsupport/common-inferior.h"
43 intrusive_list<inferior> inferior_list;
46 /* See inferior.h. */
49 /* The Current Inferior. This is a strong reference. I.e., whenever
50 an inferior is the current inferior, its refcount is
54 struct inferior*
61 set_current_inferior (struct inferior *inf)
63 /* There's always an inferior. *
85 inferior::inferior (int pid_) function in class:inferior
    [all...]
break-cond-parse.c 91 /* These are the token types for the 'if', 'thread', 'inferior', and
96 INFERIOR,
126 case type::INFERIOR:
127 return string_printf ("{ INFERIOR: \"%s\" }",
280 else if (startswith ("inferior", t))
281 curr_results->emplace_back (token::type::INFERIOR, v);
388 else if (t.get_type () == token::type::INFERIOR
393 parsed. If this is true then this looks like a valid inferior
474 int thread = -1, inferior = -1, task = -1; local
490 if (task != -1 || inferior != -1
    [all...]
inferior.h 1 /* Variables that describe the inferior process running under GDB:
36 struct inferior;
84 /* If we are restoring the inferior state due to an exception,
88 warning (_("Failed to restore inferior state: %s"), e.what ());
125 /* Collected pid, tid, etc. of the debugged inferior. When there's
126 no inferior, inferior_ptid.pid () will be 0. */
208 /* Initial inferior setup. Determines the exec file is not yet known,
214 /* Common actions to take after creating any sort of inferior, by any
219 provider using the current inferior's architecture. */
259 inferior process. *
398 class inferior : public refcounted_object, class in inherits:refcounted_object,intrusive_list_node
    [all...]
solib.c 33 #include "inferior.h"
104 * Look in inferior's $PATH.
106 * Look in inferior's $LD_LIBRARY_PATH.
297 /* If not found, next search the inferior's $PATH environment variable. */
304 inferior's $LD_LIBRARY_PATH environment variable. */
750 sysroot, before having any inferior. */
753 struct inferior *inf = current_inferior ();
774 /* GDB and the inferior's dynamic linker each maintain their own
780 knows about it already, and it's still loaded in the inferior.
784 the inferior has unloaded it. We should remove the share
798 owning_intrusive_list<solib> inferior = ops->current_sos (); local
    [all...]
breakpoint.h 47 struct inferior;
145 otherwise uncaught exceptions thrown during an inferior call. */
149 code in the inferior to run when significant events occur in the
159 inferior to be executed when certain thread-related events occur
169 magic location in the inferior whenever there is an interesting
230 call into the inferior is "in flight",
491 after we process certain number of inferior events since
710 (e.g., an executable or DSO was loaded, or the inferior just
741 which the inferior stopped, and WS is the target_waitstatus
842 For thread or inferior specific breakpoints, the breakpoints ar
893 int inferior = -1; member in struct:breakpoint
    [all...]
infcmd.c 1 /* Memory-access and commands for "inferior" process, for GDB.
25 #include "inferior.h"
28 #include "gdbsupport/common-inferior.h"
70 /* Pid of our debugged inferior, or 0 if no inferior now.
81 /* Nonzero if stopped due to a random (unexpected) signal in inferior
94 /* Store the new value passed to 'set inferior-tty'. */
102 /* Get the current 'inferior-tty' value. */
110 /* Implement 'show inferior-tty' command. */
148 inferior. However, these should always be the same. *
2494 struct inferior *inferior; local
2535 struct inferior *inferior; local
2611 struct inferior *inferior = current_inferior (); local
2761 struct inferior *inferior = current_inferior (); local
    [all...]
gnu-nat.c 60 #include "inferior.h"
72 #include "nat/fork-inferior.h"
152 /* Further Hurd-specific state of an inferior. */
155 /* Fields describing the current inferior. */
179 /* True if we think at least one thread in the inferior could currently be
188 /* True if the inferior has no message port. */
191 /* True if the inferior is traced. */
194 /* True if we shouldn't try waiting for the inferior, usually because we
198 /* When starting a new inferior, we don't try to validate threads until all
225 /* True if exceptions from the inferior process should be trapped. Thi
2112 inferior *inferior = current_inferior (); local
2172 struct inferior *inferior; local
    [all...]
target.c 27 #include "inferior.h"
178 target_has_execution (inferior *inf)
893 /* If the commit_resume_state of the to-be-killed-inferior's process stratum
894 is true, and this inferior is the last live inferior with resumed threads
929 target_terminal::inferior (void) function in class:target_terminal
938 /* Since we always run the inferior in the main console (unless "set
939 inferior-tty" is in effect), when some UI other than the main one
940 calls target_terminal::inferior, then we leave the main UI's
945 /* If GDB is resuming the inferior in the foreground, instal
    [all...]
infrun.c 1 /* Target-struct-independent code to start (run) and stop an inferior
29 #include "inferior.h"
100 static void wait_for_inferior (inferior *inf);
103 inferior *inf = nullptr);
159 inferior stopped in a different thread than it had been running in.
195 gdb_printf (file, _("Inferior debugging is %s.\n"), value);
239 error (_("Cannot change this setting while the inferior is running."));
250 _("Controlling the inferior in non-stop mode is %s.\n"),
268 error (_("Cannot change this setting while the inferior is running."));
433 /* Handle changes to the inferior list based on the type of fork
3139 struct inferior *inferior; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/
scm-frame.c 25 #include "inferior.h"
44 /* Frames are tracked by inferior.
46 good a place as any. Frames in one inferior shouldn't be considered
47 equal to frames in a different inferior. The frame becomes invalid if
48 this becomes NULL (the inferior has been deleted from gdb).
51 the inferior. Intuitively the answer is "No", but currently a frame
55 struct inferior *inferior; member in struct:frame_smob
76 /* This is called when an inferior is about to be freed.
91 f_smob->inferior = NULL
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbserver/
target.cc 295 target_terminal::inferior () function in class:target_terminal
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-inferior.c 23 #include "inferior.h"
42 /* The inferior we represent. */
43 struct inferior *inferior; member in struct:inferior_object
45 /* thread_object instances under this inferior. This owns a
57 /* Deleter to clean up when an inferior is removed. */
68 inf_obj->inferior = NULL;
74 static const registry<inferior>::key<inferior_object, infpy_deleter>
77 /* Require that INFERIOR be a valid inferior ID. *
521 gdbpy_ref<inferior_object> inferior = inferior_to_inferior_object (inf); local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/guile/
scm-frame.c 25 #include "inferior.h"
44 /* Frames are tracked by inferior.
46 good a place as any. Frames in one inferior shouldn't be considered
47 equal to frames in a different inferior. The frame becomes invalid if
48 this becomes NULL (the inferior has been deleted from gdb).
51 the inferior. Intuitively the answer is "No", but currently a frame
55 struct inferior *inferior; member in struct:frame_smob
76 /* This is called when an inferior is about to be freed.
91 f_smob->inferior = NULL
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/
py-inferior.c 23 #include "inferior.h"
42 /* The inferior we represent. */
43 struct inferior *inferior; member in struct:inferior_object
45 /* thread_object instances under this inferior. This owns a
57 /* Deleter to clean up when an inferior is removed. */
68 inf_obj->inferior = NULL;
74 static const registry<inferior>::key<inferior_object, infpy_deleter>
77 /* Require that INFERIOR be a valid inferior ID. *
521 gdbpy_ref<inferior_object> inferior = inferior_to_inferior_object (inf); local
    [all...]
  /src/external/gpl3/gdb/dist/gdbserver/
target.cc 295 target_terminal::inferior () function in class:target_terminal

Completed in 38 milliseconds

1 2