Lines Matching defs:new
590 /* If the input is a NULL list a new one is created with the new
596 /* Allocate one extra space for the new service and one for
751 char **new;
764 new = talloc_array(mem_ctx, char *, new_count + 1);
765 if (new == NULL) {
769 new [new_count] = NULL;
773 new[c] = talloc_strdup(new, l1[c]);
774 if (new[c] == NULL) {
781 new[l1_count + c] = talloc_strdup(new, l2[c]);
782 if (new[l1_count + c] == NULL) {
790 memcpy(new, l1, sizeof(char *) * l1_count);
794 memcpy(&new[l1_count], l2, sizeof(char *) * l2_count);
798 *_new_list = new;
803 talloc_free(new);