Searched refs:newlist (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_cpio.c209 void *newlist = realloc(cpio->ino_list, local
211 if (newlist == NULL)
215 cpio->ino_list = newlist;
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_objset.c923 dmu_objset_sync_dnodes(list_t *list, list_t *newlist, dmu_tx_t *tx) argument
940 if (newlist) {
941 (void) dnode_add_ref(dn, newlist);
942 list_insert_tail(newlist, dn);
1000 list_t *newlist = NULL; local
1053 newlist = &os->os_synced_dnodes;
1058 list_create(newlist, sizeof (dnode_t),
1062 dmu_objset_sync_dnodes(&os->os_free_dnodes[txgoff], newlist, tx);
1063 dmu_objset_sync_dnodes(&os->os_dirty_dnodes[txgoff], newlist, tx);
/freebsd-10.0-release/bin/ps/
H A Dps.c1056 void *newlist; local
1060 newlist = realloc(inf->l.ptr, newmax * inf->elemsize);
1061 if (newlist == NULL) {
1066 inf->l.ptr = newlist;
1068 return (newlist);
/freebsd-10.0-release/contrib/ipfilter/tools/
H A Dipf_y.y63 static int newlist = 0;
432 lstart: '{' { newlist = 1; fr = frc; added = 0; }
438 lmore: lanother { if (newlist == 1) {
439 newlist = 0;
/freebsd-10.0-release/sys/kern/
H A Dsubr_bus.c1587 device_t *newlist, *oldlist; local
1592 newlist = malloc(sizeof(device_t) * newsize, M_BUS, M_NOWAIT);
1593 if (!newlist)
1596 bcopy(oldlist, newlist, sizeof(device_t) * dc->maxunit);
1597 bzero(newlist + dc->maxunit,
1599 dc->devices = newlist;
/freebsd-10.0-release/contrib/sendmail/src/
H A Dqueue.c3184 WORK *newlist = (WORK *) sm_realloc((char *) WorkList, local
3187 if (newlist != NULL)
3190 WorkList = newlist;

Completed in 249 milliseconds