Searched refs:fn (Results 1 - 25 of 301) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/sound/
H A Dsound_firmware.h1 extern int mod_firmware_load(const char *fn, char **fp);
H A Dsound_firmware.c11 static int do_mod_firmware_load(const char *fn, char **fp) argument
17 fd = open(fn, 0, 0);
20 printk(KERN_INFO "Unable to load '%s'.\n", fn);
26 printk(KERN_INFO "Invalid firmware '%s'\n", fn);
34 printk(KERN_INFO "Out of memory loading '%s'.\n", fn);
40 printk(KERN_INFO "Failed to read '%s'.\n", fn);
52 * @fn: filename
68 int mod_firmware_load(const char *fn, char **fp) argument
74 r = do_mod_firmware_load(fn, fp);
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/
H A Dsplit-man20 my $fn = "$ARGV[0]/$1.9";
21 if (open OUT, ">$fn") {
22 print STDERR "creating $fn\n";
24 die "can't open $fn: $!\n";
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv6/
H A Dip6_fib.c78 #define SUBTREE(fn) ((fn)->subtree)
81 #define SUBTREE(fn) NULL
84 static void fib6_prune_clones(struct fib6_node *fn, struct rt6_info *rt);
85 static struct fib6_node * fib6_repair_tree(struct fib6_node *fn);
212 struct fib6_node *fn; local
214 if ((fn = kmem_cache_alloc(fib6_node_kmem, SLAB_ATOMIC)) != NULL)
215 memset(fn, 0, sizeof(struct fib6_node));
217 return fn;
220 static __inline__ void node_free(struct fib6_node * fn) argument
244 struct fib6_node *fn, *in, *ln; local
426 fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt) argument
510 struct fib6_node *fn; local
619 struct fib6_node *fn; local
681 struct fib6_node *fn; local
709 struct fib6_node *fn; local
740 struct fib6_node *fn; local
768 fib6_find_prefix(struct fib6_node *fn) argument
790 fib6_repair_tree(struct fib6_node *fn) argument
889 fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp) argument
950 struct fib6_node *fn = rt->rt6i_node; local
1006 struct fib6_node *fn, *pn; local
1153 fib6_prune_clones(struct fib6_node *fn, struct rt6_info *rt) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dinit.h53 #define __initcall(fn) \
54 static initcall_t __initcall_##fn __init_call = fn
55 #define __exitcall(fn) \
56 static exitcall_t __exitcall_##fn __exit_call = fn
68 #define __setup(str, fn) \
69 static char __setup_str_##fn[] __initdata = str; \
70 static struct kernel_param __setup_##fn __attribute__((unused)) __initsetup = { __setup_str_##fn, f
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dinit.h53 #define __initcall(fn) \
54 static initcall_t __initcall_##fn __init_call = fn
55 #define __exitcall(fn) \
56 static exitcall_t __exitcall_##fn __exit_call = fn
68 #define __setup(str, fn) \
69 static char __setup_str_##fn[] __initdata = str; \
70 static struct kernel_param __setup_##fn __attribute__((unused)) __initsetup = { __setup_str_##fn, f
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/smbwrapper/
H A Drealcalls.h39 #define real_access(fn, mode) (syscall(SYS_access, (fn), (mode)))
40 #define real_chdir(fn) (syscall(SYS_chdir, (fn)))
41 #define real_chmod(fn, mode) (syscall(SYS_chmod,(fn), (mode)))
42 #define real_chown(fn, owner, group) (syscall(SYS_chown,(fn),(owner),(group)))
50 #define real_open(fn,flags,mode) (syscall(SYS_open, (fn), (flag
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dclobber.c42 void clobber_region(const char *fn, unsigned int line, char *dest, size_t len) argument
45 global_clobber_region_function = fn;
H A Dmodule.c159 smb_idle_event_fn *fn; member in struct:smb_idle_list_ent
167 smb_event_id_t smb_register_idle_event(smb_idle_event_fn *fn, void *data, time_t interval) argument
171 if (!fn) {
180 event->fn = fn;
224 event->fn(&event->data,&event->interval,now);
242 smb_exit_event_fn *fn; member in struct:smb_exit_list_ent
248 smb_event_id_t smb_register_exit_event(smb_exit_event_fn *fn, void *data) argument
253 if (!fn) {
262 event->fn
[all...]
H A Dfault.c70 void fault_setup(void (*fn)(void *))
72 cont_fn = fn;
/asus-wl-520gu-7.0.1.45/src/router/samba/source/torture/
H A Dvfstest.h28 int (*fn)(struct connection_struct *conn, const char *path); member in struct:func_entry
41 NTSTATUS (*fn)(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, member in struct:cmd_set
H A Dsamtest.h32 NTSTATUS (*fn)(struct samtest_state *sam, TALLOC_CTX *mem_ctx, int argc, member in struct:cmd_set
/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Ddos2unix.c44 // if fn is NULL then input is stdin and output is stdout
45 static int convert(char *fn, int ConvType) argument
53 if (fn != NULL) {
54 if ((in = wfopen(fn, "rw")) == NULL) {
57 strcpy(tempFn, fn);
87 if ((ConvType == CT_UNIX2DOS) && (fn != NULL)) {
101 if ((ConvType == CT_DOS2UNIX) && (fn != NULL)) {
134 if (fn != NULL) {
142 if (rename(tempFn, fn) < 0) {
143 perror_msg("unable to rename '%s' as '%s'", tempFn, fn);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rp-l2tp/libevent/
H A Devent.h51 EventCallbackFunc fn, void *data);
58 EventCallbackFunc fn,
65 EventCallbackFunc fn,
83 EventCallbackFunc fn,
H A Deventpriv.h32 EventCallbackFunc fn; /* Callback function */ member in struct:EventHandler_t
/asus-wl-520gu-7.0.1.45/src/router/samba/testsuite/smbd/
H A Dse_access_check_utils.h44 void visit_pwdb(BOOL (*fn)(struct passwd *pw, int ngroups, gid_t *groups));
/asus-wl-520gu-7.0.1.45/src/router/shared/
H A Dezc.h30 int ezc_register_cb(ezc_cb_fn_t fn);
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/
H A Dezc.h30 int ezc_register_cb(ezc_cb_fn_t fn);
/asus-wl-520gu-7.0.1.45/src/router/library/
H A DPRO_file.h34 int PRO_DelKey(char *sect, char *key,char *fn);
38 FILE *PRO_uopen(char *fn);
57 int PRO_uclose(char *fn, int mode, int ctrl);
62 int PRO_GetMsgByIndex(char *sect, int start, int num, Char128 *msg, char *fn);
/asus-wl-520gu-7.0.1.45/src/router/library/include/
H A DPRO_file.h34 int PRO_DelKey(char *sect, char *key,char *fn);
38 FILE *PRO_uopen(char *fn);
57 int PRO_uclose(char *fn, int mode, int ctrl);
62 int PRO_GetMsgByIndex(char *sect, int start, int num, Char128 *msg, char *fn);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/hotplug/
H A Dpci_hotplug_util.c299 static int pci_visit_bus (struct pci_visit * fn, struct pci_bus_wrapped *wrapped_bus, struct pci_dev_wrapped *wrapped_parent) argument
308 if (fn->pre_visit_pci_bus) {
309 result = fn->pre_visit_pci_bus(wrapped_bus, wrapped_parent);
322 result = pci_visit_dev(fn, &wrapped_dev, wrapped_bus);
327 if (fn->post_visit_pci_bus)
328 result = fn->post_visit_pci_bus(wrapped_bus, wrapped_parent);
334 static int pci_visit_bridge (struct pci_visit * fn, struct pci_dev_wrapped *wrapped_dev, struct pci_bus_wrapped *wrapped_parent) argument
346 if (fn->visit_pci_dev) {
347 result = fn->visit_pci_dev(wrapped_dev, wrapped_parent);
352 result = pci_visit_bus(fn,
357 pci_visit_dev(struct pci_visit *fn, struct pci_dev_wrapped *wrapped_dev, struct pci_bus_wrapped *wrapped_parent) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/jffs2/
H A Dreadinode.c67 int jffs2_add_full_dnode_to_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, struct jffs2_full_dnode *fn) argument
70 D1(printk(KERN_DEBUG "jffs2_add_full_dnode_to_inode(ino #%u, f %p, fn %p)\n", f->inocache->ino, f, fn));
72 ret = jffs2_add_full_dnode_to_fraglist(c, &f->fraglist, fn);
99 int jffs2_add_full_dnode_to_fraglist(struct jffs2_sb_info *c, struct jffs2_node_frag **list, struct jffs2_full_dnode *fn) argument
112 D2(if (fn->raw)
113 printk(KERN_DEBUG "adding node %04x-%04x @0x%08x on flash, newfrag *%p\n", fn->ofs, fn->ofs+fn->size, fn
251 struct jffs2_full_dnode *fn = NULL; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sh/kernel/
H A Dio_unknown.c17 #define UNKNOWN_ALIAS(fn) \
18 void unknown_##fn(void) __attribute__ ((alias ("unknown_handler")));
/asus-wl-520gu-7.0.1.45/src/router/samba/source/popt/
H A Dpoptconfig.c57 int poptReadConfigFile(poptContext con, const char * fn) { argument
63 fd = open(fn, O_RDONLY);
122 char * fn, * home; local
132 fn = malloc(strlen(home) + 20);
133 strcpy(fn, home);
134 strcat(fn, "/.popt");
135 rc = poptReadConfigFile(con, fn);
136 free(fn);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/parport/
H A Dieee1284.c614 size_t (*fn) (struct parport *, const void *, size_t, int);
627 fn = port->ops->compat_write_data;
633 fn = port->ops->epp_write_addr;
635 fn = port->ops->epp_write_data;
642 fn = parport_ieee1284_epp_write_addr;
644 fn = parport_ieee1284_epp_write_data;
651 fn = port->ops->ecp_write_addr;
653 fn = port->ops->ecp_write_data;
663 fn = parport_ieee1284_ecp_write_addr;
665 fn
[all...]

Completed in 180 milliseconds

1234567891011>>