Searched refs:new (Results 451 - 475 of 2011) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/jffs2/
H A Dnodelist.c24 void jffs2_add_fd_to_list(struct jffs2_sb_info *c, struct jffs2_full_dirent *new, struct jffs2_full_dirent **list) argument
28 dbg_dentlist("add dirent \"%s\", ino #%u\n", new->name, new->ino);
30 while ((*prev) && (*prev)->nhash <= new->nhash) {
31 if ((*prev)->nhash == new->nhash && !strcmp((*prev)->name, new->name)) {
33 if (new->version < (*prev)->version) {
34 dbg_dentlist("Eep! Marking new dirent node obsolete, old is \"%s\", ino #%u\n",
36 jffs2_mark_node_obsolete(c, new->raw);
37 jffs2_free_full_dirent(new);
434 jffs2_add_ino_cache(struct jffs2_sb_info *c, struct jffs2_inode_cache *new) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bio/
H A Dbio_lib.c524 BIO *ret=NULL,*eoc=NULL,*bio,*new; local
528 if ((new=BIO_new(bio->method)) == NULL) goto err;
529 new->callback=bio->callback;
530 new->cb_arg=bio->cb_arg;
531 new->init=bio->init;
532 new->shutdown=bio->shutdown;
533 new->flags=bio->flags;
536 new->num=bio->num;
538 if (!BIO_dup_state(bio,(char *)new))
540 BIO_free(new);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/drivers/
H A Dchan_kern.c546 struct chan *new, *chan; local
560 new = parse_chan(line, in, device, opts, error_out);
561 if (new == NULL)
564 new->input = 1;
565 list_add(&new->list, chans);
567 new = parse_chan(line, out, device, opts, error_out);
568 if (new == NULL)
571 list_add(&new->list, chans);
572 new->output = 1;
575 new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/dhcp6/
H A Dclient6_parse.y444 add_namelist(new, headp)
445 struct cf_namelist *new, **headp;
451 if (strcmp(ifp->name, new->name) == 0) {
453 new->name);
454 cleanup_namelist(new);
459 new->next = *headp;
460 *headp = new;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Drbtree.c368 void rb_replace_node(struct rb_node *victim, struct rb_node *new, argument
376 parent->rb_left = new;
378 parent->rb_right = new;
380 root->rb_node = new;
383 rb_set_parent(victim->rb_left, new);
385 rb_set_parent(victim->rb_right, new);
388 *new = *victim;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfsd/
H A Dnfs4recover.c52 struct cred *new; local
54 new = prepare_creds();
55 if (!new)
58 new->fsuid = 0;
59 new->fsgid = 0;
60 *original_creds = override_creds(new);
61 put_cred(new);
H A Dnfs4idmap.c66 struct ent *new = container_of(cnew, struct ent, h); local
69 new->id = itm->id;
70 new->type = itm->type;
72 strlcpy(new->name, itm->name, sizeof(new->name));
73 strlcpy(new->authname, itm->authname, sizeof(new->name));
277 idtoname_update(struct ent *new, struct ent *old) argument
280 &new->h, &old->h,
281 idtoname_hash(new));
445 nametoid_update(struct ent *new, struct ent *old) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/keyboard/
H A Dmaple_keyb.c43 unsigned char new[8]; member in struct:dc_kbd
106 input_report_key(dev, keycode, (kbd->new[0] >> i) & 1);
110 ptr = memchr(kbd->new + 2, kbd->old[i], 6);
122 ptr = memchr(kbd->old + 2, kbd->new[i], 6);
123 code = kbd->new[i];
136 memcpy(kbd->old, kbd->new, 8);
152 memcpy(kbd->new, buf + 2, 8);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/os-Linux/
H A Dstart_up.c496 struct iomem_region *new; local
520 new = malloc(sizeof(*new));
521 if (new == NULL) {
528 *new = ((struct iomem_region) { .next = iomem_regions,
534 iomem_regions = new;
535 iomem_size += new->size + UM_KERN_PAGE_SIZE;
H A Dsigio.c108 struct pollfd *new; local
113 new = uml_kmalloc(n * sizeof(struct pollfd), UM_GFP_ATOMIC);
114 if (new == NULL) {
115 printk(UM_KERN_ERR "need_poll : failed to allocate new "
120 memcpy(new, polls->poll, polls->used * sizeof(struct pollfd));
123 polls->poll = new;
434 struct sigaction old, new; local
475 new = old;
476 new.sa_handler = handler;
477 if (sigaction(SIGIO, &new, NUL
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/procps/
H A Dps.c180 ps_out_t* new; local
196 new = new_out_t();
199 *new = *find_out_spec(opt);
202 new->header = equal + 1;
208 if (new->header[0]) {
209 new->width = strlen(new->header);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/dhcp6/
H A Dclient6_parse.y444 add_namelist(new, headp)
445 struct cf_namelist *new, **headp;
451 if (strcmp(ifp->name, new->name) == 0) {
453 new->name);
454 cleanup_namelist(new);
459 new->next = *headp;
460 *headp = new;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/pohmelfs/
H A Ddir.c84 struct pohmelfs_name *new)
95 cmp = pohmelfs_cmp_hash(tmp, new->hash);
108 "new: ino: %llu, hash: %x, len: %u, data: '%s'.\n",
111 new->ino, new->hash, new->len, new->data);
112 ret->ino = new->ino;
116 rb_link_node(&new->hash_node, parent, n);
117 rb_insert_color(&new
83 pohmelfs_insert_hash(struct pohmelfs_inode *pi, struct pohmelfs_name *new) argument
232 struct inode *new = NULL; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/racoon/
H A Doakley.c1906 cert_t *new; local
1908 new = oakley_newcert();
1909 if (!new) {
1915 new->pl = vmalloc(ntohs(gen->len) - sizeof(*gen));
1916 if (new->pl == NULL) {
1919 oakley_delcert(new);
1920 new = NULL;
1923 memcpy(new->pl->v, gen + 1, new->pl->l);
1924 new
2378 cert_t *new; local
2589 vchar_t *buf = NULL, *new = NULL; local
2712 vchar_t *buf = 0, *new = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dbcm63xx_uart.c496 struct ktermios *new,
512 switch (new->c_cflag & CSIZE) {
528 if (new->c_cflag & CSTOPB)
534 if (new->c_cflag & PARENB)
537 if (new->c_cflag & PARODD)
542 baud = uart_get_baud_rate(port, new, old, 0, port->uartclk / 16);
550 if (UART_ENABLE_MS(port, new->c_cflag))
557 if (new->c_iflag & INPCK) {
561 if (new->c_iflag & (BRKINT))
565 if (new
495 bcm_uart_set_termios(struct uart_port *port, struct ktermios *new, struct ktermios *old) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/ipc/
H A Dutil.c239 * @new: new IPC permission set
242 * Add an entry 'new' to the IPC ids idr. The permissions object is
244 * is returned. The 'new' entry is returned in a locked state on success.
250 int ipc_addid(struct ipc_ids* ids, struct kern_ipc_perm* new, int size) argument
262 spin_lock_init(&new->lock);
263 new->deleted = 0;
265 spin_lock(&new->lock);
267 err = idr_get_new(&ids->ipcs_idr, new, &id);
269 spin_unlock(&new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/
H A Dproc.c24 loff_t new = -1; local
30 new = off;
33 new = file->f_pos + off;
36 new = inode->i_size + off;
39 if (new < 0 || new > inode->i_size)
40 new = -EINVAL;
42 file->f_pos = new;
44 return new;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/radvd/
H A Dgram.y347 struct Clients *new = calloc(1, sizeof(struct Clients));
348 if (new == NULL) {
353 memcpy(&(new->Address), $1, sizeof(struct in6_addr));
354 $$ = new;
358 struct Clients *new = calloc(1, sizeof(struct Clients));
359 if (new == NULL) {
364 memcpy(&(new->Address), $2, sizeof(struct in6_addr));
365 new->next = $1;
366 $$ = new;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_ecommunity.c53 /* Allocate a new ecommunities. */
110 struct ecommunity *new; local
112 new = XMALLOC (MTYPE_ECOMMUNITY, sizeof (struct ecommunity));
113 memset (new, 0, sizeof (struct ecommunity));
114 new->size = ecom->size;
115 if (new->size)
117 new->val = XMALLOC (MTYPE_ECOMMUNITY_VAL, ecom->size * BGP_RD_SIZE);
118 memcpy (new->val, ecom->val, ecom->size * BGP_RD_SIZE);
121 new->val = NULL;
122 return new;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/
H A Dacpi_memhotplug.c96 struct acpi_memory_info *info, *new; local
114 new = kzalloc(sizeof(struct acpi_memory_info), GFP_KERNEL);
115 if (!new)
118 INIT_LIST_HEAD(&new->list);
119 new->caching = address64.info.mem.caching;
120 new->write_protect = address64.info.mem.write_protect;
121 new->start_addr = address64.minimum;
122 new->length = address64.address_length;
123 list_add_tail(&new->list, &mem_device->res_list);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/power/
H A Dswap.c91 struct rb_node **new = &(swsusp_extents.rb_node); local
95 /* Figure out where to put the new node */
96 while (*new) {
97 ext = container_of(*new, struct swsusp_extent, node);
98 parent = *new;
105 new = &((*new)->rb_left);
112 new = &((*new)->rb_right);
118 /* Add the new nod
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/
H A Dospf6_asbr.c273 ospf6_asbr_external_lsa_change (struct ospf6_lsa *old, struct ospf6_lsa *new) argument
275 assert (old || new);
278 ospf6_asbr_external_lsa_add (new);
279 else if (new == NULL)
285 ospf6_asbr_external_lsa_add (new);
442 ospf6_asbr_database_hook (struct ospf6_lsa *old, struct ospf6_lsa *new) argument
446 if (new && ! IS_LSA_MAXAGE (new))
447 ospf6_asbr_external_lsa_add (new);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/radvd/
H A Dgram.y347 struct Clients *new = calloc(1, sizeof(struct Clients));
348 if (new == NULL) {
353 memcpy(&(new->Address), $1, sizeof(struct in6_addr));
354 $$ = new;
358 struct Clients *new = calloc(1, sizeof(struct Clients));
359 if (new == NULL) {
364 memcpy(&(new->Address), $2, sizeof(struct in6_addr));
365 new->next = $1;
366 $$ = new;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/networking/udhcp/
H A Dfiles.c89 struct option_set *existing, *new, **curr; local
101 /* make a new option */
102 new = xmalloc(sizeof(*new));
103 new->data = xmalloc(length + 2);
104 new->data[OPT_CODE] = option->code;
105 new->data[OPT_LEN] = length;
106 memcpy(new->data + 2, buffer, length);
112 new->next = *curr;
113 *curr = new;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/deprecated/
H A Dwxexpr.h82 wxExpr(const wxString& functor); // Assume this is a new clause - pass functor
263 #define wxExprMakeInteger(x) (new wxExpr((long)x))
264 #define wxExprMakeReal(x) (new wxExpr((double)x))
265 #define wxExprMakeString(x) (new wxExpr(wxExprString, x))
266 #define wxExprMakeWord(x) (new wxExpr(wxExprWord, x))
267 #define wxExprMake(x) (new wxExpr(x))

Completed in 303 milliseconds

<<11121314151617181920>>