Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/libarchive/libarchive/
HDarchive_write_set_format_cpio_odc.c210 void *newlist = realloc(cpio->ino_list, in synthesize_ino_value() local
212 if (newlist == NULL) in synthesize_ino_value()
216 cpio->ino_list = newlist; in synthesize_ino_value()
HDarchive_write_set_format_cpio_binary.c313 void *newlist = realloc(cpio->ino_list, in synthesize_ino_value() local
315 if (newlist == NULL) in synthesize_ino_value()
319 cpio->ino_list = newlist; in synthesize_ino_value()
/freebsd-11-stable/bin/ps/
HDps.c1127 void *newlist; in expand_list() local
1131 newlist = realloc(inf->l.ptr, newmax * inf->elemsize); in expand_list()
1132 if (newlist == NULL) { in expand_list()
1137 inf->l.ptr = newlist; in expand_list()
1139 return (newlist); in expand_list()
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
HDdmu_objset.c1233 multilist_t *newlist = dn->dn_objset->os_synced_dnodes; in dmu_objset_sync_dnodes() local
1234 if (newlist != NULL) { in dmu_objset_sync_dnodes()
1235 (void) dnode_add_ref(dn, newlist); in dmu_objset_sync_dnodes()
1236 multilist_insert(newlist, dn); in dmu_objset_sync_dnodes()
/freebsd-11-stable/sys/kern/
HDsubr_bus.c1668 device_t *newlist, *oldlist; in devclass_alloc_unit() local
1673 newlist = malloc(sizeof(device_t) * newsize, M_BUS, M_NOWAIT); in devclass_alloc_unit()
1674 if (!newlist) in devclass_alloc_unit()
1677 bcopy(oldlist, newlist, sizeof(device_t) * dc->maxunit); in devclass_alloc_unit()
1678 bzero(newlist + dc->maxunit, in devclass_alloc_unit()
1680 dc->devices = newlist; in devclass_alloc_unit()
/freebsd-11-stable/contrib/ipfilter/tools/
HDipf_y.y64 static int newlist = 0; variable
433 lstart: '{' { newlist = 1; fr = frc; added = 0; }
439 lmore: lanother { if (newlist == 1) {
440 newlist = 0;
/freebsd-11-stable/contrib/sendmail/src/
HDqueue.c3211 WORK *newlist = (WORK *) sm_realloc((char *) WorkList, local
3214 if (newlist != NULL)
3217 WorkList = newlist;