Home | History | Annotate | Download | only in glob

Lines Matching defs:new

451 	      /* This call is to set a new vector, so clear out the
463 /* Construct the new glob expression. */
1035 char *new = realloc (pglob->gl_pathv[i], len);
1036 if (new == NULL)
1041 strcpy (&new[len - 2], "/");
1042 pglob->gl_pathv[i] = new;
1139 char *new = (char *) malloc (dirlen + 1 + eltlen);
1140 if (new == NULL)
1149 char *endp = (char *) mempcpy (new, dirname, dirlen);
1154 memcpy (new, dirname, dirlen);
1155 new[dirlen] = DIRSEP_CHAR;
1156 memcpy (&new[dirlen + 1], array[i], eltlen);
1159 array[i] = new;
1336 struct globlink *new = (struct globlink *)
1339 new->name = (char *) malloc (len + 1);
1340 if (new->name == NULL)
1343 *((char *) mempcpy ((__ptr_t) new->name, name, len))
1346 memcpy ((__ptr_t) new->name, name, len);
1347 new->name[len] = '\0';
1349 new->next = names;
1350 names = new;