Home
last modified time | relevance | path

Searched refs:newlist (Results 1 – 16 of 16) sorted by relevance

/freebsd/crypto/krb5/src/util/support/
H A Ddir_filenames.c49 char **newlist; in add_filename() local
51 newlist = realloc(*fnames, (*n_fnames + 2) * sizeof(*newlist)); in add_filename()
52 if (newlist == NULL) in add_filename()
54 *fnames = newlist; in add_filename()
55 newlist[*n_fnames] = strdup(name); in add_filename()
56 if (newlist[*n_fnames] == NULL) in add_filename()
59 newlist[*n_fnames] = NULL; in add_filename()
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dpadata.c86 krb5_pa_data **newlist; in k5_add_pa_data_element() local
90 newlist = realloc(*list, (count + 2) * sizeof(*newlist)); in k5_add_pa_data_element()
91 if (newlist == NULL) in k5_add_pa_data_element()
93 newlist[count] = *pa; in k5_add_pa_data_element()
94 newlist[count + 1] = NULL; in k5_add_pa_data_element()
96 *list = newlist; in k5_add_pa_data_element()
H A Dvfy_increds.c205 krb5_principal *newlist; in add_princ_list() local
213 newlist = realloc(*plist, (i + 2) * sizeof(*newlist)); in add_princ_list()
214 if (newlist == NULL) in add_princ_list()
216 *plist = newlist; in add_princ_list()
217 newlist[i] = newlist[i + 1] = NULL; /* terminate the list */ in add_princ_list()
218 return krb5_copy_principal(context, princ, &newlist[i]); in add_princ_list()
/freebsd/crypto/openssl/Configurations/
H A Dgentemplate.pm91 my @newlist = ();
102 push @newlist, $item, @resolved;
104 print STDERR "DEBUG[collectdepends] $thing < ", join(' ', @newlist), "\n"
106 @newlist;
159 my @newlist = ();
172 push @newlist, $item;
175 @newlist = map { $replace{$_} // $_; } @newlist;
176 print STDERR "DEBUG[reducedepends]< ", join(' ', @newlist), "\n"
178 @newlist;
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/
H A Dzfs_destroy_common.kshlib119 typeset newlist=""
132 newlist="$newlist $dtst"
138 for i in $newlist; do
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_destroy/
H A Dzfs_destroy_common.kshlib149 typeset newlist=""
162 newlist="$newlist $dtst"
166 log_must eval "$funname $newlist"
/freebsd/crypto/krb5/src/plugins/preauth/pkinit/
H A Dpkinit_identity.c51 char **newlist; in copy_list() local
62 newlist = calloc(1, (i + 1) * sizeof(*newlist)); in copy_list()
63 if (newlist == NULL) in copy_list()
67 newlist[i] = strdup(src[i]); in copy_list()
68 if (newlist[i] == NULL) in copy_list()
71 newlist[i] = NULL; in copy_list()
72 *dst = newlist; in copy_list()
75 free_list(newlist); in copy_list()
/freebsd/crypto/krb5/src/util/profile/
H A Dprof_get.c78 char *newstr, **newlist; in add_to_list() local
83 newlist = realloc(list->list, newmax * sizeof(char *)); in add_to_list()
84 if (newlist == 0) in add_to_list()
87 list->list = newlist; in add_to_list()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_cpio_odc.c209 void *newlist = realloc(cpio->ino_list, in synthesize_ino_value() local
211 if (newlist == NULL) in synthesize_ino_value()
215 cpio->ino_list = newlist; in synthesize_ino_value()
H A Darchive_write_set_format_cpio_binary.c312 void *newlist = realloc(cpio->ino_list, in synthesize_ino_value() local
314 if (newlist == NULL) in synthesize_ino_value()
318 cpio->ino_list = newlist; in synthesize_ino_value()
/freebsd/bin/ps/
H A Dps.c1208 void *newlist; in expand_list() local
1212 newlist = realloc(inf->l.ptr, newmax * inf->elemsize); in expand_list()
1213 if (newlist == NULL) { in expand_list()
1218 inf->l.ptr = newlist; in expand_list()
1220 return (newlist); in expand_list()
/freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_misc.c647 char **dnlist = NULL, **newlist; in decode_tl_data() local
686 newlist = realloc(dnlist, (linkcount + 2) * sizeof(char *)); in decode_tl_data()
687 if (newlist == NULL) in decode_tl_data()
689 dnlist = newlist; in decode_tl_data()
/freebsd/contrib/arm-optimized-routines/math/tools/
H A Dremez.jl572 newlist = vcat(oldlist, [(x,y)])
573 candidate = (newscore, newlist)
/freebsd/sbin/ipf/common/
H A Dipf_y.y63 static int newlist = 0; variable
432 lstart: '{' { newlist = 1; fr = frc; added = 0; }
438 lmore: lanother { if (newlist == 1) {
439 newlist = 0;
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu_objset.c1488 multilist_t *newlist = &dn->dn_objset->os_synced_dnodes; in dmu_objset_sync_dnodes() local
1489 (void) dnode_add_ref(dn, newlist); in dmu_objset_sync_dnodes()
1490 multilist_insert(newlist, dn); in dmu_objset_sync_dnodes()
/freebsd/contrib/sendmail/src/
H A Dqueue.c3251 WORK *newlist = (WORK *) sm_realloc((char *) WorkList, local
3254 if (newlist != NULL)
3257 WorkList = newlist;