Lines Matching defs:so_list

73 struct so_list
77 struct so_list *next;
86 static struct so_list *so_list_head;
219 pa64_solib_add_solib_objfile (struct so_list *so, char *name, int from_tty,
303 pa64_solib_load_symbols (struct so_list *so, char *name, int from_tty,
579 struct so_list *temp;
722 struct so_list *so_list = so_list_head;
725 while (so_list)
727 if (so_list->pa64_solib_desc.text_base <= addr
728 && ((so_list->pa64_solib_desc.text_base
729 + so_list->pa64_solib_desc.text_size)
732 got_value = so_list->pa64_solib_desc.linkage_ptr;
735 so_list = so_list->next;
748 struct so_list *so_list = so_list_head;
751 while (so_list)
753 if (so_list->pa64_solib_desc.text_base <= addr
754 && ((so_list->pa64_solib_desc.text_base
755 + so_list->pa64_solib_desc.text_size)
758 retval = so_list->pa64_solib_desc_addr;
761 so_list = so_list->next;
771 struct so_list *so_list = so_list_head;
779 if (so_list == NULL)
789 while (so_list)
793 printf_unfiltered ("%s", so_list->name);
794 if (so_list->objfile == NULL)
796 if (so_list->loaded == 0)
799 hex_string_custom (so_list->pa64_solib_desc.linkage_ptr, 16));
802 hex_string_custom (so_list->pa64_solib_desc.text_base, 16));
804 hex_string_custom ((so_list->pa64_solib_desc.text_base
805 + so_list->pa64_solib_desc.text_size), 16));
807 hex_string_custom (so_list->pa64_solib_desc.data_base, 16));
809 hex_string_custom ((so_list->pa64_solib_desc.data_base
810 + so_list->pa64_solib_desc.data_size), 16));
811 so_list = so_list->next;
830 struct so_list *so = so_list_head;
854 struct so_list *sl = so_list_head;
863 struct so_list *next_sl = sl->next;
926 so_lib_thread_start_addr (struct so_list *so)
1109 struct so_list *new_so, *so_list_tail;
1129 new_so = (struct so_list *) xmalloc (sizeof (struct so_list));
1130 memset ((char *)new_so, 0, sizeof (struct so_list));