Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:new

453       /* The directory was not found.  Create a new entry for it.  */
815 register struct dirfile *new;
881 /* Make a new entry and put it in the table. */
883 new = (struct dirfile *) xmalloc (sizeof (struct dirfile));
884 new->name = xstrdup (filename);
885 new->length = strlen (filename);
886 new->impossible = 1;
887 hash_insert (&dir->contents->dirfiles, new);
1111 struct dirstream *new;
1124 new = (struct dirstream *) xmalloc (sizeof (struct dirstream));
1125 new->contents = dir->contents;
1126 new->dirfile_slot = (struct dirfile **) new->contents->dirfiles.ht_vec;
1128 return (__ptr_t) new;