Lines Matching defs:new
669 /* If the input is a NULL list a new one is created with the new
675 /* Allocate one extra space for the new service and one for
850 char **new;
863 new = talloc_array(mem_ctx, char *, new_count + 1);
864 if (new == NULL) {
868 new [new_count] = NULL;
872 new[c] = talloc_strdup(new, l1[c]);
873 if (new[c] == NULL) {
880 new[l1_count + c] = talloc_strdup(new, l2[c]);
881 if (new[l1_count + c] == NULL) {
889 memcpy(new, l1, sizeof(char *) * l1_count);
893 memcpy(&new[l1_count], l2, sizeof(char *) * l2_count);
897 *_new_list = new;
902 talloc_free(new);