HomeSort by: relevance | last modified time | path
    Searched refs:newlist (Results 1 - 25 of 27) sorted by relevancy

1 2

  /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/gpl3/gcc/dist/contrib/header-tools/
included-by 69 newlist = list()
72 newlist.append (x)
74 newlist.append (x)
75 file_list = newlist;
reduce-headers 391 newlist = all_headers (inc_file_norm)
404 newlist = list()
407 for h in newlist:
434 for h in newlist:
  /src/external/gpl3/gcc.old/dist/contrib/header-tools/
included-by 69 newlist = list()
72 newlist.append (x)
74 newlist.append (x)
75 file_list = newlist;
reduce-headers 392 newlist = all_headers (inc_file_norm)
405 newlist = list()
408 for h in newlist:
435 for h in newlist:
  /src/external/mpl/bind/dist/lib/dns/
remote.c 145 same_addrs(isc_sockaddr_t const *oldlist, isc_sockaddr_t const *newlist,
149 if (oldlist == NULL && newlist == NULL) {
152 if (oldlist == NULL || newlist == NULL) {
157 if (!isc_sockaddr_equal(&oldlist[i], &newlist[i])) {
165 same_names(dns_name_t *const *oldlist, dns_name_t *const *newlist,
169 if (oldlist == NULL && newlist == NULL) {
172 if (oldlist == NULL || newlist == NULL) {
177 if (oldlist[i] == NULL && newlist[i] == NULL) {
180 if (oldlist[i] == NULL || newlist[i] == NULL ||
181 !dns_name_equal(oldlist[i], newlist[i])
    [all...]
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 2789 dns_rdatalist_t *newlist; local
2794 newlist = isc_mem_cget(mctx, new_len, sizeof(newlist[0]));
2804 newlist[rdlcount] = *this;
2805 ISC_LIST_APPEND(*current, &newlist[rdlcount], link);
2817 newlist[rdlcount] = *this;
2818 ISC_LIST_APPEND(*glue, &newlist[rdlcount], link);
2826 return newlist;
2836 dns_rdata_t *newlist; local
2842 newlist = isc_mem_cget(mctx, new_len, sizeof(*newlist))
    [all...]
  /src/crypto/external/apache2/openssl/dist/Configurations/
gentemplate.pm 91 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;
    [all...]
  /src/crypto/external/bsd/openssl/dist/Configurations/
gentemplate.pm 91 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;
    [all...]
  /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/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/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/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...]
zone.c 6183 same_addrs(isc_sockaddr_t const *oldlist, isc_sockaddr_t const *newlist,
6188 if (!isc_sockaddr_equal(&oldlist[i], &newlist[i])) {
6196 same_keynames(dns_name_t *const *oldlist, dns_name_t *const *newlist,
6200 if (oldlist == NULL && newlist == NULL) {
6203 if (oldlist == NULL || newlist == NULL) {
6208 if (oldlist[i] == NULL && newlist[i] == NULL) {
6211 if (oldlist[i] == NULL || newlist[i] == NULL ||
6212 !dns_name_equal(oldlist[i], newlist[i]))
  /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/gpl3/gcc.old/dist/libphobos/src/std/net/
curl.d 2543 curl_slist* newlist = null;
2546 newlist = Curl.curl.slist_append(newlist, cur.data);
2549 copy.p.headersOut = newlist;
3381 curl_slist* newlist = null;
3384 newlist = Curl.curl.slist_append(newlist, cur.data);
3387 copy.p.commands = newlist;
3799 curl_slist* newlist = null;
3802 newlist = Curl.curl.slist_append(newlist, cur.data)
    [all...]
  /src/external/bsd/dhcpcd/dist/src/
if-options.c 186 char **newlist, **list = *array; local
245 newlist = reallocarray(list, i + 2, sizeof(char *));
246 if (newlist == NULL) {
251 newlist[i] = n;
252 newlist[i + 1] = NULL;
253 *array = newlist;
254 return newlist[i];
  /src/external/bsd/ipf/dist/tools/
ipf_y.y 65 static int newlist = 0;
434 lstart: '{' { newlist = 1; fr = frc; added = 0; }
440 lmore: lanother { if (newlist == 1) {
441 newlist = 0;
  /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);

Completed in 44 milliseconds

1 2