Lines Matching refs:chain_entry
7788 sd_chain_struct *chain_entry;
7790 chain_entry = xmalloc (sizeof (sd_chain_struct));
7791 if (!chain_entry)
7795 SPACE_NAME (chain_entry) = xmalloc (strlen (name) + 1);
7796 strcpy (SPACE_NAME (chain_entry), name);
7797 SPACE_DEFINED (chain_entry) = defined;
7798 SPACE_USER_DEFINED (chain_entry) = user_defined;
7799 SPACE_SPNUM (chain_entry) = spnum;
7801 chain_entry->sd_seg = seg;
7802 chain_entry->sd_last_subseg = -1;
7803 chain_entry->sd_subspaces = NULL;
7804 chain_entry->sd_next = NULL;
7808 space_dict_last = chain_entry;
7811 space_dict_root = chain_entry;
7830 chain_entry->sd_next = chain_pointer;
7831 prev_chain_pointer->sd_next = chain_entry;
7835 space_dict_root = chain_entry;
7836 chain_entry->sd_next = chain_pointer;
7839 if (chain_entry->sd_next == NULL)
7840 space_dict_last = chain_entry;
7851 return chain_entry;
7876 ssd_chain_struct *chain_entry;
7878 chain_entry = xmalloc (sizeof (ssd_chain_struct));
7879 if (!chain_entry)
7882 SUBSPACE_NAME (chain_entry) = xmalloc (strlen (name) + 1);
7883 strcpy (SUBSPACE_NAME (chain_entry), name);
7887 SUBSPACE_DEFINED (chain_entry) = 0;
7889 chain_entry->ssd_subseg = 0;
7890 chain_entry->ssd_seg = seg;
7891 chain_entry->ssd_next = NULL;
7895 space->sd_subspaces = chain_entry;
7914 chain_entry->ssd_next = chain_pointer;
7915 prev_chain_pointer->ssd_next = chain_entry;
7919 space->sd_subspaces = chain_entry;
7920 chain_entry->ssd_next = chain_pointer;
7929 return chain_entry;
7951 ssd_chain_struct *chain_entry;
7953 chain_entry = is_defined_subspace (name);
7960 return chain_entry;