Lines Matching refs:rego

3847   struct gdbarch_swap_registration **rego;  in deprecated_register_gdbarch_swap()  local
3848 for (rego = &gdbarch_swap_registry.registrations; in deprecated_register_gdbarch_swap()
3849 (*rego) != NULL; in deprecated_register_gdbarch_swap()
3850 rego = &(*rego)->next); in deprecated_register_gdbarch_swap()
3851 (*rego) = XMALLOC (struct gdbarch_swap_registration); in deprecated_register_gdbarch_swap()
3852 (*rego)->next = NULL; in deprecated_register_gdbarch_swap()
3853 (*rego)->init = init; in deprecated_register_gdbarch_swap()
3854 (*rego)->data = data; in deprecated_register_gdbarch_swap()
3855 (*rego)->sizeof_data = sizeof_data; in deprecated_register_gdbarch_swap()
3861 struct gdbarch_swap_registration *rego; in current_gdbarch_swap_init_hack() local
3863 for (rego = gdbarch_swap_registry.registrations; in current_gdbarch_swap_init_hack()
3864 rego != NULL; in current_gdbarch_swap_init_hack()
3865 rego = rego->next) in current_gdbarch_swap_init_hack()
3867 if (rego->data != NULL) in current_gdbarch_swap_init_hack()
3871 (*curr)->source = rego; in current_gdbarch_swap_init_hack()
3873 rego->sizeof_data); in current_gdbarch_swap_init_hack()
3877 if (rego->init != NULL) in current_gdbarch_swap_init_hack()
3878 rego->init (); in current_gdbarch_swap_init_hack()
3943 struct gdbarch_registration *rego; in gdbarch_printable_names() local
3944 for (rego = gdbarch_registry; in gdbarch_printable_names()
3945 rego != NULL; in gdbarch_printable_names()
3946 rego = rego->next) in gdbarch_printable_names()
3949 ap = bfd_lookup_arch (rego->bfd_architecture, 0); in gdbarch_printable_names()
4041 struct gdbarch_registration *rego; in find_arch_by_info() local
4080 for (rego = gdbarch_registry; in find_arch_by_info()
4081 rego != NULL; in find_arch_by_info()
4082 rego = rego->next) in find_arch_by_info()
4083 if (rego->bfd_architecture == info.bfd_arch_info->arch) in find_arch_by_info()
4085 if (rego == NULL) in find_arch_by_info()
4094 new_gdbarch = rego->init (info, rego->arches); in find_arch_by_info()
4119 for (list = &rego->arches; in find_arch_by_info()
4128 this->next = rego->arches; in find_arch_by_info()
4129 rego->arches = this; in find_arch_by_info()
4145 this->next = rego->arches; in find_arch_by_info()
4147 rego->arches = this; in find_arch_by_info()
4152 new_gdbarch->dump_tdep = rego->dump_tdep; in find_arch_by_info()