HomeSort by: relevance | last modified time | path
    Searched refs:pspace (Results 1 - 25 of 190) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/gpl3/gdb/dist/gdb/
solib-darwin.h 27 extern solib_ops_up make_darwin_solib_ops (program_space *pspace);
solib-dsbt.h 27 solib_ops_up make_dsbt_solib_ops (program_space *pspace);
solib-frv.h 26 solib_ops_up make_frv_solib_ops (program_space *pspace);
solib-aix.h 27 solib_ops_up make_aix_solib_ops (program_space *pspace);
progspace-and-thread.h 35 /* Switches full context to program space PSPACE. Switches to the
36 first thread found bound to PSPACE, giving preference to the
38 void switch_to_program_space_and_thread (program_space *pspace);
progspace-and-thread.c 24 switch_to_program_space_and_thread (program_space *pspace)
26 inferior *inf = find_inferior_for_program_space (pspace);
36 /* Switching thread switches pspace implicitly. We're
solib-svr4-linux.h 45 extern solib_ops_up make_linux_ilp32_svr4_solib_ops (program_space *pspace);
49 extern solib_ops_up make_linux_lp64_svr4_solib_ops (program_space *pspace);
progspace.c 85 remove_program_space (program_space *pspace)
87 gdb_assert (pspace != NULL);
90 pspace);
122 locations for this pspace which we're tearing down. */
254 /* Sets PSPACE as the current program space. It is the caller's
259 set_current_program_space (struct program_space *pspace)
261 if (current_program_space == pspace)
264 gdb_assert (pspace != NULL);
266 current_program_space = pspace;
272 /* Returns true iff there's no inferior bound to PSPACE. *
    [all...]
auto-load.h 54 get_auto_load_pspace_data_for_loading (struct program_space *pspace);
59 extern void auto_load_info_scripts (program_space *pspace, const char *pattern,
solib-svr4-linux.c 25 make_linux_ilp32_svr4_solib_ops (program_space *pspace)
27 return std::make_unique<linux_ilp32_svr4_solib_ops> (pspace);
64 make_linux_lp64_svr4_solib_ops (program_space *pspace)
66 return std::make_unique<linux_lp64_svr4_solib_ops> (pspace);
solib-target.h 38 solib_ops_up make_target_solib_ops (program_space *pspace);
  /src/external/gpl3/gdb.old/dist/gdb/
progspace-and-thread.h 35 /* Switches full context to program space PSPACE. Switches to the
36 first thread found bound to PSPACE, giving preference to the
38 void switch_to_program_space_and_thread (program_space *pspace);
progspace-and-thread.c 24 switch_to_program_space_and_thread (program_space *pspace)
26 inferior *inf = find_inferior_for_program_space (pspace);
36 /* Switching thread switches pspace implicitly. We're
progspace.c 86 remove_program_space (program_space *pspace)
88 gdb_assert (pspace != NULL);
91 pspace);
123 locations for this pspace which we're tearing down. */
238 /* Sets PSPACE as the current program space. It is the caller's
243 set_current_program_space (struct program_space *pspace)
245 if (current_program_space == pspace)
248 gdb_assert (pspace != NULL);
250 current_program_space = pspace;
256 /* Returns true iff there's no inferior bound to PSPACE. *
    [all...]
auto-load.h 54 get_auto_load_pspace_data_for_loading (struct program_space *pspace);
59 extern void auto_load_info_scripts (program_space *pspace, const char *pattern,
solib.h 45 /* Called when we free all symtabs of PSPACE, to free the shared library
48 extern void clear_solib (program_space *pspace);
83 /* Discard symbols that were auto-loaded from shared libraries in PSPACE. */
85 extern void no_shared_libraries (program_space *pspace);
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-progspace.c 36 /* The corresponding pspace. */
37 struct program_space *pspace; member in struct:pspace_object
65 /* Clear the PSPACE pointer in a Pspace object and remove the reference. */
70 /* This is a fiction, but we're in a nasty spot: The pspace is in the
73 are not in sync: All inferiors that use PSPACE may no longer exist.
77 the target, which may involve accessing data in the pspace currently
83 object->pspace = NULL;
93 if (pspace_obj->pspace == nullptr) \
108 if (obj->pspace)
    [all...]
py-newobjfileevent.c 96 create_clear_objfiles_event_object (program_space *pspace)
103 gdbpy_ref<> py_progspace = pspace_to_pspace_object (pspace);
118 emit_clear_objfiles_event (program_space *pspace)
123 gdbpy_ref<> event = create_clear_objfiles_event_object (pspace);
  /src/external/gpl3/gdb/dist/gdb/python/
py-progspace.c 36 /* The corresponding pspace. */
37 struct program_space *pspace; member in struct:pspace_object
65 /* Clear the PSPACE pointer in a Pspace object and remove the reference. */
70 /* This is a fiction, but we're in a nasty spot: The pspace is in the
73 are not in sync: All inferiors that use PSPACE may no longer exist.
77 the target, which may involve accessing data in the pspace currently
83 object->pspace = NULL;
93 if (pspace_obj->pspace == nullptr) \
108 if (obj->pspace)
    [all...]
py-newobjfileevent.c 96 create_clear_objfiles_event_object (program_space *pspace)
103 gdbpy_ref<> py_progspace = pspace_to_pspace_object (pspace);
118 emit_clear_objfiles_event (program_space *pspace)
123 gdbpy_ref<> event = create_clear_objfiles_event_object (pspace);
  /src/external/gpl3/gdb.old/dist/gdb/guile/
scm-progspace.c 28 Internally we shorten that to "pspace". */
37 /* The corresponding pspace. */
38 struct program_space *pspace; member in struct:pspace_smob
51 /* The tag Guile knows the pspace smob by. */
59 p_smob->pspace = NULL;
86 if (p_smob->pspace != NULL)
88 struct objfile *objfile = p_smob->pspace->symfile_object_file;
116 p_smob->pspace = NULL;
141 /* Return a pointer to the progspace_smob that encapsulates PSPACE,
146 psscm_pspace_smob_from_pspace (struct program_space *pspace)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/guile/
scm-progspace.c 28 Internally we shorten that to "pspace". */
37 /* The corresponding pspace. */
38 struct program_space *pspace; member in struct:pspace_smob
51 /* The tag Guile knows the pspace smob by. */
59 p_smob->pspace = NULL;
86 if (p_smob->pspace != NULL)
88 struct objfile *objfile = p_smob->pspace->symfile_object_file;
116 p_smob->pspace = NULL;
141 /* Return a pointer to the progspace_smob that encapsulates PSPACE,
146 psscm_pspace_smob_from_pspace (struct program_space *pspace)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-missing-objfile.py 43 def check_args(pspace, buildid, filename):
46 assert type(pspace) == gdb.Progspace
67 def __call__(self, pspace, buildid, filename):
69 check_args(pspace, buildid, filename)
137 def __call__(self, pspace, buildid, filename):
139 check_args(pspace, buildid, filename)
150 def __call__(self, pspace, buildid, filename):
152 check_args(pspace, buildid, filename)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-missing-objfile.py 43 def check_args(pspace, buildid, filename):
46 assert type(pspace) == gdb.Progspace
67 def __call__(self, pspace, buildid, filename):
69 check_args(pspace, buildid, filename)
137 def __call__(self, pspace, buildid, filename):
139 check_args(pspace, buildid, filename)
150 def __call__(self, pspace, buildid, filename):
152 check_args(pspace, buildid, filename)
  /src/sys/arch/sparc64/dev/
centralvar.h 47 u_int32_t pspace; /* Parent space */ member in struct:central_range

Completed in 40 milliseconds

1 2 3 4 5 6 7 8