HomeSort by: relevance | last modified time | path
    Searched defs:newlist (Results 1 - 16 of 16) sorted by relevancy

  /src/external/gpl2/xcvs/dist/src/
find_names.c 402 List *newlist; local
403 if (!(newlist = find_files (dir, RCSPAT)))
405 walklist (newlist, strip_rcsext, NULL);
406 mergelists (list, &newlist);
edit.c 785 char *newlist; local
788 newlist = fileattr_modify (edlist, editor, val, '>', ',');
790 if (!((edlist == NULL && newlist == NULL)
792 && newlist != NULL
793 && strcmp (edlist, newlist) == 0)))
794 fileattr_set (filename, "_editors", newlist);
797 if (newlist != NULL)
798 free (newlist);
  /src/sys/net/
pfil.c 187 pfil_list_t *newlist, *oldlist; local
202 newlist = &phlistset->lists[1];
205 newlist = &phlistset->lists[0];
218 memcpy(newlist, oldlist, sizeof(pfil_list_t));
219 psref_target_init(&newlist->psref, pfil_psref_class);
229 pfh = &newlist->hooks[0];
230 memmove(&newlist->hooks[1], pfh, len);
232 pfh = &newlist->hooks[nhooks];
234 newlist->nhooks++;
239 /* switch from oldlist to newlist */
319 pfil_list_t *oldlist, *newlist; local
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_cpio_binary.c 312 void *newlist = realloc(cpio->ino_list, local
314 if (newlist == NULL)
318 cpio->ino_list = newlist;
archive_write_set_format_cpio_odc.c 209 void *newlist = realloc(cpio->ino_list, local
211 if (newlist == NULL)
215 cpio->ino_list = newlist;
  /src/external/mpl/bind/dist/lib/dns/
tkey.c 114 dns_rdatalist_t *newlist = NULL; local
130 dns_message_gettemprdatalist(msg, &newlist);
131 newlist->rdclass = newrdata->rdclass;
132 newlist->type = newrdata->type;
133 newlist->ttl = ttl;
134 ISC_LIST_APPEND(newlist->rdata, newrdata, link);
137 dns_rdatalist_tordataset(newlist, newset);
master.c 2793 dns_rdatalist_t *newlist; local
2798 newlist = isc_mem_cget(mctx, new_len, sizeof(newlist[0]));
2808 newlist[rdlcount] = *this;
2809 ISC_LIST_APPEND(*current, &newlist[rdlcount], link);
2821 newlist[rdlcount] = *this;
2822 ISC_LIST_APPEND(*glue, &newlist[rdlcount], link);
2830 return newlist;
2840 dns_rdata_t *newlist; local
2846 newlist = isc_mem_cget(mctx, new_len, sizeof(*newlist))
    [all...]
  /src/external/bsd/dhcpcd/dist/src/
if-options.c 185 char **newlist, **list = *array; local
244 newlist = reallocarray(list, i + 2, sizeof(char *));
245 if (newlist == NULL) {
250 newlist[i] = n;
251 newlist[i + 1] = NULL;
252 *array = newlist;
253 return newlist[i];
  /src/external/mpl/dhcp/bind/dist/lib/dns/
tkey.c 167 dns_rdatalist_t *newlist = NULL; local
183 RETERR(dns_message_gettemprdatalist(msg, &newlist));
184 newlist->rdclass = newrdata->rdclass;
185 newlist->type = newrdata->type;
186 newlist->ttl = ttl;
187 ISC_LIST_APPEND(newlist->rdata, newrdata, link);
190 RETERR(dns_rdatalist_tordataset(newlist, newset));
202 INSIST(newlist != NULL);
203 ISC_LIST_UNLINK(newlist->rdata, newrdata, link);
214 if (newlist != NULL)
    [all...]
master.c 2985 dns_rdatalist_t *newlist; local
2990 newlist = isc_mem_get(mctx, new_len * sizeof(*newlist));
2991 if (newlist == NULL) {
3003 newlist[rdlcount] = *this;
3004 ISC_LIST_APPEND(*current, &newlist[rdlcount], link);
3016 newlist[rdlcount] = *this;
3017 ISC_LIST_APPEND(*glue, &newlist[rdlcount], link);
3025 return (newlist);
3035 dns_rdata_t *newlist; local
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dmu_objset.c 1023 dmu_objset_sync_dnodes(list_t *list, list_t *newlist, dmu_tx_t *tx)
1040 if (newlist) {
1041 (void) dnode_add_ref(dn, newlist);
1042 list_insert_tail(newlist, dn);
1106 list_t *newlist = NULL; local
1160 newlist = &os->os_synced_dnodes;
1165 list_create(newlist, sizeof (dnode_t),
1169 dmu_objset_sync_dnodes(&os->os_free_dnodes[txgoff], newlist, tx);
1170 dmu_objset_sync_dnodes(&os->os_dirty_dnodes[txgoff], newlist, tx);
  /src/external/gpl2/gettext/dist/gettext-tools/src/
format-lisp.c 235 struct format_arg_list *newlist; local
241 newlist =
244 newlist->initial.count = newlist->initial.allocated = list->initial.count;
247 newlist->initial.element = NULL;
250 newlist->initial.element =
252 xmalloc (newlist->initial.allocated * sizeof (struct format_arg));
255 copy_element (&newlist->initial.element[i],
261 newlist->initial.length = length;
263 newlist->repeated.count = newlist->repeated.allocated = list->repeated.count
    [all...]
format-scheme.c 238 struct format_arg_list *newlist; local
244 newlist =
247 newlist->initial.count = newlist->initial.allocated = list->initial.count;
250 newlist->initial.element = NULL;
253 newlist->initial.element =
255 xmalloc (newlist->initial.allocated * sizeof (struct format_arg));
258 copy_element (&newlist->initial.element[i],
264 newlist->initial.length = length;
266 newlist->repeated.count = newlist->repeated.allocated = list->repeated.count
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
syncrepl.c 2830 Modifications *mod, *newlist; local
2927 newlist = mods_dup( op, op->orm_modlist, match );
2943 rx.rx_mods = newlist;
2987 newlist = rx.rx_mods;
3006 for ( ml = newlist; ml; ml=ml->sml_next ) {
3017 op->orm_modlist = newlist;
  /src/external/gpl3/binutils/dist/gprofng/src/
Dbe.cc 1018 Vector<char*> *newlist = new Vector<char*>(size); local
1024 newlist->store (i, dbe_strdup (pthmap->new_prefix));
1028 data->store (1, newlist);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Dbe.cc 1018 Vector<char*> *newlist = new Vector<char*>(size); local
1024 newlist->store (i, dbe_strdup (pthmap->new_prefix));
1028 data->store (1, newlist);

Completed in 69 milliseconds