Searched refs:ent (Results 1 - 25 of 215) sorted by relevance

123456789

/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/autofs/
H A Ddirhash.c18 struct autofs_dir_ent *ent)
20 list_add_tail(&ent->exp, &dh->expiry_head);
21 ent->last_usage = jiffies;
24 static void autofs_delete_usage(struct autofs_dir_ent *ent) argument
26 list_del(&ent->exp);
30 struct autofs_dir_ent *ent)
32 autofs_delete_usage(ent); /* Unlink from current position */
33 autofs_init_usage(dh,ent); /* Relink at queue tail */
41 struct autofs_dir_ent *ent; local
49 ent
17 autofs_init_usage(struct autofs_dirhash *dh, struct autofs_dir_ent *ent) argument
29 autofs_update_usage(struct autofs_dirhash *dh, struct autofs_dir_ent *ent) argument
128 autofs_hash_insert(struct autofs_dirhash *dh, struct autofs_dir_ent *ent) argument
147 autofs_hash_delete(struct autofs_dir_ent *ent) argument
173 struct autofs_dir_ent *ent; local
221 struct autofs_dir_ent *ent; local
238 struct autofs_dir_ent *ent, *nent; local
[all...]
H A Droot.c44 struct autofs_dir_ent *ent = NULL; local
67 while ( onr = nr, ent = autofs_hash_enum(dirhash,&nr,ent) ) {
68 if ( !ent->dentry || d_mountpoint(ent->dentry) ) {
69 if (filldir(dirent,ent->name,ent->len,onr,ent->ino,DT_UNKNOWN) < 0)
83 struct autofs_dir_ent *ent; local
86 if ( !(ent
147 struct autofs_dir_ent *ent; local
254 struct autofs_dir_ent *ent; local
325 struct autofs_dir_ent *ent; local
355 struct autofs_dir_ent *ent; local
383 struct autofs_dir_ent *ent; local
451 struct autofs_dir_ent *ent; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/libusb/
H A Dusbi.h11 #define LIST_ADD(begin, ent) \
14 ent->next = begin; \
15 ent->next->prev = ent; \
17 ent->next = NULL; \
18 ent->prev = NULL; \
19 begin = ent; \
22 #define LIST_DEL(begin, ent) \
24 if (ent->prev) \
25 ent
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc64/kernel/
H A Dmf_proc.c55 struct proc_dir_entry *ent = NULL; local
67 ent = create_proc_entry("cmdline", S_IFREG|S_IRUSR|S_IWUSR, mf_a);
68 if (!ent) return;
69 ent->nlink = 1;
70 ent->data = (void *)0;
71 ent->read_proc = proc_mf_dump_cmdline;
72 ent->write_proc = proc_mf_change_cmdline;
74 ent = create_proc_entry("vmlinux", S_IFREG|S_IWUSR, mf_a);
75 if (!ent) return;
76 ent
[all...]
H A Dproc_pmc.c129 struct proc_dir_entry *ent = NULL; local
144 ent = create_proc_entry("naca", S_IFREG|S_IRUGO, proc_ppc64_root);
145 if ( ent ) {
146 ent->nlink = 1;
147 ent->data = 0;
148 ent->size = 4096;
149 ent->proc_fops = &nacamap_fops;
153 ent = proc_mkdir("paca", proc_ppc64_root);
154 if (ent) {
156 proc_ppc64_create_paca(i, ent);
279 struct proc_dir_entry *ent; local
478 struct proc_dir_entry *ent = NULL; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/proc/
H A Dproc_devtree.c50 struct proc_dir_entry *ent; local
62 ent = create_proc_read_entry(pp->name, S_IRUGO, de,
64 if (ent == 0)
66 ent->size = pp->length;
67 *lastp = ent;
68 lastp = &ent->next;
80 ent = proc_mkdir(p, de);
81 if (ent == 0)
83 *lastp = ent;
84 lastp = &ent
[all...]
H A Dgeneric.c422 struct proc_dir_entry *ent = NULL; local
433 ent = kmalloc(sizeof(struct proc_dir_entry) + len + 1, GFP_KERNEL);
434 if (!ent) goto out;
436 memset(ent, 0, sizeof(struct proc_dir_entry));
437 memcpy(((char *) ent) + sizeof(struct proc_dir_entry), fn, len + 1);
438 ent->name = ((char *) ent) + sizeof(*ent);
439 ent->namelen = len;
440 ent
449 struct proc_dir_entry *ent; local
470 struct proc_dir_entry *ent; local
482 struct proc_dir_entry *ent; local
498 struct proc_dir_entry *ent; local
[all...]
H A Dproc_tty.c136 struct proc_dir_entry *ent; local
143 ent = create_proc_entry(driver->driver_name, 0, proc_tty_driver);
144 if (!ent)
146 ent->read_proc = driver->read_proc;
147 ent->write_proc = driver->write_proc;
148 ent->data = driver;
150 driver->proc_entry = ent;
158 struct proc_dir_entry *ent; local
160 ent = driver->proc_entry;
161 if (!ent)
[all...]
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/util/
H A Dsubst.c37 struct subst_entry *ent = 0; local
41 ent = (struct subst_entry *) malloc(sizeof(struct subst_entry));
42 if (!ent)
44 ent->name = (char *) malloc(strlen(name)+1);
45 if (!ent->name)
47 ent->value = (char *) malloc(strlen(value)+1);
48 if (!ent->value)
50 strcpy(ent->name, name);
51 strcpy(ent->value, value);
52 ent
68 struct subst_entry *ent; local
126 struct subst_entry *ent; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/ext2fs/
H A Dbrel.h38 struct ext2_block_relocate_entry *ent);
44 struct ext2_block_relocate_entry *ent);
56 struct ext2_block_relocate_entry *ent);
79 #define ext2fs_brel_put(brel, old, ent) ((brel)->put((brel), old, ent))
80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
82 #define ext2fs_brel_next(brel, old, ent) ((brel)->next((brel), old, ent))
H A Direl.h36 struct ext2_inode_relocate_entry *ent);
41 struct ext2_inode_relocate_entry *ent);
47 struct ext2_inode_relocate_entry *ent);
59 struct ext2_inode_relocate_entry *ent);
103 #define ext2fs_irel_put(irel, old, ent) ((irel)->put((irel), old, ent))
104 #define ext2fs_irel_get(irel, old, ent) ((irel)->get((irel), old, ent))
105 #define ext2fs_irel_get_by_orig(irel, orig, old, ent) \
106 ((irel)->get_by_orig((irel), orig, old, ent))
[all...]
H A Direl_ma.c27 struct ext2_inode_relocate_entry *ent);
29 struct ext2_inode_relocate_entry *ent);
31 struct ext2_inode_relocate_entry *ent);
34 struct ext2_inode_relocate_entry *ent);
140 struct ext2_inode_relocate_entry *ent)
156 ent->orig = old;
158 ent->orig = ma->entries[(unsigned) old].orig;
164 if (ref_ent->refs && ent->max_refs !=
166 size = (sizeof(struct ext2_inode_reference) * ent->max_refs);
174 ma->entries[(unsigned) old] = *ent;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/resize/
H A Dextent.c82 struct ext2_extent_entry *ent; local
98 ent = extent->list + curr;
104 ent--;
105 if ((ent->old_loc + ent->size == old_loc) &&
106 (ent->new_loc + ent->size == new_loc)) {
107 ent->size++;
113 if (ent->old_loc + ent
194 struct ext2_extent_entry *ent; local
211 struct ext2_extent_entry *ent; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/nubus/
H A Dnubus.c228 struct nubus_dirent ent; local
236 if (nubus_readdir(dir, &ent) == -1)
238 if (nubus_get_subdir(&ent, dir) == -1)
243 int nubus_get_subdir(const struct nubus_dirent *ent, argument
246 dir->ptr = dir->base = nubus_dirptr(ent);
248 dir->mask = ent->mask;
252 int nubus_readdir(struct nubus_dir *nd, struct nubus_dirent *ent) argument
259 ent->base = nd->ptr;
273 ent->type = resid >> 24;
275 ent
342 nubus_find_rsrc(struct nubus_dir* dir, unsigned char rsrc_type, struct nubus_dirent* ent) argument
357 nubus_show_display_resource(struct nubus_dev* dev, const struct nubus_dirent* ent) argument
375 nubus_show_network_resource(struct nubus_dev* dev, const struct nubus_dirent* ent) argument
399 nubus_show_cpu_resource(struct nubus_dev* dev, const struct nubus_dirent* ent) argument
426 nubus_show_private_resource(struct nubus_dev* dev, const struct nubus_dirent* ent) argument
452 struct nubus_dirent ent; local
546 struct nubus_dirent ent; local
581 nubus_get_icon(struct nubus_board* board, const struct nubus_dirent* ent) argument
612 struct nubus_dirent ent; local
640 struct nubus_dirent ent; local
714 struct nubus_dirent ent; local
783 struct nubus_dirent ent; local
[all...]
H A Dproc.c68 struct nubus_dirent ent; local
71 while (nubus_readdir(dir, &ent) != -1) {
75 sprintf(name, "%x", ent.type);
88 struct nubus_dirent ent; local
92 while (nubus_readdir(root, &ent) != -1) {
97 sprintf(name, "%x", ent.type);
102 if (nubus_get_subdir(&ent, &dir) == -1) {
105 dev->board->slot, ent.type);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/boot/
H A Dhead.S11 .ent __start
21 .ent wrent
30 .ent wrkgp
39 .ent switch_to_osf_pal
89 .ent tbi
98 .ent halt
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/tests/progs/
H A Dtest_rel.c93 struct ext2_block_relocate_entry *ent)
95 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new,
96 ent->owner.block_ref, ent->offset);
103 struct ext2_inode_relocate_entry *ent,
111 ent->new, ent->orig, ent->max_refs);
176 struct ext2_block_relocate_entry ent; local
200 ent
92 display_brel_entry(blk_t old, struct ext2_block_relocate_entry *ent) argument
102 display_irel_entry(ext2_ino_t old, struct ext2_inode_relocate_entry *ent, int do_refs) argument
217 struct ext2_block_relocate_entry ent; local
255 struct ext2_block_relocate_entry ent; local
277 struct ext2_block_relocate_entry ent; local
385 struct ext2_inode_relocate_entry ent; local
421 struct ext2_inode_relocate_entry ent; local
447 struct ext2_inode_relocate_entry ent; local
487 struct ext2_inode_relocate_entry ent; local
509 struct ext2_inode_relocate_entry ent; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/bridge/
H A Dbr_fdb.c44 static __inline__ void copy_fdb(struct __fdb_entry *ent, struct net_bridge_fdb_entry *f) argument
46 memset(ent, 0, sizeof(struct __fdb_entry));
47 memcpy(ent->mac_addr, f->addr.addr, ETH_ALEN);
48 ent->port_no = f->dst?f->dst->port_no:0;
49 ent->is_local = f->is_local;
50 ent->ageing_timer_value = 0;
52 ent->ageing_timer_value = jiffies - f->ageing_timer;
72 struct net_bridge_fdb_entry *ent,
75 ent->next_hash = br->hash[hash];
76 if (ent
71 __hash_link(struct net_bridge *br, struct net_bridge_fdb_entry *ent, int hash) argument
82 __hash_unlink(struct net_bridge_fdb_entry *ent) argument
193 br_fdb_put(struct net_bridge_fdb_entry *ent) argument
217 struct __fdb_entry ent; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/nsswitch/
H A Dwinbindd_user.c385 static BOOL get_sam_user_entries(struct getent_state *ent) argument
397 if (ent->num_sam_entries)
401 ent->domain_name)))
404 if (!(domain = find_domain_from_name(ent->domain_name))) {
406 ent->domain_name));
414 SAFE_FREE(ent->sam_entries);
415 ent->num_sam_entries = 0;
429 (ent->num_sam_entries +
443 fstrcpy(name_list[ent->num_sam_entries + i].name, "");
445 fstrcpy(name_list[ent
481 struct getent_state *ent; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/acl/setfacl/
H A Ddo_set.c54 acl_entry_t ent; local
58 if (acl_get_entry(acl, ACL_FIRST_ENTRY, &ent) != 1)
62 acl_get_tag_type(ent, &e_type);
65 e_id_p = acl_get_qualifier(ent);
70 return ent;
74 return ent;
77 if (acl_get_entry(acl, ACL_NEXT_ENTRY, &ent) != 1)
86 acl_entry_t ent; local
88 if (acl_get_entry(acl, ACL_FIRST_ENTRY, &ent) != 1)
94 acl_get_permset(ent,
147 set_perm( acl_entry_t ent, mode_t add, mode_t remove) argument
204 acl_entry_t ent, group_obj; local
270 acl_entry_t ent; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/lib/
H A Dclear_page.S10 .ent clear_page
H A Dstackcheck.S15 .ent _mcount
H A Dstrcpy.S13 .ent strcpy
H A Dcopy_page.S10 .ent copy_page
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/kernel/
H A Dhead.S19 .ent __start
37 .ent __smp_callin
66 .ent cserve_ena
77 .ent cserve_dis
94 .ent halt

Completed in 173 milliseconds

123456789